/* ═══════════════════════════════════════════════════════════
   ENGELEN FLUISTEREN — Site Design System
   Mainstream Happinez-tier: warm, modern, professioneel
   Mobile-first responsive
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Achtergrond — zacht crème perkament */
  --bg:           oklch(96% 0.022 82);
  --bg-warm:      oklch(93% 0.030 80);
  --bg-card:      oklch(99% 0.010 82);

  /* Goud */
  --gold:         oklch(50% 0.16 76);
  --gold-soft:    oklch(66% 0.13 80);
  --gold-pale:    oklch(82% 0.10 82);

  /* Tekst */
  --text:         oklch(22% 0.04 60);
  --text-soft:    oklch(38% 0.04 270);
  --text-mute:    oklch(55% 0.04 270);

  /* Pastel accenten */
  --rose:         oklch(86% 0.07 358);
  --lavender:     oklch(86% 0.08 295);
  --sky:          oklch(88% 0.06 220);
  --sage:         oklch(89% 0.06 148);

  /* UI */
  --border:       oklch(58% 0.10 80 / 0.25);
  --border-soft:  oklch(58% 0.10 80 / 0.15);
  --shadow:       0 4px 20px oklch(55% 0.10 80 / 0.10);
  --shadow-lg:    0 12px 36px oklch(55% 0.12 80 / 0.16);

  /* Layout */
  --nav-h:        66px;
  --container:    1140px;
  --container-narrow: 720px;

  /* Type */
  --serif:        'Cormorant Garamond', Georgia, serif;
  --display:      'Cinzel', serif;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Achtergrond gloed */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -5%,  oklch(82% 0.12 82  / 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 10% 80%,  oklch(82% 0.10 310 / 0.42) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 88% 60%,  oklch(82% 0.10 55  / 0.38) 0%, transparent 60%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }

/* Container */
.container {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-narrow {
  position: relative; z-index: 1;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ═══════════════ TYPOGRAFIE ═══════════════ */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.05em;
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  letter-spacing: 0.08em;
  line-height: 1.25;
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.3;
}
p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.lead {
  font-size: clamp(1.1rem, 2.3vw, 1.25rem);
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ═══════════════ NAVIGATIE ═══════════════ */

.site-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: oklch(98% 0.012 82 / 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center;
  padding: 0 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-decoration: none;
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.nav-logo small {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  font-weight: 400;
  margin-top: 2px;
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 0.6rem; }

/* Maanfase widget in nav */
.nav-maan {
  display: none;
  align-items: center; gap: 0.5rem;
  background: oklch(95% 0.025 82);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 5px 14px 5px 8px;
  font-size: 0.75rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: all 0.2s;
}
.nav-maan:hover { border-color: var(--gold-soft); transform: translateY(-1px); color: var(--text); }
.nav-maan-sym { font-size: 1.1rem; line-height: 1; }
.nav-maan-naam { font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.08em; }
@media (min-width: 540px) { .nav-maan { display: inline-flex; } }

.nav-burger {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  background: oklch(98% 0.012 82);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.2s;
}
.nav-burger:hover { border-color: var(--gold-soft); }

/* Slide-over menu */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: oklch(8% 0.04 60 / 0.45);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }
.menu-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(380px, 88vw);
  background: var(--bg);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 40px oklch(15% 0.05 60 / 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 1.5rem 1.5rem 3rem;
}
.menu-panel.open { transform: translateX(0); }
.menu-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.menu-title { font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.menu-close {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-soft);
}
.menu-group { margin-bottom: 1.5rem; }
.menu-group-label {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  padding-left: 0.4rem;
}
.menu-link {
  display: block;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 10px;
  transition: all 0.2s;
}
.menu-link:hover { background: oklch(94% 0.025 82); color: var(--gold); }
.menu-link.actief { background: oklch(92% 0.04 82); color: var(--gold); }

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: oklch(98% 0.012 82);
  box-shadow: 0 4px 16px oklch(55% 0.14 78 / 0.25);
}
.btn:hover {
  background: oklch(42% 0.16 76);
  color: oklch(98% 0.012 82);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(55% 0.14 78 / 0.35);
}
.btn-lg { padding: 18px 42px; font-size: 0.84rem; }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--border);
  box-shadow: none;
}
.btn-ghost:hover { background: oklch(94% 0.025 82); border-color: var(--gold-soft); color: var(--gold); }

