/* ============================================================
   Valhalla Massage — Stylesheet
   Design gebaseerd op valhalla-massage.nl
   Exacte kleuren en fonts van de bestaande site.

   TEKSTEN AANPASSEN? Zoek in HTML op: <!-- TEKST AANPASSEN -->
   CONTACTGEGEVENS?  Zoek in HTML op: <!-- CONTACT AANPASSEN -->
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Uncial+Antiqua&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --clr-gold:        #e19423;
  --clr-gold-faint:  rgba(225, 148, 35, 0.18);
  --clr-gold-border: rgba(225, 148, 35, 0.35);
  --clr-green:       #373d25;   /* donker olijfgroen — secties */
  --clr-brown:       #382a1c;   /* donker bruin — wisselende secties */
  --clr-brown-dark:  #2a1e10;   /* nog donkerder bruin — footer, nav */
  --clr-text:        rgba(255, 255, 255, 0.82);
  --clr-text-bright: #ffffff;
  --clr-text-muted:  rgba(255, 255, 255, 0.45);

  --ff-heading: 'Uncial Antiqua', Georgia, serif;
  --ff-body:    'Inter', 'Helvetica Neue', sans-serif;

  --nav-h:  64px;
  --bar-h:  58px;
  --radius: 2px;
  --trans:  0.25s ease;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  background: var(--clr-green);
  color: var(--clr-text);
  overflow-x: hidden;
  padding-bottom: var(--bar-h);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
p { max-width: 62ch; }

/* ── TYPOGRAFIE ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 400;           /* Uncial Antiqua heeft geen bold-variant */
  line-height: 1.25;
  color: var(--clr-gold);
  letter-spacing: 0.02em;
  text-transform: none;
}
h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.6rem); }

p {
  font-size: 1rem;
  color: var(--clr-text);
  line-height: 1.75;
}

.label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Gouden scheidingslijn onder koppen — zelfde als bestaande site */
.gold-rule {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--clr-gold);
  margin: 0.9rem 0 1.5rem;
}
.gold-rule--center { margin-inline: auto; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.section        { padding: 4rem 1.5rem; }
.section--brown { background: var(--clr-brown); }
.section--green { background: var(--clr-green); }
.container      { max-width: 1080px; margin: 0 auto; }
.text-center    { text-align: center; }
.text-center p  { margin-inline: auto; }

/* ── NAVIGATIE ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  background: var(--clr-brown-dark);
  border-bottom: 1px solid var(--clr-gold-border);
  transition: box-shadow var(--trans);
}
.nav--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.nav__logo img { height: 42px; width: auto; }
.nav__desktop  { display: none; }

.nav__hamburger {
  display: flex; flex-direction: column; justify-content: space-between;
  width: 26px; height: 17px; padding: 0;
}
.nav__hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--clr-text); border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBIEL MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--clr-brown-dark);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 0.5rem;
  padding-top: var(--nav-h);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--clr-gold-border);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu__link {
  font-family: var(--ff-heading);
  font-size: 1.7rem;
  color: var(--clr-text);
  padding: 0.75rem 2rem;
  transition: color var(--trans);
}
.mobile-menu__link:hover,
.mobile-menu__link.is-active { color: var(--clr-gold); }

.mobile-menu__cta {
  margin-top: 1.5rem;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--clr-gold);
  border: 1.5px solid var(--clr-gold-border);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.mobile-menu__cta:hover {
  background: var(--clr-gold);
  color: var(--clr-brown-dark);
}

/* ── STICKY BOEKING BAR (mobiel) ─────────────────────────── */
.booking-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 98;
  height: var(--bar-h);
  background: var(--clr-gold);
  display: flex; align-items: center; justify-content: center;
}
.booking-bar__link {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--ff-heading);
  font-size: 1rem;
  color: var(--clr-brown-dark);
  font-weight: 400;
}

/* ── KNOPPEN ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--trans);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--clr-gold);
  color: var(--clr-brown-dark);
  border: 1.5px solid var(--clr-gold);
}
.btn--primary:hover {
  background: #f0a830;
  border-color: #f0a830;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 148, 35, 0.3);
}
.btn--ghost {
  border: 1.5px solid var(--clr-gold-border);
  color: var(--clr-gold);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--clr-gold-faint);
  border-color: var(--clr-gold);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(0.65);
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(20, 12, 4, 0.38);
}
.hero__content {
  position: relative; z-index: 1;
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__logo {
  height: 315px; width: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 6px 32px rgba(0,0,0,0.75));
}
.hero__tagline {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.25rem;
  letter-spacing: 0.04em;
}
.hero__actions {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.85rem;
}

/* ── INTRO ───────────────────────────────────────────────── */
.intro {
  padding: 3rem 1.5rem;
  background: var(--clr-brown);
  text-align: center;
}
.intro__text {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--clr-text);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.85;
}

