/* Dar al-Qoran - warm, fris en chic. Taupe/beige basis + goud-accent. */
:root {
  --bg:        #fbf7f0;
  --bg2:       #f6efe3;
  --paper:     #fffefb;
  --taupe:     #8a7a66;
  --taupe-dk:  #5b4f3e;
  --taupe-lt:  #a89884;
  --beige:     #e7ddca;
  --beige-soft:#f1e9d9;
  --ink:       #3a342b;
  --muted:     #8c8275;
  --goud:      #c79a3e;
  --goud-dk:   #a87f2c;
  --goud-bg:   #f7edd5;
  --sage:      #6f8a5c;
  --sage-bg:   #eaf0e1;
  --clay:      #b06a4f;
  --clay-bg:   #f6e7df;
  --shadow:    0 1px 2px rgba(58,52,43,.05), 0 10px 34px rgba(120,98,60,.08);
  --shadow-lg: 0 18px 50px rgba(120,98,60,.16);
  --radius:    16px;
  --maxw:      1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.12; color: var(--taupe-dk); letter-spacing: .2px; margin: 0 0 .4em; }
h1 { font-size: clamp(2.7rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }
a { color: var(--goud-dk); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ── Header ── */
header.site {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251,247,240,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--beige);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto; }
.nav a.menu { color: var(--taupe-dk); text-decoration: none; margin-left: 26px; font-size: 1.05rem; }
.nav a.menu:hover { color: var(--goud-dk); }
.nav .links { display: flex; align-items: center; }

/* Wordmark logo (geen icoon) */
.logo { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.logo .word { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.75rem; color: var(--taupe-dk); }
.logo .word b { color: var(--goud-dk); font-weight: 700; }
.logo .sub { font-family: 'EB Garamond', serif; font-size: .62rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--taupe-lt); margin-top: 4px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none; font: inherit;
  background: var(--goud); color: #fff; padding: 13px 28px; border-radius: 999px;
  text-decoration: none; transition: background .15s, transform .15s, box-shadow .15s; font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(199,154,62,.28);
}
.btn:hover { background: var(--goud-dk); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(199,154,62,.34); }
.btn.ghost { background: transparent; color: var(--taupe-dk); border: 1px solid var(--taupe-lt); box-shadow: none; }
.btn.ghost:hover { background: var(--beige-soft); color: var(--taupe-dk); }
.btn.taupe { background: var(--taupe); box-shadow: 0 6px 18px rgba(138,122,102,.26); }
.btn.taupe:hover { background: var(--taupe-dk); }
.btn.small { padding: 9px 18px; font-size: .95rem; }
.btn.groot { padding: 16px 34px; font-size: 1.15rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── Hero ── */
.hero {
  position: relative; padding: 84px 0 64px; text-align: center; overflow: hidden;
  background:
    radial-gradient(60% 80% at 50% -10%, var(--goud-bg) 0%, rgba(247,237,213,0) 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.hero::before, .hero::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,154,62,.10), transparent 70%); pointer-events: none;
}
.hero::before { top: -40px; left: -60px; }
.hero::after { bottom: -70px; right: -50px; width: 280px; height: 280px; }
.hero .ster { width: 46px; height: 46px; margin: 0 auto 14px; color: var(--goud); }
.hero .arabic { font-size: 2.1rem; color: var(--goud-dk); margin-bottom: .15em; font-family: 'Cormorant Garamond', serif; }
.hero h1 { position: relative; }
.hero p.lead { font-size: 1.32rem; max-width: 640px; margin: 18px auto 30px; color: var(--taupe-dk); }
.hero .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.divider { width: 70px; height: 2px; background: linear-gradient(90deg, transparent, var(--goud), transparent); margin: 28px auto; border: none; }

/* ── Sections ── */
section.block { padding: 60px 0; }
section.block.alt { background: var(--paper); border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 40px; }
.eyebrow { font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--goud-dk); font-weight: 600; }