/* ═══════════════ CARDS ═══════════════ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pijler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.pijler-kaart {
  display: flex; flex-direction: column;
  padding: 1.5rem 1.6rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.28s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.pijler-kaart:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.pijler-icoon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  border: 1px solid var(--border-soft);
}
.pijler-titel {
  font-family: var(--display);
  font-size: 1rem; font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.pijler-tekst { font-size: 0.97rem; color: oklch(42% 0.04 270); line-height: 1.65; flex: 1; }
.pijler-pijl { font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 0.9rem; }

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative; z-index: 1;
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
}
@media (min-width: 720px) {
  .hero { padding: 4rem 1.25rem 3rem; }
}
.hero-date {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.7rem;
}
.hero h1 {
  margin-bottom: 1rem;
  color: var(--gold);
}
.hero-lead {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: clamp(1.05rem, 2.3vw, 1.2rem);
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.75;
  text-wrap: balance;
}
.hero-cta { margin-top: 0.5rem; }

/* Maanfase op homepage */
.maan-hero-card {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 22px 8px 12px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.5rem;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}
.maan-hero-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.maan-hero-sym { font-size: 1.8rem; line-height: 1; }
.maan-hero-info { text-align: left; }
.maan-hero-naam { font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.1em; color: var(--text); }
.maan-hero-energie { font-size: 0.78rem; font-style: italic; color: var(--text-mute); }

/* ═══════════════ SECTIES ═══════════════ */

.section {
  padding: 3rem 0;
}
@media (min-width: 720px) {
  .section { padding: 4.5rem 0; }
}
.section-tight { padding: 2rem 0; }
.section-head {
  text-align: center;
  margin-bottom: 2rem;
}
.section-head .eyebrow { margin-bottom: 0.6rem; display: block; }
.section-head h2 { color: var(--gold); }
.section-head .lead { max-width: 540px; margin: 0.6rem auto 0; }

/* ═══════════════ BELOFTE BANNER ═══════════════ */

.belofte {
  background: linear-gradient(135deg, var(--bg-warm), oklch(91% 0.04 82));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.25rem;
  text-align: center;
}
.belofte-tekst {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
  text-wrap: balance;
}

/* ═══════════════ FOOTER ═══════════════ */

.site-footer {
  position: relative; z-index: 1;
  background: oklch(94% 0.025 82);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .nav-logo { font-size: 1.1rem; margin-bottom: 0.6rem; }
.footer-tagline { font-size: 0.95rem; font-style: italic; color: var(--text-soft); margin-bottom: 1rem; max-width: 360px; }
.footer-col h4 {
  font-family: var(--display); font-size: 0.7rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold); }

/* Nieuwsbrief signup */
.newsletter {
  margin-top: 1.2rem;
}
.newsletter-label {
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.newsletter-hint { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 0.7rem; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 11px 18px;
  font-family: var(--serif); font-size: 0.95rem;
  color: var(--text); outline: none;
}
.newsletter-form input:focus { border-color: var(--gold-soft); }
.newsletter-form button {
  background: var(--gold); color: oklch(98% 0.012 82);
  border: none; border-radius: 40px;
  padding: 0 22px;
  font-family: var(--display);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.newsletter-form button:hover { background: oklch(42% 0.16 76); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-mute);
}
.footer-bottom a { color: var(--text-mute); margin-left: 1rem; }
.footer-bottom a:first-child { margin-left: 0; }

/* ═══════════════ UTILITY ═══════════════ */

.center { text-align: center; }
.fade-in { animation: fadeIn 0.5s ease both; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 2.5rem 0;
  border: none;
}
