/* ==========================================================================
   Het Kidsburo — design system
   Merk: paars #4F2776 + geel #FBBB25, rond & vrolijk (Fredoka), toegankelijk.
   ========================================================================== */

:root {
  --purple:        #4F2776;
  --purple-deep:   #3A1B59;
  --ink:           #2E1547;
  --yellow:        #FBBB25;
  --yellow-deep:   #E8A50F;
  --cream:         #FFF8EC;
  --cream-2:       #FFF1D8;
  --lilac:         #F4EEFA;
  --white:         #ffffff;
  --grey:          #6b6477;
  --line:          #ece6f2;

  --radius:   18px;
  --radius-lg:28px;
  --radius-pill: 999px;
  --shadow:    0 10px 30px rgba(47,21,71,.10);
  --shadow-lg: 0 24px 60px rgba(47,21,71,.18);

  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body:    "Nunito", system-ui, sans-serif;

  --wrap: 1180px;
}

/* ---- Reset / basis ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration-thickness: .08em; text-underline-offset: .15em; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }

/* Toegankelijkheid: skip-link + focus */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--purple); color: #fff; padding: .75rem 1rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 6px; }

/* ---- Knoppen ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  padding: .8rem 1.5rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-yellow  { background: var(--yellow); color: var(--ink); box-shadow: 0 6px 0 var(--yellow-deep); }
.btn-yellow:hover { box-shadow: 0 8px 0 var(--yellow-deep); }
.btn-purple  { background: var(--purple); color: #fff; box-shadow: 0 6px 0 var(--purple-deep); }
.btn-purple:hover { box-shadow: 0 8px 0 var(--purple-deep); }
.btn-ghost   { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-ghost:hover { background: var(--purple); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: #fff; color: var(--purple); }
.btn-block { display: flex; width: 100%; }

/* ---- Header / navigatie -------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 76px; }
.brand img { width: 60px; height: 60px; }
.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.primary-nav a {
  display: block; font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  color: var(--ink); text-decoration: none; padding: .5rem .7rem; border-radius: var(--radius-pill);
  transition: background .15s, color .15s;
}
.primary-nav a:hover { background: var(--lilac); }
.primary-nav a[aria-current="page"] { background: var(--purple); color: #fff; }

.phone-cta {
  display: inline-flex; align-items: center; gap: .55rem; text-decoration: none;
  background: var(--yellow); color: var(--ink); padding: .5rem .9rem; border-radius: var(--radius-pill);
  box-shadow: 0 4px 0 var(--yellow-deep);
}
.phone-cta span { display: flex; flex-direction: column; line-height: 1.05; }
.phone-cta small { font-size: .7rem; opacity: .8; }
.phone-cta strong { font-family: var(--font-display); font-size: .95rem; }

.nav-toggle { display: none; margin-left: auto; flex-direction: column; gap: 5px;
  background: var(--purple); border: 0; padding: 12px; border-radius: 12px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 3px; background: #fff; border-radius: 3px; transition: .2s; }

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; background:
   radial-gradient(120% 90% at 80% -10%, #5e3186 0%, var(--purple) 45%, var(--purple-deep) 100%);
   color: #fff; overflow: hidden; padding-block: clamp(3rem, 8vw, 6rem) clamp(5rem, 9vw, 7rem); }
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 720px; }
.hero h1 { color: #fff; }
.hero .hl { color: var(--yellow); }
.hero .lead { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 60ch; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display);
  font-weight: 600; background: rgba(255,255,255,.12); padding: .35rem .9rem; border-radius: var(--radius-pill);
  font-size: .9rem; }
.eyebrow .note { color: var(--yellow); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.8rem; list-style: none; padding: 0; margin: 0; }
.hero-trust strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--yellow); }
.hero-trust li { font-size: .9rem; color: rgba(255,255,255,.85); }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: 1; }
.hero-blob--1 { width: 320px; height: 320px; background: #6a3c95; right: -60px; top: -40px; }
.hero-blob--2 { width: 200px; height: 200px; background: var(--yellow); right: 22%; bottom: 6%; opacity: .25; }

/* Golf-divider (de "glimlach" uit het logo) */
.wave-divider svg { display: block; width: 100%; height: 70px; }
.wave-divider path { fill: var(--white); }
.wave-top { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; }