/* ── PAGINAKOP (niet-hero pagina's) ──────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 3.5rem) 1.5rem 3rem;
  background: var(--clr-brown-dark);
  border-bottom: 1px solid var(--clr-gold-border);
}

/* ── SERVICE KAARTEN ─────────────────────────────────────── */
.services-grid {
  display: grid; gap: 1px;  /* 1px gap = zichtbare scheidingslijn door achtergrond */
  background: var(--clr-gold-border);
  border: 1px solid var(--clr-gold-border);
  margin-top: 2.5rem;
}
.service-card {
  background: var(--clr-green);
  padding: 2.5rem 1.75rem;
  text-align: center;
}
.service-card__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}
.service-card__desc {
  color: var(--clr-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 38ch;
  margin-inline: auto;
}
.service-card__prices { display: flex; flex-direction: column; gap: 0.3rem; }
.service-card__price {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--clr-text);
}

/* ── PRIJSTABEL ──────────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.price-table th {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  color: var(--clr-gold);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--clr-gold-border);
  text-align: left;
  font-weight: 400;
}
.price-table td {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
  color: var(--clr-text);
}
.price-table td:last-child {
  text-align: right;
  color: var(--clr-gold);
  font-family: var(--ff-heading);
  font-size: 1.1rem;
}

/* ── DIENST DETAIL ───────────────────────────────────────── */
.service-detail {
  display: grid; gap: 0;
  padding: 4rem 1.5rem;
}
.service-detail__body p + p { margin-top: 1rem; }
.service-detail__body p { color: var(--clr-text); font-size: 0.95rem; }

.service-detail__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.75) brightness(0.88);
}

/* ── PROFIEL ─────────────────────────────────────────────── */
.profile-wrap { display: grid; gap: 2.5rem; }
.profile__img {
  width: 100%; max-width: 380px;
  aspect-ratio: 3 / 4;
  object-fit: cover; object-position: top;
  border-radius: 4px;
  filter: saturate(0.8) brightness(0.92);
  border: 1px solid var(--clr-gold-border);
}
.profile__text p { color: var(--clr-text); font-size: 0.95rem; }
.profile__text p + p { margin-top: 1rem; }
.profile__quote {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--clr-gold);
  border-left: 2px solid var(--clr-gold);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.6;
  max-width: none;
}

/* ── PILAREN ─────────────────────────────────────────────── */
.pillars { display: grid; gap: 1px; background: var(--clr-gold-border); margin-top: 2.5rem; border: 1px solid var(--clr-gold-border); }
.pillar { background: var(--clr-brown); padding: 2rem 1.5rem; }
.pillar__num {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  color: rgba(225, 148, 35, 0.25);
  line-height: 1; margin-bottom: 0.5rem;
}
.pillar__title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
}
.pillar__desc { font-size: 0.9rem; color: var(--clr-text); line-height: 1.65; max-width: none; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  padding: 4.5rem 1.5rem;
  background: var(--clr-brown-dark);
  text-align: center;
  border-top: 1px solid var(--clr-gold-border);
  border-bottom: 1px solid var(--clr-gold-border);
}
.cta-banner p { margin: 0.75rem auto 2rem; color: var(--clr-text); font-size: 1rem; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; gap: 2rem; margin-top: 2rem; }
.contact-item__label {
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  color: var(--clr-gold);
  margin-bottom: 0.3rem;
  display: block;
}
.contact-item__value { font-size: 0.95rem; color: var(--clr-text); line-height: 1.6; }
.contact-item__value a {
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-gold-border);
  transition: color var(--trans), border-color var(--trans);
}
.contact-item__value a:hover { color: var(--clr-gold); border-color: var(--clr-gold); }

