/* ══════════════════════════════════════════════════
   hands4flow – style.css
   Palet: warm zandgeel / okergeel / donkerbruin
   ══════════════════════════════════════════════════ */

:root {
  /* ── Goud/oker – puur gelig, geen rood ── */
  --oker:      #9a7d00;   /* olijfgoud, knoppen & actieve links   */
  --oker-mid:  #b09510;   /* iets lichter goud                    */
  --oker-lt:   #d4be6a;   /* zacht goudgeel, randen               */
  --oker-xlt:  #faf5dc;   /* heel licht crème-geel, achtergrond   */

  /* ── Warme achtergronden – puur gelig ── */
  --creme:     #fdfaf0;   /* hoofd achtergrond                    */
  --creme-mid: #f5f0d5;   /* sectie achtergronden, cards          */

  /* ── Bruine tekst ── */
  --bruin:     #3a2c00;   /* donkerste tint, titels               */
  --bruin-mid: #6b5500;   /* subtitels, labels                    */
  --bruin-lt:  #8a7030;   /* muted tekst, beschrijvingen          */

  --white:     #ffffff;
  --text:      #3a2c00;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--creme);
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a   { color: var(--oker); }

/* ══════════════════════════════════════════════════
   NAVIGATIE
   ══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(253,251,240,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--oker-lt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
}

/* Logo als afbeelding */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Fallback tekst logo */
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--bruin);
  text-decoration: none;
}
.nav-logo span { color: var(--oker); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  text-decoration: none;
  font-size: .87rem;
  font-weight: 500;
  color: var(--bruin);
  letter-spacing: .03em;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--oker); }

/* Dropdown */
.has-sub {
  position: relative;
  /* padding-bottom overbrugt de ruimte tussen link en submenu */
  padding-bottom: 8px;
  margin-bottom: -8px;
}
.sub-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;           /* direct aansluitend, geen gap */
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--oker-lt);
  border-radius: 12px;
  list-style: none;
  padding: .5rem 0;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(61,39,0,.1);
  z-index: 300;
  /* kleine vertraging bij weggaan zodat muis het menu kan bereiken */
  transition: opacity .15s ease, visibility .15s ease;
}
.sub-menu li a {
  display: block;
  padding: .55rem 1.2rem;
  font-size: .85rem;
  white-space: nowrap;
  color: var(--bruin);
  text-decoration: none;
}
.sub-menu li a:hover { background: var(--oker-xlt); color: var(--oker); }
.has-sub:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* CTA knop nav */
.nav-cta {
  background: var(--oker) !important;
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--bruin) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--bruin);
  border-radius: 2px;
  transition: all .25s;
}

/* ══════════════════════════════════════════════════
   GEDEELDE ELEMENTEN
   ══════════════════════════════════════════════════ */
main { padding-top: 68px; }
section { padding: 5rem 5vw; }

.section-label {
  display: block;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--oker-mid);
  margin-bottom: .7rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--bruin);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--bruin-lt);
  max-width: 560px;
  line-height: 1.8;
}

/* ── KNOPPEN ── */
.btn-primary {
  display: inline-block;
  background: var(--oker);
  color: var(--white);
  text-decoration: none;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--bruin); transform: translateY(-2px); color: var(--white); }

.btn-secondary {
  display: inline-block;
  color: var(--bruin);
  text-decoration: none;
  padding: .85rem 1.6rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  border: 1.5px solid var(--oker-lt);
  margin-left: .8rem;
  transition: border-color .25s, color .25s;
}
.btn-secondary:hover { border-color: var(--oker); color: var(--oker); }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 5vw;
  gap: 4rem;
  background: var(--creme);
}

.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bruin-mid);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--bruin);
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--oker); }

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--bruin-lt);
  max-width: 480px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

.hero-image { position: relative; }
.hero-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 0 0 0 100px;
}

