/* Nature — Eco-spa retreat
   Sereen, typo-driven, gigantische witruimte, dotted-lines.
   --c-primary  (mosgroen)
   --c-secondary (zachte oat/cream)
   --c-accent   (terracotta)                                           */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #2d2a26;
  line-height: 1.75;
  background: #FBF8F3;
}
img { max-width: 100%; display: block; }
h1, h2 {
  font-family: 'Fraunces', Georgia, "Times New Roman", serif;
  letter-spacing: -.015em; font-weight: 500;
  color: #2d2a26;
}
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); line-height: 1.05; margin: 0 0 1.5rem; }
h2 { font-size: clamp(1.85rem, 3vw, 2.75rem); margin: 0 0 1.5rem; font-weight: 500; }

.container { max-width: 840px; margin: 0 auto; padding: 0 1.5rem; }

.eyebrow-zen {
  font-family: 'Outfit', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-block; padding: 1rem 1.85rem;
  background: var(--c-primary); color: #fff;
  border-radius: 999px; text-decoration: none;
  font-weight: 500; font-size: .95rem;
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
  box-shadow: 0 12px 28px -10px rgba(93,124,90,.5);
}
.btn:hover { transform: translateY(-1px); opacity: .96; box-shadow: 0 18px 32px -10px rgba(93,124,90,.55); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 5;
  background: rgba(251,248,243,.92); backdrop-filter: blur(10px);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; max-width: 1240px; margin: 0 auto; }
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 500; color: var(--c-primary); font-size: 1.2rem;
  display: flex; align-items: center; text-decoration: none; cursor: pointer;
}
.logo:hover { opacity: .85; }
.logo .logo-img { max-height: 70px; width: auto; display: block; }
.nav nav { display: flex; gap: 1.75rem; align-items: center; }
.nav nav a { color: #534e47; text-decoration: none; font-size: .92rem; font-weight: 500; }
.nav nav a:hover { color: var(--c-primary); }

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  padding: 0; margin: 0;
  background: transparent; border: none;
  cursor: pointer; flex-direction: column; gap: 5px;
  border-radius: 999px; color: var(--c-primary);
  -webkit-tap-highlight-color: transparent;
  transition: background .15s ease;
}
.nav-toggle:hover { background: var(--c-secondary); }
.nav-toggle:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; }
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2.5px;
  background: currentColor; border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 600px) {
  .nav { position: relative; }
  .nav-toggle { display: inline-flex; }
  .nav nav {
    position: absolute;
    top: calc(100% + .5rem); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0 .75rem;
    background: #fff; border-radius: 20px;
    box-shadow: 0 16px 36px -8px rgba(93,124,90,.18);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    z-index: 100;
  }
  .nav.is-open nav {
    max-height: 80vh; overflow-y: auto;
    padding: .65rem .75rem 1rem;
  }
  .nav nav a { padding: .9rem 1.1rem; border-radius: 14px; font-size: 1rem; }
  .nav nav a + a { margin-top: .15rem; }
  .nav nav a:hover { background: var(--c-secondary); color: var(--c-primary); }
}

/* ===== HERO ===== */
.hero-zen {
  position: relative; overflow: hidden;
  padding: 10rem 0 11rem;
  text-align: center;
  background: linear-gradient(180deg, var(--c-secondary) 0%, #FBF8F3 100%);
}
.hero-zen.has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-zen.has-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(251,248,243,.78) 0%, rgba(251,248,243,.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-zen.has-bg .blob { display: none; }
.hero-zen .blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .25; pointer-events: none;
}
.hero-zen .blob-1 { width: 460px; height: 460px; background: var(--c-primary); top: -160px; left: -160px; }
.hero-zen .blob-2 { width: 380px; height: 380px; background: var(--c-accent); bottom: -140px; right: -140px; }
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero-tagline { font-size: 1.2rem; color: #534e47; max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.6; }

/* ===== FILOSOFIE (vervangt about) ===== */
.filosofie { padding: 8rem 0; text-align: center; }
.filosofie-inner { max-width: 720px; }
.filosofie-portrait {
  width: 300px; height: 300px;
  margin: 0 auto 3rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(93,124,90,.45);
}
.filosofie-portrait img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 720px) {
  .filosofie-portrait { width: 220px; height: 220px; margin-bottom: 2rem; }
}
.filosofie-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.85;
  color: #3d3a36;
  font-weight: 400;
}
.filosofie-text p { margin: 0 0 1.25rem; }
.filosofie-text p:last-child { margin-bottom: 0; }

