/* ============================================================
   Café 't Centrum — Stylesheet
   Kleuren & typografie: BRANDING.md
   Skill dials: DESIGN_VARIANCE 4 · MOTION_INTENSITY 3 · VISUAL_DENSITY 3
   ============================================================ */

/* ---- Reset & basis ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
address { font-style: normal; }
a { color: var(--color-link); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--color-link-hover); }

/* ---- CSS variabelen (uit BRANDING.md) --------------------- */
:root {
  /* Primaire kleuren */
  --color-petrol:       #1A5C66;
  --color-orange:       #E8821E;
  --color-yellow:       #F2A93B;

  /* Ondersteunende kleuren */
  --color-petrol-dark:  #103F47;
  --color-cream:        #FBF6EE;
  --color-white:        #FFFFFF;
  --color-grey:         #6B6259;
  --color-brown:        #3D2E26;

  /* Functioneel */
  --color-bg:           var(--color-cream);
  --color-text:         #2A2420;
  --color-heading:      var(--color-petrol);
  --color-link:         var(--color-orange);
  --color-link-hover:   #C76E12;
  --color-button:       var(--color-orange);
  --color-button-hover: #C76E12;

  /* Typografie */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Caveat', cursive;

  /* Layout */
  --container-max: 1200px;
  --section-pad:   5rem;
  --header-h:      80px;

  /* UI */
  --radius-card:  16px;
  --radius-btn:   999px;
  --shadow-sm:    0 2px 8px  rgba(16, 63, 71, 0.07);
  --shadow-card:  0 4px 16px rgba(16, 63, 71, 0.08);
  --shadow-hover: 0 8px 32px rgba(16, 63, 71, 0.14);
  --t: 0.2s ease;
}