.hero-badge {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 40px rgba(58,44,0,.10);
  display: flex;
  align-items: center;
  gap: .9rem;
}
.hero-badge-icon {
  width: 44px; height: 44px;
  background: var(--oker-xlt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.hero-badge-text { font-size: .78rem; color: var(--bruin-lt); }
.hero-badge-text strong { display: block; font-size: .92rem; color: var(--bruin); }

/* ══════════════════════════════════════════════════
   BEHANDELINGEN / CARDS
   ══════════════════════════════════════════════════ */
.treatments { background: var(--white); }

.treatments-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Alle cards: uniforme hoogte en layout */
.card {
  background: var(--creme-mid);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid transparent;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(184,134,11,.18);
  border-color: var(--oker-lt);
}

/* Vaste hoogte voor alle card-afbeeldingen */
.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  flex-shrink: 0;
}

.card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bruin);
  margin-bottom: .5rem;
}
.card-desc {
  font-size: .9rem;
  font-weight: 300;
  color: var(--bruin-lt);
  line-height: 1.75;
  margin-bottom: 1rem;
  flex: 1;
}
.card-link {
  font-size: .82rem;
  font-weight: 500;
  color: var(--oker);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
}
.card-link::after { content: '→'; transition: transform .2s; }
.card-link:hover::after { transform: translateX(4px); }

/* Highlight card: naast elkaar, geen aparte hoogte nodig */
.card-highlight {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: unset;
  min-height: 320px;
}
.card-highlight .card-img {
  height: 100%;
  min-height: 320px;
  border-radius: 0;
}
.card-highlight .card-body {
  justify-content: center;
  padding: 2.5rem;
}
.card-highlight .card-title {
  font-size: 1.9rem;
}

/* ══════════════════════════════════════════════════
   OVER MIJ / ABOUT
   ══════════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 80px 20px 20px 20px;
}
.about-tag {
  position: absolute;
  top: 2rem; right: -1.5rem;
  background: var(--oker);
  color: var(--white);
  padding: .55rem 1.2rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
}
.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: .9rem; }
.value-item   { display: flex; align-items: flex-start; gap: .9rem; }
.value-dot {
  width: 8px; height: 8px;
  background: var(--oker);
  border-radius: 50%;
  margin-top: .65rem;
  flex-shrink: 0;
}
.value-text { font-size: .95rem; font-weight: 300; color: var(--bruin-lt); }
.value-text a { color: var(--oker); }

/* ══════════════════════════════════════════════════
   TARIEVEN
   ══════════════════════════════════════════════════ */
.pricing { background: var(--oker-xlt); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(184,134,11,.15); }
.price-card.featured { background: var(--oker); color: var(--white); }
.price-card.featured .price-name,
.price-card.featured .price-desc,
.price-card.featured .price-duration { color: rgba(255,255,255,.85); }

