/* ═══════════════════════════════════════════════════════════
   FONTS
═══════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Magnat';
  src: url('fonts/magnat-head-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('fonts/Source Sans Pro Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════════════════
   BASE & RESET
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #FFC876;
  --cream:       #FFF9F1;
  --cream-dark:  #FFE8D5;
  --peach:       #FFB68D;
  --salmon:      #FF815A;
  --teal:        #90D0AF;
  --teal-dark:   #5A9E80;
  --footer-bg:   #90D0AF;
  --text:        #262626;
  --text-muted:  #6B6B6B;
  --border-light:#E0D8D2;
  --white:       #FFFFFF;

  --serif: 'Magnat', Georgia, serif;
  --sans:  'Source Sans Pro', 'Source Sans 3', system-ui, sans-serif;

  --max-w: 1200px;
  --section-px: clamp(1.25rem, 3vw, 3rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Image placeholders ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--peach) 100%);
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5rem 0 var(--section-px);
  height: 90px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo-icon { width: 64px; height: 64px; flex-shrink: 0; }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; gap: 2rem; align-items: center; }
.main-nav a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: color .2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--salmon); }

.chevron {
  display: inline-block;
  width: 10px;
  height: 6px;
  vertical-align: middle;
  margin-left: 4px;
  color: var(--text-muted);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  padding: .5rem 0;
  min-width: 140px;
  flex-direction: column;
  gap: 0;
}
.has-dropdown:hover .dropdown { display: flex; }

/* Onzichtbaar bruggetje zodat hover actief blijft over de gap */
.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.dropdown li a {
  display: block;
  padding: .5rem 1.25rem;
  font-size: 16px;
}
.dropdown li a:hover { color: var(--salmon); background: var(--cream); }

/* Phone button */
.phone-btn {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: var(--peach);
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  padding: .55rem 1.1rem;
  border-radius: 0;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.phone-btn:hover { background: var(--peach); }
.phone-btn svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
/*
  Verhoudingen gebaseerd op origineel:
  – Afbeelding: 60% breedte, rechts uitgelijnd, top = bovenkant sectie
  – H1 start links en overlapt de afbeelding (z-index hoger)
  – Knop zit onder de H1, links van de afbeelding
  – Dots gecentreerd onder de afbeelding
*/
.hero {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem var(--section-px) 4rem;
  min-height: calc(var(--max-w) * 0.60 * 0.75 + 10rem);
  display: flex;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  max-width: 52%;
}

.hero-text h1 {
  font-family: var(--serif);
  font-size: 110px;
  font-weight: 400;
  line-height: 115%;
  color: yellow var(--text);

  letter-spacing: -.02em;
  /* H1 mag breder zijn dan de bovenliggende flex-container */
  width: max-content;
  max-width: 85vw;
}

.btn-primary, .btn-teal {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  transition: background .2s;
}

.btn-primary {
  gap: .5rem;
  background: var(--gold);
  color: var(--text);
  padding: .55rem 1.2rem;
  border-radius: 0;
}
.btn-primary:hover { background: var(--peach); }

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide { object-fit: cover; }

.hero-image-wrap {
  position: absolute;
  right: var(--section-px);
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
}

.hero-image {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1rem;
}

.dot {
  width: 80px;
  height: 8px;
  border-radius: 0;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Opvullende balk van links naar rechts */
.dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--salmon);
  transform: scaleX(0);
  transform-origin: left;
}

.dot.active::after {
  animation: fill-bar 5s linear forwards;
}

@keyframes fill-bar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services-section {
  background: var(--white);
}

.services {
  display: flex;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--section-px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.services-image {
  flex: 0 0 auto;
  width: clamp(260px, 33vw, 420px);
}
.services-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: opacity .4s ease;
}

.services-content { flex: 1; }
.services-content h2 {
  font-family: var(--serif);
  font-size: 65px;
  font-weight: 400;
  margin-bottom: 1.75rem;
  color: var(--text);
}

.services-list { border-top: none; }

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: padding-left .2s;
}
.service-item a {
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  transition: color .2s;
}
.service-item:hover a { color: var(--salmon); }
.service-item:hover { padding-left: 0; }