/* ===== SPA-MENUKAART ===== */
.menu-list { padding: 8rem 0; background: var(--c-secondary); text-align: center; }
.menu-inner { max-width: 720px; }
.spa-menu {
  list-style: none; padding: 0; margin: 2.5rem 0 0;
  text-align: left;
}
.spa-menu li {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1.25rem 0;
  position: relative;
}
.spa-menu li + li {
  border-top: 1px dotted rgba(93,124,90,.35);
}
.spa-name { flex: 1; min-width: 0; }
.spa-name span {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem; color: #2d2a26; font-weight: 500;
  display: block;
}
.spa-name small {
  display: block; margin-top: .2rem;
  color: #6b6862; font-size: .88rem;
}
.spa-price {
  font-family: 'Fraunces', serif;
  color: var(--c-accent); font-weight: 500;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== GALLERIJ (3-koloms vierkant, compacter bij veel foto's) ===== */
.gallery-zen { padding: 8rem 0; text-align: center; }
.gallery-zen .container { max-width: 1080px; }
.gallery-zen .gallery-grid {
  display: grid; gap: 1rem; margin-top: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-zen .gallery-item {
  display: block; overflow: hidden;
  aspect-ratio: 1; border-radius: 28px;
  background: #f3efe6;
  box-shadow: 0 12px 30px -16px rgba(93,124,90,.3);
}
.gallery-zen .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-zen .gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 720px) {
  .gallery-zen .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .gallery-zen .gallery-item { border-radius: 22px; }
}

/* ===== BOEKEN / REVIEWS ===== */
.booking, .reviews { padding: 8rem 0; text-align: center; }
.booking .container, .reviews .container { max-width: 980px; }
.booking-iframe, .reviews-iframe { display: block; border: 0; }

/* ===== CONTACT — zen-strookje ===== */
.contact-zen { padding: 8rem 0; background: var(--c-secondary); text-align: center; }
.contact-zen .container { max-width: 720px; }
.contact-zen h2 { margin-bottom: 2rem; }
.contact-line {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: .85rem; row-gap: .35rem;
  font-size: 1rem; color: #3d3a36;
}
.contact-line a { color: #2d2a26; text-decoration: none; transition: color .15s ease; }
.contact-line a:hover { color: var(--c-primary); }
.contact-line .dot { color: var(--c-primary); opacity: .6; }

.hours-zen {
  margin: 2.5rem auto 0; border-collapse: collapse;
  width: 100%; max-width: 380px; font-size: .92rem;
}
.hours-zen th {
  text-align: left; font-weight: 500;
  color: var(--c-primary); padding: .55rem 0; width: 130px;
}
.hours-zen td { text-align: right; padding: .55rem 0; color: #534e47; }
.hours-zen tr + tr th, .hours-zen tr + tr td { border-top: 1px dotted rgba(93,124,90,.25); }

.contact-meta {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  font-size: .78rem; color: #6b6862;
  letter-spacing: .08em;
}
.contact-meta a { color: var(--c-primary); text-decoration: none; }
.contact-meta a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer { padding: 2.5rem 0; text-align: center; color: #6b6862; font-size: .85rem; background: #FBF8F3; }
.site-footer a { color: var(--c-primary); text-decoration: none; }

/* Mobile aanpassingen */
@media (max-width: 720px) {
  .hero-zen { padding: 6rem 0 7rem; }
  .filosofie, .menu-list, .gallery-zen, .booking, .reviews, .contact-zen { padding: 5rem 0; }
  .gallery-zen .gallery-grid { grid-template-columns: 1fr; }
  .gallery-zen .gallery-item { border-radius: 28px; }
}