/* ── OPENINGSTIJDEN ──────────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td { padding: 0.35rem 0; font-size: 0.92rem; color: var(--clr-text); }
.hours-table td:last-child { text-align: right; color: var(--clr-gold); font-family: var(--ff-heading); }
.hours-table tr.closed td { opacity: 0.35; }

/* ── WHATSAPP KNOP ───────────────────────────────────────── */
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: white;
  padding: 0.8rem 1.5rem; border-radius: var(--radius);
  font-family: var(--ff-heading); font-size: 0.95rem;
  margin-top: 1.5rem;
  transition: background var(--trans);
}
.whatsapp-btn:hover { background: #1da851; }

/* ── KAART PLACEHOLDER ───────────────────────────────────── */
.map-placeholder {
  width: 100%; height: 200px;
  background: var(--clr-brown-dark);
  border: 1px solid var(--clr-gold-border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem;
  color: var(--clr-text-muted); font-size: 0.9rem;
  margin-top: 2rem;
}

/* ── CALENDLY PLACEHOLDER ────────────────────────────────── */
.calendly-wrap {
  background: var(--clr-brown-dark);
  border: 2px dashed var(--clr-gold-border);
  padding: 3.5rem 1.5rem;
  text-align: center;
  margin-top: 2rem;
}
.calendly-wrap__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.calendly-wrap__title { font-family: var(--ff-heading); font-size: 1.3rem; color: var(--clr-gold); margin-bottom: 0.5rem; }
.calendly-wrap__sub { color: var(--clr-text-muted); font-size: 0.9rem; max-width: none; }

/* ── DIPLOMA KADER ───────────────────────────────────────── */
.diploma-frame {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid var(--clr-gold-border);
  border-left: 3px solid var(--clr-gold);
  border-radius: 4px;
  padding: 1.4rem 1.6rem;
  background: var(--clr-gold-faint);
  flex-wrap: wrap;
}
.diploma-frame__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.diploma-frame__title {
  font-family: var(--ff-heading);
  color: var(--clr-gold);
  font-size: 1.05rem;
  margin: 0;
  max-width: none;
}
.diploma-frame__sub {
  color: var(--clr-text-muted);
  font-size: 0.82rem;
  margin: 0.15rem 0 0;
  max-width: none;
}
.diploma-frame__btn {
  margin-left: auto;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .diploma-frame__btn { margin-left: 0; width: 100%; text-align: center; justify-content: center; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--clr-gold-border);
  padding: 0.25rem 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--clr-gold-border); }
.faq-item summary.faq-item__question {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 2rem 1.1rem 0;
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--clr-gold);
  position: relative;
  user-select: none;
}
.faq-item summary.faq-item__question::-webkit-details-marker { display: none; }
.faq-item summary.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--clr-gold);
  transition: transform var(--trans);
}
.faq-item[open] summary.faq-item__question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item__answer {
  padding: 0 0.25rem 1.1rem;
  color: var(--clr-text);
  max-width: none;
  line-height: 1.8;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--clr-brown-dark);
  border-top: 1px solid var(--clr-gold-border);
  padding: 3rem 1.5rem 2rem;
  color: var(--clr-text);
}
.footer__logo { height: 38px; width: auto; margin-bottom: 1.5rem; opacity: 0.85; }
.footer__links { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; margin-bottom: 1.25rem; }
.footer__links a { font-family: var(--ff-heading); font-size: 0.9rem; color: var(--clr-text); transition: color var(--trans); }
.footer__links a:hover { color: var(--clr-gold); }
.footer__copy { font-size: 0.78rem; color: var(--clr-text-muted); margin-top: 1rem; }

/* ── SCROLL ANIMATIES ────────────────────────────────────── */
.animate-in {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-in.is-visible { opacity: 1; transform: translateY(0); }
.animate-in:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3) { transition-delay: 0.2s; }
.animate-in:nth-child(4) { transition-delay: 0.3s; }

/* ── TABLET (768px+) ─────────────────────────────────────── */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .booking-bar { display: none; }
  .section { padding: 5.5rem 2rem; }
  .hero__content { padding: 4rem 3rem 5.5rem; }
  .hero__actions { flex-direction: row; justify-content: center; }
  .hero__logo { height: 420px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .map-placeholder { height: 300px; }
  .profile-wrap {
    grid-template-columns: 300px 1fr;
    align-items: start; gap: 4rem;
  }
  .service-detail {
    grid-template-columns: 1fr 1fr;
    padding: 0; align-items: stretch;
  }
  .service-detail__body { padding: 5rem 3rem; }
  .service-detail__img {
    width: 100%; height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.75) brightness(0.88);
  }
}

/* ── DESKTOP (1024px+) ───────────────────────────────────── */
@media (min-width: 1024px) {
  .nav__hamburger { display: none; }
  .nav__desktop {
    display: flex; align-items: center; gap: 2.5rem;
  }
  .nav__link {
    font-family: var(--ff-heading);
    font-size: 0.9rem;
    color: var(--clr-text);
    position: relative; padding-bottom: 3px;
    transition: color var(--trans);
  }
  .nav__link::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 100%;
    height: 1px; background: var(--clr-gold);
    transition: right 0.3s ease;
  }
  .nav__link:hover::after,
  .nav__link.is-active::after { right: 0; }
  .nav__link:hover,
  .nav__link.is-active { color: var(--clr-gold); }
  .nav__cta {
    font-family: var(--ff-heading);
    font-size: 0.9rem;
    color: var(--clr-gold);
    border: 1px solid var(--clr-gold-border);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    transition: background var(--trans), color var(--trans);
  }
  .nav__cta:hover {
    background: var(--clr-gold);
    color: var(--clr-brown-dark);
  }
  .section { padding: 7rem 2rem; }
  .intro { padding: 4rem 2rem; }
}