.service-item.active a { color: var(--salmon); font-weight: 400; }
.service-arrow { color: var(--salmon); font-size: 2rem; opacity: 0; }
.service-item.active .service-arrow { opacity: 1; }
.service-item:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════
   SOCIAL / GALLERY
═══════════════════════════════════════════════════════════ */
.social-section {
  padding: clamp(3rem, 7vw, 5.5rem) var(--section-px) clamp(8rem, 16vw, 14rem);
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.social-left {
  align-self: start;
  max-width: 280px;
  margin-top: 3rem;
}

.social-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-follow { font-size: 16px; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.social-link {
  font-weight: 600;
  text-decoration: underline;
  color: var(--text);
  transition: color .2s;
}
.social-link:hover { color: var(--salmon); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: 220px 180px;
  column-gap: 2.5rem;
  row-gap: 2rem;
  align-items: start;
}

.gallery-img {
  object-fit: cover;
  border-radius: 8px;
  display: block;
  height: 100%;
}

/* Serum: linker kolom rij 1, rechts uitgelijnd */
.gallery-img--a {
  grid-column: 1;
  grid-row: 1;
  width: 75%;
  margin-left: auto;
}

/* Vrouw: linker kolom rij 2, rechter marge */
.gallery-img--b {
  grid-column: 1;
  grid-row: 2;
  width: calc(100% - 2rem);
  margin-right: 2rem;
}

/* Producten: rechter kolom, overspant beide rijen */
.gallery-img--c {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  margin-top: 2rem;
  height: calc(100% - 2rem);
}

/* Logo-element watermark */
.lotus-watermark {
  position: absolute;
  bottom: 1rem;
  /* calc((100% - 100vw) / 2) = linkerrand van het scherm vanuit een gecentreerde container */
  left: calc((100% - 100vw) / 2);
  width: clamp(240px, 36vw, 400px);
  opacity: .4;
  pointer-events: none;
}
.lotus-watermark img { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   PROMO
═══════════════════════════════════════════════════════════ */
.promo-section {
  background: var(--white);
  padding: clamp(3rem, 7vw, 5rem) var(--section-px);
}

.promo {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
  background: var(--cream);
  border-radius: 16px;
}

.promo-left {
  position: relative;
}

.promo-badge {
  position: absolute;
  top: -3rem;
  left: -3rem;
  z-index: 2;
  width: 162px;
  height: 162px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}

.promo-img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: 16px 0 0 16px;
}

.promo-content { display: flex; flex-direction: column; gap: 1.25rem; justify-content: center; padding: clamp(2rem, 4vw, 3.5rem); }

.promo-date {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: -.75rem;
}

.promo-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
}

.promo-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.btn-teal {
  align-self: flex-start;
  background: var(--teal);
  color: var(--text);
  padding: .65rem 1.4rem;
  border-radius: 50px;
}
.btn-teal:hover { background: var(--teal-dark); }

/* ═══════════════════════════════════════════════════════════
   PULL TO REFRESH
═══════════════════════════════════════════════════════════ */
.ptr-indicator {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--gold);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: .5rem 1.25rem;
  border-radius: 0 0 8px 8px;
  pointer-events: none;
  transition: transform .2s ease, opacity .2s ease;
  z-index: 9999;
  white-space: nowrap;
}
.ptr-indicator.visible {
  transform: translateX(-50%) translateY(0);
}
.ptr-indicator.ready {
  background: var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--footer-bg);
  padding: clamp(2.5rem, 5vw, 4rem) var(--section-px);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: .5rem;
}