/* ---- Typografie basis ------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin-bottom: 1rem; max-width: 65ch; }
p:last-child { margin-bottom: 0; }

/* ---- Container & sectie ----------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-pad) 0; }
.section-white { background: var(--color-white); }
.section-cream { background: var(--color-cream); }
.section-petrol { background: var(--color-petrol-dark); color: rgba(251,246,238,0.9); }
.section-petrol h2, .section-petrol h3 { color: var(--color-yellow); }

.section-header { margin-bottom: 3rem; }
.section-cta    { text-align: center; margin-top: 3rem; }

/* Split 2-kolom layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ---- Knoppen (pill-vorm, uit BRANDING.md) ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--t), color var(--t),
              border-color var(--t), transform var(--t), box-shadow var(--t);
  text-decoration: none;
  line-height: 1.3;
}
.btn:active { transform: translateY(1px) !important; }

.btn-primary {
  background: var(--color-button);
  color: var(--color-white);
  border-color: var(--color-button);
}
.btn-primary:hover {
  background: var(--color-button-hover);
  border-color: var(--color-button-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,130,30,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-petrol);
  border-color: var(--color-petrol);
}
.btn-secondary:hover {
  background: var(--color-petrol);
  color: var(--color-white);
  border-color: var(--color-petrol);
}

.btn-ghost-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.65);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* ---- Labels & badges -------------------------------------- */
.label-accent {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--color-orange);
  display: block;
  margin-bottom: 0.2rem;
  line-height: 1.4;
}
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2em 0.75em;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-orange { background: var(--color-orange); color: var(--color-white); }
.badge-petrol { background: var(--color-petrol); color: var(--color-white); }
.badge-yellow { background: var(--color-yellow); color: var(--color-brown); }
.badge-green  { background: #22c55e; color: var(--color-white); }

/* ---- Kaarten (cards) -------------------------------------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.4rem; }

/* ---- Afbeelding-placeholders (vervangt echte foto's) ------ */
.img-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #e8e2d6 0%, #d5cec3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 14px,
    rgba(0,0,0,0.018) 14px, rgba(0,0,0,0.018) 28px
  );
}
.img-placeholder-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-grey);
  background: rgba(255,255,255,0.9);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px dashed var(--color-grey);
  text-align: center;
  max-width: 80%;
}
.img-placeholder--card-top {
  min-height: 190px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.img-placeholder--sm   { min-height: 160px; }
.img-placeholder--tall { min-height: 380px; }
.img-placeholder--hero {
  position: absolute; inset: 0;
  border-radius: 0;
  min-height: unset;
  /* Warme petrol-gradient zolang er nog geen sfeerfoto is */
  background:
    radial-gradient(ellipse at 75% 40%, rgba(232,130,30,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(242,169,59,0.10) 0%, transparent 45%),
    linear-gradient(135deg, #103F47 0%, #1A5C66 55%, #226e7a 100%);
}
.img-placeholder--hero .img-placeholder-label { display: none; }

/* ---- Header & navigatie ----------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--color-cream);
  border-bottom: 1px solid rgba(26, 92, 102, 0.08);
  transition: box-shadow var(--t);
}
.site-header--scrolled { box-shadow: 0 2px 20px rgba(16,63,71,0.10); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.site-logo  { height: 56px; width: auto; }

.site-nav   { display: flex; align-items: center; }
.nav-list   { display: flex; align-items: center; gap: 2rem; }

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--color-orange);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-link:hover { color: var(--color-petrol); }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--color-petrol); font-weight: 600; }

/* Hamburger knop (mobiel) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}
.nav-bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-petrol);
  border-radius: 1px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle--open .nav-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--open .nav-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle--open .nav-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Vandaag-balk ----------------------------------------- */
.today-status {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
}
.today-status--open   { background: rgba(26,92,102,0.07); color: var(--color-petrol-dark); }
.today-status--closed { background: rgba(232,130,30,0.07); color: var(--color-brown); }

.today-status-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.today-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.today-status--open   .today-dot { background: #22c55e; }
.today-status--closed .today-dot { background: var(--color-orange); }

.today-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-petrol);
}
.today-link:hover { color: var(--color-orange); }

/* ---- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }

/* Echte sfeerfoto */
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Desktop: schuif clip-venster omhoog zodat gezichten op ~20% staan */
  object-position: 50% 20%;
  animation: heroZoom 9s ease-out forwards;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 72%, rgba(232,130,30,0.10) 0%, transparent 52%),
    linear-gradient(to top,
      rgba(10, 28, 32, 0.93) 0%,
      rgba(16, 63, 71, 0.64) 38%,
      rgba(16, 63, 71, 0.22) 62%,
      transparent 82%),
    linear-gradient(to right,
      rgba(61, 46, 38, 0.32) 0%,
      transparent 52%);
}

/* Hero-inhoud: links uitgelijnd (DESIGN_VARIANCE 4) */
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 560px;
}
.hero-accent {
  font-family: var(--font-accent);
  font-size: 1.45rem;
  color: var(--color-yellow);
  display: block;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 44ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero content: staggered load-in (CSS animation, no JS needed) */
.hero-content .hero-accent  { animation: fadeInUp 0.65s 0.15s cubic-bezier(0.16,1,0.3,1) both; }
.hero-content h1            { animation: fadeInUp 0.70s 0.30s cubic-bezier(0.16,1,0.3,1) both; }
.hero-content .hero-sub     { animation: fadeInUp 0.65s 0.46s cubic-bezier(0.16,1,0.3,1) both; }
.hero-content .hero-actions { animation: fadeInUp 0.65s 0.60s cubic-bezier(0.16,1,0.3,1) both; }

/* ---- Openingstijden-tabel (gedeeld) ----------------------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid rgba(16,63,71,0.06);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.6rem 0;
  font-size: 0.9375rem;
  vertical-align: middle;
}
.hours-table .col-day   { font-weight: 500; min-width: 120px; }
.hours-table .col-hours { color: var(--color-grey); }
.hours-table .col-badge { text-align: right; }
.hours-table .col-badge span {
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15em 0.65em;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hours-table tr.today .col-day  { color: var(--color-petrol); font-weight: 700; }
.hours-table tr.today .col-hours{ color: var(--color-petrol); font-weight: 600; }

/* Grotere versie (openingstijden-pagina) */
.hours-table--lg td { padding: 0.875rem 0; font-size: 1rem; }
.hours-table--lg .col-day { min-width: 140px; }
.hours-table--lg tr.today { background: rgba(232,130,30,0.04); }

/* ---- Adres-blok ------------------------------------------- */
.address-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
}
.address-item svg { flex-shrink: 0; margin-top: 2px; color: var(--color-petrol); }
.address-item a   { color: var(--color-text); font-weight: 500; }
.address-item a:hover { color: var(--color-petrol); }