/* ---- Section koppen ------------------------------------------------------ */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--grey); font-size: 1.1rem; margin: 0; }

/* ---- Categorie-tegels (home) -------------------------------------------- */
.section--categories { background: var(--cream); }
.cat-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.cat-tile { display: flex; flex-direction: column; align-items: center; gap: .8rem;
  background: #fff; border: 2px solid transparent; border-radius: var(--radius);
  padding: 1.6rem 1rem; text-decoration: none; color: var(--ink); text-align: center;
  font-family: var(--font-display); font-weight: 600; box-shadow: var(--shadow);
  transition: transform .18s, border-color .18s, box-shadow .18s; }
.cat-tile:hover { transform: translateY(-4px); border-color: var(--yellow); box-shadow: var(--shadow-lg); }
.cat-icon { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  background: var(--lilac); color: var(--purple); }
.cat-tile:hover .cat-icon { background: var(--yellow); color: var(--ink); }

/* ---- Kaartenraster ------------------------------------------------------ */
.card-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: transform .18s, box-shadow .18s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.card-media { position: relative; aspect-ratio: 4/3; background: var(--lilac); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: .8rem; left: .8rem; background: var(--badge-bg, var(--yellow));
  color: var(--badge-fg, #000); font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .03em; padding: .3rem .7rem; border-radius: var(--radius-pill); }
.badge--lg { font-size: .85rem; padding: .4rem .9rem; }
.card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card-title { margin: 0; font-size: 1.18rem; }
.card-text { color: var(--grey); font-size: .92rem; margin: 0; }
.card-cta { margin-top: auto; padding-top: .6rem; display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-display); font-weight: 600; color: var(--purple); }
.card:hover .card-cta { color: var(--yellow-deep); }

/* ---- CTA-band ------------------------------------------------------------ */
.section--cta { background: var(--cream); }
.cta-band { background: var(--purple); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; justify-content: space-between; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; margin-bottom: .2rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,.88); }
.cta-band-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---- SEO-tekst / prose --------------------------------------------------- */
.section--seotext { background: #fff; }
.prose { max-width: 75ch; }
.prose h2, .prose h3 { margin-top: 1.6em; }
.prose p { color: #443; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--purple); font-weight: 600; }

/* ---- Pagina-hero (categorie/contact) ------------------------------------ */
.page-hero { background: var(--lilac); padding-block: clamp(2.2rem, 5vw, 3.5rem); }
.page-hero h1 { margin-bottom: .4rem; }
.page-intro { color: #443; }
.page-intro p { color: #443; }
.breadcrumbs { display: flex; gap: .5rem; flex-wrap: wrap; font-size: .9rem; margin-bottom: 1rem; color: var(--grey); }
.breadcrumbs a { color: var(--purple); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.result-count { color: var(--grey); margin-bottom: 1.2rem; font-weight: 600; }
.empty-state { text-align: center; padding: 3rem 1rem; background: var(--cream); border-radius: var(--radius); }

/* ---- Detailpagina -------------------------------------------------------- */
.detail-hero { background: linear-gradient(180deg, var(--lilac), #fff); padding-block: clamp(1.5rem, 4vw, 3rem); }
.detail-hero-grid { display: grid; gap: 2rem; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: center; }
.detail-hero-media { position: relative; }
.detail-hero-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.detail-hero-copy h1 { margin: .3rem 0 .6rem; }
.rating { display: flex; align-items: center; gap: .5rem; margin: 0 0 1rem; }
.stars { position: relative; font-size: 1.1rem; color: #d9cfe6; letter-spacing: 2px; }
.stars::before { content: "★★★★★"; position: absolute; left: 0; top: 0; width: var(--rate); overflow: hidden; color: var(--yellow); }
.detail-intro { font-size: 1.1rem; }
.detail-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }
.detail-price-hint { margin-top: .8rem; color: var(--grey); font-weight: 700; font-family: var(--font-display); }

.detail-body { display: grid; gap: 2.5rem; grid-template-columns: minmax(0,1fr) 340px;
  align-items: start; padding-block: clamp(2.5rem, 6vw, 4rem); }
.block { margin-bottom: 2.5rem; }
.block:last-child { margin-bottom: 0; }

/* Repertoire */
.repertoire { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.repertoire li { display: flex; justify-content: space-between; gap: 1rem; background: var(--cream);
  padding: .65rem .9rem; border-radius: 12px; }
.rep-song { font-weight: 700; }
.rep-year { color: var(--grey); font-size: .85rem; }

/* Video's */
.video-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.video { margin: 0; }
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video figcaption { margin-top: .5rem; font-weight: 600; font-size: .92rem; color: var(--ink); }

/* FAQ */
.faq details { background: var(--cream); border-radius: 14px; margin-bottom: .7rem; overflow: hidden; }
.faq summary { cursor: pointer; padding: 1rem 1.2rem; font-family: var(--font-display); font-weight: 600;
  list-style: none; position: relative; padding-right: 2.6rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--purple); transition: transform .2s; }
.faq details[open] summary::after { content: "−"; }
.faq details > .prose { padding: 0 1.2rem 1.1rem; }

/* Prijskaart (aside) */
.detail-aside { position: sticky; top: 96px; }
.price-card { background: #fff; border: 2px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.4rem; box-shadow: var(--shadow); }
.price-card h2 { font-size: 1.3rem; }
.price-table { width: 100%; border-collapse: collapse; font-size: .92rem; margin-bottom: .8rem; }
.price-table th { text-align: left; font-size: .75rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--grey); border-bottom: 2px solid var(--line); padding: .4rem .3rem; }
.price-table td { padding: .6rem .3rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table .num { text-align: right; font-family: var(--font-display); font-weight: 600; white-space: nowrap; }
.pr-name { display: block; font-weight: 700; }
.price-table small { color: var(--grey); }
.price-note { font-size: .8rem; color: var(--grey); margin: .4rem 0 1rem; }

.section--related { background: var(--cream); }

/* ---- Contact ------------------------------------------------------------- */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); align-items: start; }
.form { display: grid; gap: 1.1rem; background: #fff; padding: clamp(1.5rem, 4vw, 2.2rem); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.field { display: grid; gap: .35rem; }
.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
.offerte-velden { border: 1px solid var(--line, #e7e3ee); border-radius: 12px; padding: 1rem 1.1rem 1.2rem; margin: 0 0 1.2rem; }
.offerte-velden legend { font-weight: 800; padding: 0 .5rem; font-size: .95rem; }
.offerte-velden legend small { font-weight: 600; opacity: .7; }
.offerte-velden .field-row { margin-bottom: 1.1rem; }
.offerte-velden .field:last-child { margin-bottom: 0; }
.field label { font-family: var(--font-display); font-weight: 600; }
.field label small { color: var(--grey); font-weight: 400; }
.field input, .field textarea { font: inherit; padding: .8rem .9rem; border: 2px solid var(--line);
  border-radius: 12px; background: var(--cream); color: var(--ink); }
.field input:focus, .field textarea:focus { border-color: var(--purple); background: #fff; outline: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #d62828; }
.field-error { color: #d62828; font-size: .85rem; margin: 0; }
.form-prefill { background: var(--lilac); padding: .7rem 1rem; border-radius: 12px; margin: 0; }
.hp { position: absolute; left: -9999px; }
.alert { padding: 1.5rem; border-radius: var(--radius); }
.alert--ok { background: #e9f7ee; border: 2px solid #57b87a; }
.alert--ok h2 { color: #2c7a4b; }

.contact-card { background: var(--purple); color: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.contact-card h2 { color: #fff; }
.contact-phone { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--yellow); text-decoration: none; margin: .3rem 0; }
.contact-mail { color: #fff; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.85); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.6fr 1fr 1fr; padding-block: clamp(2.5rem, 5vw, 4rem); }
.footer-brand img { width: 70px; height: 70px; margin-bottom: 1rem; }
.footer-brand p { max-width: 36ch; }
.footer-col h2 { color: #fff; font-size: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-col a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; }
.footer-bottom .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-block: 1.2rem; }
.footer-bottom p { margin: 0; }

/* ---- 404 ----------------------------------------------------------------- */
.section--404 { padding-block: clamp(4rem, 9vw, 7rem); }
.note-big { font-size: 4rem; color: var(--yellow); margin: 0 0 .5rem; }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 920px) {
  .detail-hero-grid, .detail-body, .contact-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
}
@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .primary-nav { position: fixed; inset: 76px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .25s ease; padding: 1rem; box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 76px); overflow: auto; }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; gap: .25rem; }
  .primary-nav a { padding: .8rem 1rem; font-size: 1.1rem; }
  .phone-cta span { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---- Knop-iconen ---- */
.btn .btn-ico { flex: 0 0 auto; }

/* ---- Evenementen op detailpagina ---- */
.events { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.event {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: .4rem 1rem; padding: .8rem 1rem; border: 1px solid var(--line, #e7e3ee);
  border-radius: 12px; background: #fff;
}
.event-naam { font-weight: 800; }
.event-naam small { font-weight: 600; color: var(--muted, #6c6878); }
.event-meta { display: inline-flex; align-items: center; gap: .4rem 1rem; flex-wrap: wrap; color: var(--muted, #6c6878); font-weight: 600; font-size: .92rem; }
.event-tijd { display: inline-flex; align-items: center; gap: .35rem; }
.event-tijd .btn-ico { width: 16px; height: 16px; }
.event-plaats::before { content: "📍 "; }

/* ---- Verlanglijst ---- */
.card { position: relative; }
.card-media { overflow: hidden; }
.wish-star {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 40px; height: 40px; border: 0; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,.85); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: #b9b2c6; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 3px 10px rgba(35,32,43,.22);
  transition: transform .15s ease, color .15s ease, background .15s ease;
}
.wish-star svg { fill: currentColor; stroke: rgba(0,0,0,.08); stroke-width: .5; }
.wish-star:hover { transform: scale(1.12); background: #fff; color: var(--yellow-deep, #e0a40f); }
.wish-star.is-on { color: var(--yellow, #FBBB25); background: #fff; }
.wish-star.is-on svg { stroke: var(--yellow-deep, #e0a40f); stroke-width: 1; }

/* prijs-float onderaan de foto */
.card-price {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: rgba(35,32,43,.82); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: #fff; font-weight: 800; font-size: .9rem; letter-spacing: .01em;
  padding: .35rem .7rem; border-radius: 999px; box-shadow: 0 2px 8px rgba(35,32,43,.25);
}

.wish-btn.is-on { background: var(--yellow, #FBBB25); color: var(--ink, #23202b); }
.wish-btn svg { transition: transform .15s ease; }
.wish-btn.is-on svg { transform: scale(1.15); }

.wish-link {
  position: relative; display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%; color: var(--purple, #4F2776);
  background: #f1eef7; margin-right: .4rem;
}
.wish-link:hover { background: #e7e0f3; }
.wish-count {
  position: absolute; top: -4px; right: -4px; min-width: 19px; height: 19px;
  padding: 0 5px; border-radius: 10px; background: var(--yellow, #FBBB25);
  color: var(--ink, #23202b); font-size: .72rem; font-weight: 800;
  display: grid; place-items: center; line-height: 1;
}

/* ---- Aanvraag: verlanglijst-chips + type ---- */
.wishlist-box { margin: 0 0 1.2rem; }
.wishlist-box > strong { display: block; margin-bottom: .5rem; }
.wishlist-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--purple, #4F2776); color: #fff; font-weight: 700;
  padding: .35rem .6rem .35rem .8rem; border-radius: 999px; font-size: .9rem;
}
.chip-x { border: 0; background: rgba(255,255,255,.25); color: #fff; cursor: pointer;
  width: 18px; height: 18px; border-radius: 50%; line-height: 1; font-size: 1rem; }
.chip-x:hover { background: rgba(255,255,255,.45); }
.chip-empty { color: var(--muted, #6c6878); font-style: italic; }

.kies-type { border: 1px solid var(--line, #e7e3ee); border-radius: 12px; padding: .9rem 1.1rem; margin: 0 0 1.2rem; }
.kies-type legend { font-weight: 800; padding: 0 .5rem; }
.kies-type .radio { display: inline-flex; align-items: center; gap: .4rem; margin-right: 1.4rem; font-weight: 700; cursor: pointer; }
.kies-type input { accent-color: var(--purple, #4F2776); width: 18px; height: 18px; }

.section--about { padding-top: 0; }

/* ---- Evenementen-sectie (cards) ---- */
.section--events { background: linear-gradient(180deg, #faf8fd, #fff); }
.ev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.ev-grid .ev-extra { display: none; }
.ev-grid.show-extra .ev-extra { display: block; }
.ev-card {
  display: flex; gap: 1rem; align-items: stretch;
  background: #fff; border: 1px solid var(--line, #e7e3ee); border-radius: 16px;
  padding: .9rem; box-shadow: 0 1px 2px rgba(35,32,43,.05), 0 10px 26px rgba(79,39,118,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ev-card:hover { transform: translateY(-3px); box-shadow: 0 1px 2px rgba(35,32,43,.06), 0 16px 34px rgba(79,39,118,.12); }
.ev-date {
  flex: 0 0 64px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--purple, #4F2776); color: #fff; border-radius: 12px; padding: .5rem .2rem; text-align: center;
}
.ev-date--tbd { background: #b7abce; }
.ev-date-day { font-family: var(--font-display, inherit); font-size: 1.7rem; font-weight: 700; line-height: 1; }
.ev-date-mon { text-transform: uppercase; font-size: .72rem; font-weight: 800; letter-spacing: .04em; margin-top: 2px; }
.ev-date-yr { font-size: .68rem; opacity: .8; margin-top: 1px; }
.ev-info { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.ev-name { font-size: 1.05rem; margin: 0; }
.ev-desc { margin: .15rem 0 0; color: var(--purple, #4F2776); font-weight: 700; font-size: .85rem; }
.ev-meta { display: flex; flex-wrap: wrap; gap: .3rem 1rem; margin: .45rem 0 0; color: var(--muted, #6c6878); font-weight: 600; font-size: .9rem; }
.ev-time, .ev-loc { display: inline-flex; align-items: center; gap: .35rem; }
.ev-actions { margin-top: 1.2rem; text-align: center; }
.ev-archive { margin-top: 1rem; }
.ev-archive .ev-card { opacity: .72; }
.ev-archive .ev-date { background: #9b90b3; }
.ev-none { color: var(--muted, #6c6878); }

/* ---- Page-hero: golf + optionele afbeelding ---- */
.page-hero { position: relative; overflow: hidden; padding-bottom: clamp(3.5rem, 7vw, 5rem); }
.page-hero .wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero--img .page-hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.page-hero-media img {
  width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 22px; box-shadow: 0 18px 40px rgba(79,39,118,.22); rotate: 1.5deg;
}
@media (max-width: 760px) {
  .page-hero--img .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-media { display: none; }
}

/* ---- Spotify-embed ---- */
.spotify-embed { border-radius: 14px; overflow: hidden; }
.spotify-embed iframe { display: block; border: 0; border-radius: 14px; }

/* ---- Promo / ad-blok in de zijbalk ---- */
.promo-card { margin-top: 18px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.promo-card img { width: 100%; height: auto; display: block; transition: transform .2s ease; }
.promo-card a:hover img { transform: scale(1.03); }

/* ---- Promoties / uitgelicht (onder profiel & categorie) ---- */
.section--promos { padding-top: clamp(3rem, 6vw, 4.5rem); }
.promo-feature {
  display: grid; grid-template-columns: 5fr 7fr; gap: 0; align-items: stretch;
  background: #fff; border: 1px solid var(--line, #e7e3ee); border-radius: 20px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(35,32,43,.05), 0 14px 34px rgba(79,39,118,.08);
  margin-bottom: 18px;
}
.promo-feature:last-child { margin-bottom: 0; }
.promo-feature-media { position: relative; min-height: 200px; background: var(--lilac, #f1eef7); }
.promo-feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-feature-body { padding: clamp(1.2rem, 3vw, 2rem); display: flex; flex-direction: column; justify-content: center; gap: .5rem; }
.promo-feature-body h2 { margin: 0; }
.promo-feature-body p { margin: 0; color: var(--muted, #6c6878); }
.promo-feature-body .btn { align-self: flex-start; margin-top: .6rem; }
.promo-label {
  align-self: flex-start; background: var(--yellow, #FBBB25); color: var(--ink, #23202b);
  font-weight: 800; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 999px;
}
@media (max-width: 720px) {
  .promo-feature { grid-template-columns: 1fr; }
  .promo-feature-media { aspect-ratio: 16/9; min-height: 0; }
}

/* ---- Golvende randen op de gele "Ook leuk"-sectie ---- */
.section--related { position: relative; }
.section--related::before,
.section--related::after {
  content: ""; position: absolute; left: 0; right: 0; height: 46px;
  background-repeat: no-repeat; background-size: 100% 100%; pointer-events: none; z-index: 1;
}
.section--related::before {
  top: -45px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0,23 C360,52 1080,-6 1440,23 L1440,46 L0,46 Z' fill='%23FFF8EC'/%3E%3C/svg%3E");
}
.section--related::after {
  bottom: -45px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0,23 C360,-6 1080,52 1440,23 L1440,0 L0,0 Z' fill='%23FFF8EC'/%3E%3C/svg%3E");
}

/* ---- Subtiele animaties (extra leven, nodigt uit tot boeken) ---- */
.card-media img { transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(35,32,43,.18); }

/* scroll-reveal (alleen toegevoegd door JS) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; will-change: opacity, transform; }
.reveal.reveal-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.reveal-in { opacity: 1; transform: none; transition: none; }
  .card:hover .card-media img { transform: none; }
}

/* ---- Homepage: binnenkort live (events + line-up) ---- */
.section--upcoming { background: var(--lilac, #F4EEFA); }
.upcoming-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.1rem; }
.up-card {
  background: #fff; border: 1px solid var(--line, #e7e3ee); border-radius: 18px; padding: 1.1rem;
  box-shadow: 0 1px 2px rgba(35,32,43,.05), 0 12px 28px rgba(79,39,118,.07);
  display: flex; flex-direction: column; gap: .9rem;
}
.up-head { display: flex; gap: 1rem; align-items: center; }
.up-meta { min-width: 0; }
.up-name { margin: 0; font-size: 1.12rem; }
.up-name a { color: inherit; text-decoration: none; }
.up-name a:hover { color: var(--purple, #4F2776); text-decoration: underline; }
.up-sub { margin: .2rem 0 0; color: var(--muted, #6c6878); font-weight: 600; font-size: .9rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.up-lineup { border-top: 1px solid var(--line, #e7e3ee); padding-top: .8rem; }
.up-lineup-label { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--purple, #4F2776); margin-bottom: .5rem; }
.up-lineup ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .8rem; }
.up-lineup li a { display: flex; flex-direction: column; align-items: center; gap: .25rem; text-decoration: none; color: var(--ink, #23202b); width: 64px; }
.up-lineup img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(35,32,43,.15); transition: transform .15s ease; }
.up-lineup li a:hover img { transform: scale(1.08); }
.up-lineup li a span { font-size: .72rem; font-weight: 700; text-align: center; line-height: 1.15; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* Homepage Spotify */
.section--home-spotify .spotify-embed { max-width: 820px; margin: 0 auto; }