/* Brand col */
.footer-logo {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.footer-social a {
  font-size: 16px;
  color: var(--text);
}
.footer-legal a {
  font-size: 13px;
  color: var(--text);
  transition: opacity .2s;
}
.footer-social a:hover, .footer-legal a:hover { opacity: .7; }

.footer-legal {
  display: flex;
  gap: .4rem;
  align-items: center;
  grid-column: 1 / -1;
}
.footer-legal span { color: var(--text); font-size: 13px; }

/* Footer columns */
.footer-col h4 {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li { display: flex; align-items: center; gap: .4rem; }
.footer-col a {
  font-size: 16px;
  color: var(--text);
  transition: opacity .2s;
}
.footer-col a:hover { opacity: .7; }
.footer-col svg { flex-shrink: 0; color: var(--text); }

.address {
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
/* ── Desktop: verberg mobiele elementen ── */
.logo-text        { display: none; }
.hamburger        { display: none; }
.mobile-nav       { display: none; }
.social-title     { display: none; }
.logo-icon--mobile { display: none; }

/* ══════════════════════════════════════════════════════════
   MOBIEL  ≤ 768px
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Header ── */
  .header-inner {
    padding: 0 1.25rem;
    height: 110px;
  }
  .logo-icon--desktop { display: none; }
  .logo-icon--mobile  { display: block; height: 40px; width: auto; }
  .main-nav  { display: none; }
  .phone-btn { display: none; }
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: .25rem;
    color: var(--text);
  }

  /* ── Mobiel nav overlay ── */
  .mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 200;
    padding: 3rem 2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .mobile-nav.open {
    transform: translateX(0);
  }
  .mobile-nav > ul { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
  .mobile-nav ul li a {
    font-family: var(--serif);
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--text);
  }
  .mobile-nav-diensten-toggle {
    font-family: var(--serif);
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .4rem;
  }
  .mobile-nav-submenu {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
    margin-top: .5rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .35s ease, opacity .3s ease;
  }
  .mobile-nav-submenu.open {
    max-height: 300px;
    opacity: 1;
  }
  .mobile-nav-submenu li a {
    font-family: var(--sans) !important;
    font-size: 1.4rem !important;
    color: var(--text-muted) !important;
  }
  .mobile-nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text);
    line-height: 1;
  }
  .mobile-nav-phone {
    align-self: center;
    display: flex;
  }

  /* ── Hero ── */
  .hero {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: unset;
    gap: 0;
  }
  .hero-image-wrap {
    position: static;
    width: 100%;
    transform: none;
    order: -1;
  }
  .hero-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 0;
  }
  .hero-slide { border-radius: 0; }
  .hero-image-wrap { border-radius: 0; }
  .hero-dots { margin-top: 1rem; }
  .hero-text {
    position: static;
    max-width: 100%;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem 2.5rem;
  }
  .hero-text h1 { display: block; font-size: clamp(3rem, 14vw, 5.5rem); max-width: 100%; width: auto; }

  /* ── Diensten ── */
  .services {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.25rem;
  }
  .services-image { display: none; }
  .services-content { width: 100%; }
  .services-content h2 { font-size: 2.5rem; }
  .service-item a { font-size: 1.2rem; }

  /* ── Social ── */
  .social-section {
    display: block;
    padding: 2.5rem 1.25rem 12rem;
    position: relative;
    overflow: hidden;
  }
  .social-title {
    display: block;
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1rem;
  }
  .social-left { max-width: 75%; }
  .social-gallery { display: none; }
  .lotus-watermark {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: 170px;
  }

  /* ── Promo ── */
  .promo-section {
    padding: 0;
  }
  .promo {
    display: flex;
    flex-direction: column;
    padding: 0 0 2.5rem;
    border-radius: 0;
  }
  .promo-left {
    width: 100%;
    position: relative;
  }
  .promo-img-placeholder, .promo-left img {
    width: 100%;
    border-radius: 0;
  }
  .promo-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    top: auto;
    left: auto;
  }
  .promo-content {
    padding: 1.75rem 1.25rem 1.75rem;
  }
  .promo-content h2 { font-size: 2.5rem; }

  /* ── Footer ── */
  .site-footer { padding: 2.5rem 1.25rem; }
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand { grid-column: 1; display: flex; flex-direction: column; align-items: center; }
  .footer-logo { height: 48px; }
  .footer-social { justify-content: center; }
  .footer-legal { justify-content: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-sitemap, .footer-diensten { display: none; }
  .footer-contact h4 { display: none; }
  .footer-col ul { align-items: center; }
  .footer-col li { justify-content: center; }
  .footer-contact ul { flex-direction: column; align-items: center; gap: .75rem; }
}