/* ---- Contact-kaart (openingstijden pagina) ---------------- */
.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
}
.contact-item svg  { color: var(--color-petrol); flex-shrink: 0; margin-top: 3px; }
.contact-item a    { color: var(--color-text); font-weight: 500; }
.contact-item a:hover { color: var(--color-petrol); }
.contact-sublabel  { font-size: 0.75rem; color: var(--color-grey); display: block; margin-bottom: 0.1rem; }

/* ---- Google Maps-embed ------------------------------------ */
.map-embed {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-card);
  border: none;
  display: block;
  box-shadow: var(--shadow-sm);
}

/* ---- Home: Over ons-sectie -------------------------------- */
.about-offset-image {
  margin-top: -2rem; /* lichte offset: DESIGN_VARIANCE 4 */
}
.about-offset-image .img-placeholder { min-height: 400px; }

/* ---- Socials CTA blok ------------------------------------- */
.socials-cta-block {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.socials-cta-text {
  font-size: 1.0625rem;
  color: var(--color-grey);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.socials-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Home: Openingstijden + Adres-sectie ------------------ */
.hours-address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ---- Sfeerfoto (Over ons sectie) -------------------------- */
.sfeer-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: block;
}

/* ---- Wat je hier vindt (feature cards) ------------------- */
.features-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 1.75rem;
}
.feature-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 3px 18px rgba(16,63,71,0.08);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s cubic-bezier(0.16,1,0.3,1);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(16,63,71,0.13);
}
.feature-card--featured {
  grid-row: 1 / 3;
  background: var(--color-brown);
  padding: 3rem 2.5rem;
}
.feature-card--featured h3        { color: var(--color-cream); margin-bottom: 0.75rem; }
.feature-card--featured p         { color: rgba(251,246,238,0.76); max-width: none; }
.feature-card--featured .feature-icon {
  background: rgba(255,255,255,0.13);
  color: var(--color-yellow);
}
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange), var(--color-yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  flex-shrink: 0;
}
.feature-card:not(.feature-card--featured) h3 { margin-bottom: 0.5rem; }
.feature-card:not(.feature-card--featured) p {
  color: var(--color-grey);
  font-size: 0.9375rem;
  max-width: none;
  margin: 0;
}

/* ---- Foto-strip ------------------------------------------- */
.photo-strip {
  display: flex;
  height: 280px;
  overflow: hidden;
}
.photo-strip-img {
  flex: 1;
  min-width: 0;
  object-fit: cover;
  filter: brightness(0.87) saturate(1.05);
  transition: flex 0.55s cubic-bezier(0.16,1,0.3,1),
              filter 0.4s ease;
  cursor: pointer;
}
.photo-strip-img:hover {
  flex: 2.2;
  filter: brightness(1.02) saturate(1.12);
}