/* ── Doelgroep-kaarten ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card {
  background: var(--paper); border: 1px solid var(--beige); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--goud), var(--goud-dk)); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card ul { margin: 12px 0 0; padding-left: 18px; }
.card ul li { margin: 5px 0; }
.card ul li::marker { color: var(--goud); }

/* ── Aanbod / catalogus ── */
.groep { margin-bottom: 42px; }
.groep h3 { display: flex; align-items: baseline; gap: 12px; border-bottom: 2px solid var(--goud-bg); padding-bottom: 8px; color: var(--taupe-dk); }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 18px; }
.course {
  background: var(--paper); border: 1px solid var(--beige); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s;
}
.course:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.course .vak { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--taupe-dk); }
.course .tijd { color: var(--muted); font-size: 1.02rem; margin-top: 2px; }
.badge { display: inline-block; font-size: .82rem; padding: 3px 12px; border-radius: 999px; margin-top: 10px; }
.badge.uit  { background: var(--clay-bg); color: var(--clay); }
.badge.door { background: var(--sage-bg); color: var(--sage); }
.badge.vol  { background: var(--clay-bg); color: var(--clay); }
.badge.nodig{ background: var(--goud-bg); color: var(--goud-dk); }

/* ── Inschrijf-CTA blok op de homepage ── */
.cta-blok {
  text-align: center; background: linear-gradient(135deg, var(--goud-bg), var(--paper));
  border: 1px solid var(--beige); border-radius: 22px; padding: 46px 28px; box-shadow: var(--shadow);
}
.cta-blok h2 { margin-bottom: .2em; }