.featured-tag {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--bruin);
  color: var(--white);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 100px;
}
.price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bruin);
  margin-bottom: .3rem;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--oker);
  line-height: 1;
  margin: .7rem 0;
}
.price-card.featured .price-amount { color: var(--white); }
.price-duration { font-size: .82rem; color: var(--bruin-lt); margin-bottom: 1rem; }
.price-desc { font-size: .88rem; font-weight: 300; color: var(--bruin-lt); line-height: 1.7; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: .92rem;
}
.price-table th {
  text-align: left;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--oker);
  padding: .5rem .8rem;
  border-bottom: 2px solid var(--oker-lt);
}
.price-table td {
  padding: .65rem .8rem;
  border-bottom: 1px solid var(--oker-xlt);
  color: var(--bruin-lt);
  font-weight: 300;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { text-align: right; font-weight: 500; color: var(--bruin); }

/* ── INFO BOX ── */
.info-box {
  background: var(--oker-xlt);
  border-left: 4px solid var(--oker);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem;
  font-size: .9rem;
  color: var(--bruin-lt);
  margin-top: 1.5rem;
  line-height: 1.7;
}
.info-box strong { color: var(--bruin); }

/* ══════════════════════════════════════════════════
   CONTACT SECTIE
   ══════════════════════════════════════════════════ */
.contact {
  background: var(--bruin);
  color: var(--white);
  text-align: center;
}
.contact .section-label { color: var(--oker-lt); }
.contact .section-title { color: var(--white); }
.contact .section-sub   { color: rgba(255,255,255,.72); margin: 0 auto 2.5rem; }

.contact-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.8rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.contact-btn:hover { transform: translateY(-2px); opacity: .88; }
.contact-btn-whatsapp { background: #25D366; color: var(--white); }
.contact-btn-call     { background: var(--oker); color: var(--white); }
.contact-btn-mail {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.contact-info span strong { color: rgba(255,255,255,.85); display: block; margin-bottom: .1rem; }

/* ══════════════════════════════════════════════════
   PAGE HERO (subpagina's)
   ══════════════════════════════════════════════════ */
.page-hero {
  background: var(--oker-xlt);
  padding: 5rem 5vw 3rem;
  text-align: center;
  border-bottom: 1px solid var(--oker-lt);
}
.page-hero .section-title { margin: 0 auto .8rem; }
.page-hero .section-sub   { margin: 0 auto; }

.breadcrumb {
  font-size: .8rem;
  color: var(--bruin-lt);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--oker); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span::before { content: ' › '; }

/* ══════════════════════════════════════════════════
   BEHANDELING DETAIL
   ══════════════════════════════════════════════════ */
.treatment-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.treatment-detail img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
}
.treatment-detail .content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--bruin);
  margin: 1.5rem 0 .5rem;
}
.treatment-detail .content p {
  font-size: .95rem;
  font-weight: 300;
  color: var(--bruin-lt);
  line-height: 1.8;
  margin-bottom: .8rem;
}
.treatment-detail .content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.treatment-detail .content ul li {
  font-size: .92rem;
  font-weight: 300;
  color: var(--bruin-lt);
  line-height: 1.8;
  margin-bottom: .3rem;
}

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.faq-item { border-bottom: 1px solid var(--oker-lt); padding: 1.1rem 0; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: var(--bruin);
  gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--oker); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  font-size: .92rem;
  font-weight: 300;
  color: var(--bruin-lt);
  line-height: 1.75;
  padding-top: .8rem;
}
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════════════
   ANIMATIES
   ══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .65s ease forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
footer { background: var(--bruin); color: rgba(255,255,255,.6); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem 5vw 2.5rem;
}
.footer-brand p { font-size: .88rem; margin-top: .7rem; font-weight: 300; line-height: 1.6; }

.footer-links,
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }

.footer-links strong,
.footer-contact strong {
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.footer-links a,
.footer-contact a,
.footer-contact span {
  font-size: .88rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  line-height: 1.5;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--oker-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 5vw;
  text-align: center;
  font-size: .8rem;
}
.footer-bottom a { color: var(--oker-lt); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero              { grid-template-columns: 1fr; min-height: auto; padding-top: 3rem; }
  .hero-image img    { border-radius: 20px; height: 360px; }
  .hero-badge        { left: 0; }
  .treatments-header { grid-template-columns: 1fr; }
  .treatments-grid   { grid-template-columns: 1fr; }
  .card-highlight    { grid-template-columns: 1fr; min-height: auto; }
  .card-highlight .card-img { height: 240px; min-height: 0; }
  .about             { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-tag         { right: 0; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .treatment-detail  { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 0 4vw; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 5vw 2rem;
    border-bottom: 1px solid var(--oker-lt);
    box-shadow: 0 8px 32px rgba(61,39,0,.1);
    gap: .1rem;
    z-index: 199;
    overflow-y: auto;
    max-height: calc(100vh - 68px);
  }
  .nav-links.open { display: flex; }
  .nav-links li   { width: 100%; }
  .nav-links a    { display: block; padding: .7rem 0; font-size: .95rem; }
  .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--oker-xlt);
    border-radius: 8px;
    padding: .3rem 0;
  }
  .has-sub:hover .sub-menu { display: none; }
  .has-sub.open  .sub-menu { display: block; }
  .contact-info  { flex-direction: column; gap: 1.2rem; align-items: center; }
  .footer-inner  { grid-template-columns: 1fr; }
  .btn-secondary { margin-left: 0; margin-top: .6rem; display: inline-block; }
}