/* ---- Keyframes -------------------------------------------- */
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Scroll fade-in (IntersectionObserver via JS) --------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
              transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.is-visible { opacity: 1; transform: none; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
              transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
[data-stagger].is-visible > *              { opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.24s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  [data-stagger] > * { opacity: 1; transform: none; transition: none; }
  .hero-photo        { animation: none; }
  .hero-content .hero-accent,
  .hero-content h1,
  .hero-content .hero-sub,
  .hero-content .hero-actions { animation: none; opacity: 1; }
}

/* ---- Pagina hero (alle pagina's behalve home) ------------- */
.page-hero {
  background: var(--color-petrol);
  padding: 3.5rem 0;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 0.4rem; }
.page-hero .page-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  margin: 0;
  max-width: 50ch;
}

/* ---- Over ons pagina -------------------------------------- */
.about-page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-page-split .img-placeholder { min-height: 440px; }
.about-body p { max-width: 52ch; }
.about-body p + p { margin-top: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-grid .gallery-item:first-child {
  grid-column: 1 / -1;
}
.gallery-grid .gallery-item:first-child .img-placeholder { min-height: 320px; }
.gallery-grid .img-placeholder { min-height: 220px; border-radius: var(--radius-card); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-petrol), #2d7a87);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card p  { font-size: 0.875rem; color: var(--color-grey); margin: 0; max-width: none; }

/* ---- Footer ----------------------------------------------- */
.site-footer {
  background: var(--color-petrol-dark);
  color: rgba(251,246,238,0.82);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.7;
  max-width: 26ch;
  line-height: 1.55;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-yellow);
  margin-bottom: 1rem;
}
.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}
.footer-hours-day  { opacity: 0.72; }
.footer-hours-time { text-align: right; }
.footer-hours-row.today .footer-hours-day,
.footer-hours-row.today .footer-hours-time {
  color: var(--color-yellow);
  font-weight: 600;
  opacity: 1;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8125rem;
}
.footer-contact-item svg { flex-shrink: 0; opacity: 0.65; margin-top: 2px; }
.footer-contact-item a   { color: rgba(251,246,238,0.82); }
.footer-contact-item a:hover { color: var(--color-yellow); }

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251,246,238,0.8);
  transition: background var(--t), color var(--t);
}
.social-link:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ---- Responsive: tablet (max 900px) ----------------------- */
@media (max-width: 900px) {
  :root { --section-pad: 3.5rem; }

  .hero-photo { object-position: center; }

  .split-layout,
  .hours-address-grid,
  .about-page-split { grid-template-columns: 1fr; gap: 2rem; }

  .about-offset-image { margin-top: 0; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-grid          { grid-template-columns: repeat(2, 1fr); }

  /* Features: collapse to single column at tablet */
  .features-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 1.25rem; }
  .feature-card--featured { grid-row: auto; }
}

/* ---- Responsive: mobiel (max 768px) ----------------------- */
@media (max-width: 768px) {
  :root { --section-pad: 2.5rem; --header-h: 68px; }

  /* Navigatie */
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(16,63,71,0.1);
    box-shadow: 0 8px 24px rgba(16,63,71,0.1);
    z-index: 200;
  }
  .nav-list--open { display: flex; }
  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(16,63,71,0.06);
    font-size: 1rem;
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link::after { display: none; }

  /* Hero */
  .hero { min-height: min(75vh, 540px); padding-bottom: 2.5rem; }
  .hero-content { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Foto-strip */
  .photo-strip { height: 200px; }

  /* Sfeer-img */
  .sfeer-img { height: 300px; }

  /* Grids → 1 kolom */
  .gallery-grid,
  .team-grid { grid-template-columns: 1fr; }

  .gallery-grid .gallery-item:first-child { grid-column: auto; }

  /* Footer */
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .site-logo    { height: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---- Responsive: klein mobiel (max 480px) ----------------- */
@media (max-width: 480px) {
  :root { --section-pad: 2rem; }
  .container { padding: 0 1rem; }
  h1 { font-size: 1.875rem; }
  .btn { font-size: 0.9375rem; padding: 0.7rem 1.4rem; }
  .photo-strip { height: 160px; }
  .sfeer-img   { height: 260px; }
}