/* ── Footer ── */
footer.site { background: var(--taupe-dk); color: #ece3d3; padding: 44px 0; margin-top: 48px; font-size: .96rem; }
footer.site a { color: #f3ecdc; }
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
footer .word { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.5rem; color: #fff; }
footer .word b { color: var(--goud); }

/* ============================================================
   INSCHRIJF-WIZARD (inschrijven.html)
   ============================================================ */
.wiz-top { background: rgba(251,247,240,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--beige); position: sticky; top: 0; z-index: 20; }
.wiz-top .nav { padding: 12px 24px; }
.wiz-back { color: var(--taupe-dk); text-decoration: none; font-size: .98rem; }
.wiz-back:hover { color: var(--goud-dk); }

.wizard { max-width: 760px; margin: 0 auto; padding: 28px 22px 80px; }
.wizard > h1 { text-align: center; font-size: clamp(2rem,4vw,2.8rem); }
.wizard .intro { text-align: center; color: var(--muted); max-width: 520px; margin: 0 auto 26px; }

/* Stappenbalk */
.stepbar { display: flex; justify-content: center; gap: 8px; margin: 0 auto 30px; flex-wrap: wrap; }
.stepbar .s { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .92rem; }
.stepbar .s .bol {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--beige-soft); color: var(--taupe); font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; border: 1px solid var(--beige);
}
.stepbar .s.actief .bol { background: var(--goud); color: #fff; border-color: var(--goud); box-shadow: 0 4px 12px rgba(199,154,62,.35); }
.stepbar .s.klaar .bol { background: var(--sage); color: #fff; border-color: var(--sage); }
.stepbar .s.actief { color: var(--taupe-dk); font-weight: 600; }
.stepbar .lijn { width: 26px; height: 2px; background: var(--beige); align-self: center; }

/* Panelen */
.stap { display: none; animation: fade .25s ease; }
.stap.actief { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.stap h2 { text-align: center; margin-bottom: .2em; }
.stap .hint { text-align: center; color: var(--muted); margin-bottom: 22px; }

/* Keuzekaarten (doelgroep) */
.keuzekaarten { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; }
.keuzekaart {
  background: var(--paper); border: 2px solid var(--beige); border-radius: var(--radius); padding: 24px 20px;
  cursor: pointer; text-align: center; transition: all .15s; box-shadow: var(--shadow);
}
.keuzekaart:hover { border-color: var(--goud); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.keuzekaart.geselecteerd { border-color: var(--goud); background: var(--goud-bg); }
.keuzekaart .leeftijd { font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--goud-dk); }
.keuzekaart h3 { margin: 6px 0 4px; }
.keuzekaart p { font-size: .95rem; color: var(--muted); margin: 0; }

/* Lestegels (lessen kiezen) */
.lestegels { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 14px; }
.lestegel {
  position: relative; background: var(--paper); border: 2px solid var(--beige); border-radius: 14px;
  padding: 16px 16px 16px 46px; cursor: pointer; transition: all .15s; box-shadow: var(--shadow);
}
.lestegel:hover { border-color: var(--goud); }
.lestegel.geselecteerd { border-color: var(--goud); background: var(--goud-bg); }
.lestegel.disabled { opacity: .5; cursor: not-allowed; background: var(--bg2); }
.lestegel .vink {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--taupe-lt); background: #fff;
  display: grid; place-items: center; color: #fff; font-size: 14px;
}
.lestegel.geselecteerd .vink { background: var(--goud); border-color: var(--goud); }
.lestegel .lv { font-family: 'Cormorant Garamond',serif; font-size: 1.25rem; color: var(--taupe-dk); line-height: 1.1; }
.lestegel .lt { color: var(--muted); font-size: .96rem; }
.lestegel .beschik { display: inline-block; margin-top: 6px; font-size: .8rem; padding: 2px 9px; border-radius: 999px; }
.beschik.nodig { background: var(--goud-bg); color: var(--goud-dk); }
.beschik.door  { background: var(--sage-bg); color: var(--sage); }
.beschik.vol   { background: var(--clay-bg); color: var(--clay); }

/* Prijsbalk */
.prijsbalk {
  margin-top: 22px; background: var(--taupe-dk); color: #fff; border-radius: 14px; padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; box-shadow: var(--shadow);
}
.prijsbalk .pl { font-size: .98rem; opacity: .9; }
.prijsbalk .pr { font-family: 'Cormorant Garamond',serif; font-size: 1.8rem; color: #fff; }
.prijsbalk .pr small { font-size: .9rem; opacity: .8; font-family: 'EB Garamond',serif; }

/* Velden */
.veld { margin-bottom: 16px; }
.veld label { display: block; font-size: .96rem; color: var(--taupe-dk); margin-bottom: 6px; }
.veld input, .veld select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--beige); border-radius: 12px;
  background: #fff; font-family: system-ui, -apple-system, 'Segoe UI', sans-serif; font-size: 1rem; color: var(--ink);
}
.veld input:focus, .veld select:focus { outline: none; border-color: var(--goud); box-shadow: 0 0 0 3px rgba(199,154,62,.18); }
.rij2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Overzicht */
.overzicht { background: var(--paper); border: 1px solid var(--beige); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.overzicht .regel { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--beige-soft); }
.overzicht .regel:last-child { border-bottom: none; }
.overzicht .regel .k { color: var(--muted); }
.overzicht .totaal { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--goud-bg); }
.overzicht .totaal .b { font-family: 'Cormorant Garamond',serif; font-size: 2rem; color: var(--goud-dk); }

/* Wizard navigatie */
.wiznav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.wiznav .btn { min-width: 130px; justify-content: center; }

/* Notice + honeypot */
.notice { padding: 12px 16px; border-radius: 12px; margin: 14px 0; }
.notice.err { background: var(--clay-bg); color: var(--clay); }
.notice.ok  { background: var(--sage-bg); color: var(--sage); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Succes */
.succes { text-align: center; padding: 20px 0; }
.succes .vink-groot { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: var(--sage-bg); color: var(--sage); display: grid; place-items: center; font-size: 40px; }

/* ── WhatsApp ── */
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.30); }
.btn-wa:hover { background: #1ebe5b; }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; }
.wa-inline { display: inline-flex; align-items: center; gap: 7px; color: #1ebe5b; text-decoration: none; font-weight: 500; }
.wa-inline svg { width: 18px; height: 18px; fill: currentColor; }
.wa-inline:hover { text-decoration: underline; }

/* Hulp-melding in de wizard */
.wa-help {
  position: fixed; right: 18px; bottom: 18px; width: 290px; max-width: calc(100vw - 36px);
  background: var(--paper); border: 1px solid var(--beige); border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 18px 18px 16px; z-index: 80; display: none;
}
.wa-help.zichtbaar { display: block; animation: fade .3s ease; }
.wa-help .titel { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--taupe-dk); }
.wa-help p { font-size: .95rem; color: var(--muted); margin: 4px 0 12px; }
.wa-help .sluit { position: absolute; top: 8px; right: 12px; border: none; background: none; font-size: 1.4rem; color: var(--muted); cursor: pointer; line-height: 1; }
.wa-help .btn { width: 100%; justify-content: center; }

@media (max-width: 620px) {
  body { font-size: 18px; }
  .rij2 { grid-template-columns: 1fr; }
  .nav .links a.menu:not(.cta-nav) { display: none; }
  .stepbar .s span.lab { display: none; }
  .stepbar .lijn { width: 16px; }
  .wiznav .btn { min-width: 0; flex: 1; }
}
