/* ═══════════════════════════════════════════════════════════════
   House of Music – Gedeelde stijlen
   Bevat: font, reset, variabelen, topbar, navbar, mobiel menu,
          buttons, utilities, CTA-balk, footer + alle media queries
   ═══════════════════════════════════════════════════════════════ */

/* ── FONT ── */
@font-face {
  font-family: 'Impact';
  src: url('impact.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #fff; color: #222; font-family: 'Barlow', sans-serif; font-size: 17px; line-height: 1.7; overflow-x: hidden; }

/* ── VARIABELEN ── */
:root {
  --red: #E31E24;
  --red-dark: #b5181d;
  --black: #111;
  --dark: #1c1c1c;
  --off-white: #f7f7f7;
  --grey: #888;
  --radius: 10px;
}

/* ── TOPBAR ── */
.topbar {
  background: #0a0a0a;
  border-bottom: 1px solid #1e1e1e;
  padding: 8px 0;
  font-size: 13px;
  color: #666;
  position: relative;
  z-index: 1001;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left a { color: #666; text-decoration: none; font-size: 13px; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: #fff; }
.topbar-right { display: flex; gap: 10px; align-items: center; }
.topbar-right a {
  color: #888; text-decoration: none; font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border: 1px solid #2a2a2a; border-radius: 4px;
  transition: color .2s, border-color .2s, background .2s;
}
.topbar-right a:hover { color: #fff; border-color: #444; }
.topbar-right .topbar-cta { background: var(--red); color: #fff; border-color: var(--red); }
.topbar-right .topbar-cta:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: background .3s, box-shadow .3s; }
.navbar.scrolled { background: rgba(17,17,17,.97); box-shadow: 0 2px 20px rgba(0,0,0,.2); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-logo a { text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: block; padding: 8px 13px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.88); text-decoration: none; transition: color .2s; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--red); }
.dropdown { position: absolute; top: calc(100% + 4px); left: 0; min-width: 210px; background: #1a1a1a; border-top: 2px solid var(--red); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s; }
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 16px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: #bbb; text-decoration: none; border-bottom: 1px solid #252525; transition: color .15s, background .15s, padding-left .15s; }
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: #fff; background: #242424; padding-left: 22px; }
.nav-cta { background: var(--red) !important; color: #fff !important; border-radius: 6px; margin-left: 6px; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* ── BURGER ── */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; }

/* ── BUTTONS ── */
.btn-red { display: inline-block; background: var(--red); color: #fff; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 15px 38px; text-decoration: none; border-radius: 6px; transition: background .2s, transform .15s; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { display: inline-block; background: transparent; color: #fff; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 13px 36px; border: 2px solid rgba(255,255,255,.45); text-decoration: none; border-radius: 6px; transition: border-color .2s, transform .15s; }
.btn-outline:hover { border-color: #fff; transform: translateY(-2px); }
.btn-dark { display: inline-block; background: var(--black); color: #fff; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; padding: 13px 32px; text-decoration: none; border-radius: 6px; transition: background .2s, transform .15s; }
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-white { display: inline-block; background: #fff; color: var(--red); font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 16px 42px; text-decoration: none; border-radius: 6px; white-space: nowrap; transition: background .2s, transform .15s; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-red-sm { display: inline-block; background: var(--red); color: #fff; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; padding: 13px 32px; text-decoration: none; border-radius: 6px; transition: background .2s, transform .15s; }
.btn-red-sm:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ── UTILITIES ── */
.label { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.section { padding: 96px 32px; }
.s-inner { max-width: 1200px; margin: 0 auto; }
.heading { font-family: 'Oswald', sans-serif; font-size: clamp(30px,4vw,48px); font-weight: 700; letter-spacing: .02em; text-transform: uppercase; line-height: 1.05; color: #222; }
.heading em { font-style: normal; color: var(--red); }

/* ── CTA BALK ── */
.cta { background: var(--red); padding: 72px 32px; }
.cta-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta h2 { font-family: 'Oswald', sans-serif; font-size: clamp(26px,3.5vw,44px); font-weight: 700; text-transform: uppercase; color: #fff; line-height: 1.05; }
.cta p { color: rgba(255,255,255,.78); margin-top: 8px; font-size: 16px; }

/* ── MOBIEL MENU OVERLAY ── */
.mob-overlay {
  position: fixed; inset: 0; z-index: 2000; background: #111;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
  overflow-y: auto;
}
.mob-overlay.open { opacity: 1; visibility: visible; }
.mob-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; border-bottom: 1px solid #222; flex-shrink: 0; }
.mob-header img { height: 30px; width: auto; display: block; }
.mob-close { width: 40px; height: 40px; background: none; border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 24px; line-height: 1; }
.mob-nav { flex: 1; padding: 8px 0; }
.mob-item { border-bottom: 1px solid #1e1e1e; }
.mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  cursor: pointer; background: none; border: none; width: 100%; text-align: left;
  transition: color .2s;
}
.mob-link:hover { color: var(--red); }
.mob-link.active { color: var(--red); }
.mob-plus {
  width: 28px; height: 28px; border: 2px solid #333; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; color: var(--red);
  transition: transform .3s, border-color .3s;
}
.mob-link.active .mob-plus { transform: rotate(45deg); border-color: var(--red); }
.mob-sub { display: none; background: #161616; border-top: 1px solid #1e1e1e; }
.mob-sub.open { display: block; }
.mob-sub a { display: block; padding: 14px 28px 14px 40px; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #999; text-decoration: none; border-bottom: 1px solid #1a1a1a; transition: color .2s, padding-left .2s; }
.mob-sub a:last-child { border-bottom: none; }
.mob-sub a:hover { color: #fff; padding-left: 48px; }
.mob-footer { padding: 24px 24px 28px; border-top: 1px solid #1e1e1e; flex-shrink: 0; }
.mob-footer-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.mob-cta { display: block; background: var(--red); color: #fff; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 14px 28px; text-decoration: none; border-radius: 6px; text-align: center; transition: background .2s; }
.mob-cta:hover { background: var(--red-dark); }
.mob-cta-outline { display: block; background: transparent; color: #fff; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 14px 28px; text-decoration: none; border-radius: 6px; border: 2px solid #333; text-align: center; transition: border-color .2s; }
.mob-cta-outline:hover { border-color: #666; }
.mob-social { display: flex; justify-content: center; gap: 14px; }
.mob-social a { width: 40px; height: 40px; background: #1e1e1e; border: 1px solid #2e2e2e; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #666; text-decoration: none; transition: background .2s, color .2s; }
.mob-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ── FOOTER ── */
footer { background: var(--black); padding: 72px 32px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #2a2a2a; }
.footer-brand img { height: 30px; width: auto; margin-bottom: 18px; display: block; }
.footer-brand p { color: #666; font-size: 14px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; background: #1e1e1e; border: 1px solid #2e2e2e; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #666; text-decoration: none; transition: background .2s, color .2s, border-color .2s; }
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: #fff; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #2a2a2a; display: flex; justify-content: space-between; align-items: center; }
.footer-col h4 .footer-toggle { display: none; font-size: 16px; color: var(--red); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #666; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.f-row { display: flex; align-items: flex-start; gap: 10px; color: #666; font-size: 14px; margin-bottom: 12px; }
.f-row a { color: #666; text-decoration: none; transition: color .2s; }
.f-row a:hover { color: #fff; }
.f-row svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: #444; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #444; text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ── MEDIA QUERIES ── */
@media (max-width: 960px) {
  .topbar { display: none; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .section { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  /* Footer lessen uitklap op mobiel */
  .footer-col-lessen h4 { cursor: pointer; }
  .footer-col-lessen h4 .footer-toggle { display: inline; }
  .footer-col-lessen ul { display: none; }
  .footer-col-lessen.open ul { display: block; }
  /* Navbar logo gelijk aan mob-header logo */
  .nav-logo img { height: 28px; }
}
@media (max-width: 600px) {
  .section { padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-col ul li { margin-bottom: 4px; }
  .footer-col ul li a { font-size: 13px; }
  footer { padding: 40px 20px 24px; }

  /* Hero-buttons: gelijke breedte op mobiel (lespagina's + oefenruimtes) */
  .page-hero .btn-red,
  .page-hero .btn-outline {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* ── Hero/content horizontale uitlijning ─────────────────
   Probleem: .page-hero heeft padding-left/right op de sectie zelf,
   maar .page-body gebruikt max-width + margin:auto + padding.
   Op brede schermen staan ze daardoor niet gelijk.
   Oplossing: horizontale padding van sectie naar .page-hero-inner
   verplaatsen. section.page-hero heeft hogere specificiteit (0,1,1)
   dan de inline .page-hero (0,1,0) en wint altijd. ─────────────── */
section.page-hero {
  padding-left: 0;
  padding-right: 0;
}
.page-hero-inner {
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 600px) {
  .page-hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ─────────────────────────────────────────────────────── */

/* ── Sidebar-CTA: knop vult het rode vak ──
   De lespagina's hadden deze regel al inline; pagina's als algemene-voorwaarden,
   tarieven en cadeaubon niet. Daar viel een lang label ("Proefles aanvragen →")
   door de nowrap-knop buiten het rode vak. white-space:normal is de vangnet-regel
   voor labels die ook op volle breedte niet op één regel passen. */
.sidebar-cta .btn-white { width: 100%; padding: 13px 24px; font-size: 12px; white-space: normal; }

/* ── Sidebar – underbar op mobiel (alle lespagina's) ── */

/* Tablet (960px): praktische info-rijen in 2 kolommen naast elkaar */
@media (max-width: 960px) {
  .sidebar .sidebar-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }
}

/* Mobiel (768px): verberg "Alle lessen" en "Proefles aanvragen" uit sidebar */
@media (max-width: 768px) {
  .sidebar > .sidebar-box:last-child {
    display: none;
  }

  .sidebar-cta {
    display: none;
  }
}

/* Klein mobiel (480px): info-rijen terug naar één kolom */
@media (max-width: 480px) {
  .sidebar .sidebar-info {
    grid-template-columns: 1fr;
  }
}
/* ─────────────────────────────────────────────────────── */

/* === REGIO SECTIE (inline kaart in lespagina's) === */
.regio-sectie { display:flex; gap:40px; align-items:center; margin-top:56px; background:#2e2e2e; border-radius:8px; padding:36px 36px 36px 0; border-left:5px solid #E31E24; }
.regio-kaart { flex-shrink:0; width:220px; height:220px; background:#2e2e2e; border-radius:8px; display:flex; align-items:center; justify-content:center; margin-left:36px; }
.regio-kaart svg { width:200px; height:200px; }
.regio-content { flex:1; }
.regio-label { font-family:'Oswald',sans-serif; font-size:11px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:#E31E24; margin-bottom:8px; display:block; }
.regio-sectie h3 { font-family:'Oswald',sans-serif; font-size:24px; font-weight:700; text-transform:uppercase; color:#fff; line-height:1.1; margin:0 0 12px; }
.regio-sectie h3 em { font-style:normal; color:#E31E24; }
.regio-sectie p { color:rgba(255,255,255,.82) !important; font-size:14px; line-height:1.75; margin:0 0 16px; }
.regio-dorpen { display:flex; flex-wrap:wrap; gap:6px; }
.regio-dorp { font-family:'Oswald',sans-serif; font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; background:rgba(255,255,255,.1); color:#fff; padding:4px 10px; border-radius:4px; }
.regio-dorp.home { background:#E31E24; }
.regio-bereik { display:flex; gap:20px; flex-wrap:wrap; margin-top:16px; padding-top:16px; border-top:1px solid rgba(255,255,255,.1); }
.regio-stat { display:flex; align-items:center; gap:7px; font-family:'Barlow',sans-serif; font-size:13px; color:rgba(255,255,255,.6); }
.regio-stat svg { color:#E31E24; flex-shrink:0; }
.regio-stat strong { color:#fff; font-weight:600; }
@media (max-width:768px) {
  .regio-sectie { flex-direction:column; padding:28px 24px; gap:24px; }
  .regio-kaart { margin-left:0; width:200px; height:200px; }
  .regio-kaart svg { width:155px; height:155px; }
  .regio-bereik { gap:12px; }
  .regio-dorp { background:rgba(255,255,255,.2); color:#fff; }
  .regio-stat { color:rgba(255,255,255,.85); }
  .regio-sectie p { color:rgba(255,255,255,.82) !important; }
}

/* === REVIEWS SECTIE === */
.reviews-sectie { padding: 72px 0; background: #f7f7f7; }
.reviews-sectie.donker { background: #111; }
.reviews-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.reviews-header h2 { font-family: 'Oswald', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; text-transform: uppercase; color: #111; line-height: 1.1; margin: 0; }
.reviews-sectie.donker .reviews-header h2 { color: #fff; }
.reviews-header h2 em { font-style: normal; color: #E31E24; }
.reviews-score { display: flex; align-items: center; gap: 12px; }
.reviews-score-getal { font-family: 'Oswald', sans-serif; font-size: 40px; font-weight: 700; color: #111; line-height: 1; }
.reviews-sectie.donker .reviews-score-getal { color: #fff; }
.reviews-score-sterren { display: flex; gap: 3px; }
.reviews-score-sterren span { color: #F4B400; font-size: 18px; }
.reviews-score-label { font-family: 'Barlow', sans-serif; font-size: 13px; color: #888; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-kaart { background: #fff; border-radius: 8px; padding: 28px; position: relative; border-top: 3px solid #E31E24; }
.reviews-sectie.donker .review-kaart { background: #1a1a1a; }
.review-quote { font-size: 48px; line-height: 1; color: #E31E24; font-family: Georgia, serif; margin-bottom: 8px; margin-top: -8px; }
.review-tekst { font-family: 'Barlow', sans-serif; font-size: 15px; line-height: 1.7; color: #444; margin-bottom: 20px; }
.reviews-sectie.donker .review-tekst { color: rgba(255,255,255,.7); }
.review-footer { display: flex; align-items: center; justify-content: space-between; }
.review-naam { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #222; }
.reviews-sectie.donker .review-naam { color: #fff; }
.review-sterren { display: flex; gap: 2px; }
.review-sterren span { color: #F4B400; font-size: 13px; }
.reviews-cta { text-align: center; margin-top: 36px; }
.reviews-cta a { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #E31E24; text-decoration: none; border-bottom: 1px solid #E31E24; padding-bottom: 2px; }
.reviews-cta a:hover { opacity: .7; }
@media (max-width: 960px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } .reviews-sectie { padding: 48px 0; } .reviews-inner { padding: 0 20px; } }

/* === DESKTOP-ONLY / MOBIEL-ONLY === */
@media (max-width: 768px) { .desktop-only { display: none; } }
@media (min-width: 769px) { .mobiel-only { display: none; } }

/* === LEDENPORTAAL ICOON IN NAV === */
.nav-portaal {
  display: flex;
  align-items: center;
  padding: 6px 8px !important;
  color: #aaa !important;
  transition: color .2s;
}
.nav-portaal:hover {
  color: #fff !important;
}

/* ── Open dag: poster-popup ─────────────────────────────────────────────
   z-index 9998: bewust onder de cookiebanner (9999), zodat die altijd
   bedienbaar blijft. Markup wordt door script.js in de body gezet. ──── */
.od-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.72);
  opacity: 0;
  transition: opacity .28s ease;
  overflow-y: auto;
}
.od-popup-overlay.open { opacity: 1; }
.od-popup-overlay[hidden] { display: none; }

.od-popup {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: auto;
  background: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  transform: translateY(14px) scale(.96);
  opacity: 0;
  transition: transform .28s cubic-bezier(.2,.7,.3,1), opacity .28s ease;
}
.od-popup-overlay.open .od-popup { transform: translateY(0) scale(1); opacity: 1; }

.od-popup-beeld { display: block; line-height: 0; }
.od-popup-beeld img {
  display: block;
  width: 100%;
  max-height: 60vh;          /* een staande poster valt zo niet buiten beeld */
  object-fit: contain;
  background: #000;
}

.od-popup-sluit {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.od-popup-sluit:hover { background: rgba(0,0,0,.8); }
.od-popup-sluit:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.od-popup-tekst { padding: 22px 26px 26px; text-align: center; }
.od-popup-tekst h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 10px;
}
.od-popup-tekst p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  margin: 0 0 18px;
}
.od-popup-tekst .btn-red { display: block; padding: 15px 24px; }
.od-popup-link {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.od-popup-link:hover { color: #fff; }

@media (max-width: 600px) {
  .od-popup-overlay { padding: 16px; }
  .od-popup { max-width: 100%; }
  .od-popup-beeld img { max-height: 45vh; }
  .od-popup-tekst { padding: 20px 20px 24px; }
  .od-popup-tekst h2 { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .od-popup-overlay, .od-popup { transition: opacity .2s ease; }
  .od-popup { transform: none; }
  .od-popup-overlay.open .od-popup { transform: none; }
}

/* ── Ballonnen: open dag ────────────────────────────────────────────────
   Puur CSS, geen afbeeldingen. Alleen transform en opacity worden
   geanimeerd, zodat de browser niet hoeft te herberekenen. ──────────── */
.ballonnen {
  position: absolute;
  inset: 0;
  z-index: 1;                /* boven het verloop, onder .page-hero-inner (z-index 2) */
  overflow: hidden;
  pointer-events: none;      /* knoppen in de hero blijven klikbaar */
}
.ballon {
  position: absolute;
  bottom: -90px;
  width: 58px;
  height: 74px;
  /* bol van boven, taps toelopend naar het knoopje */
  border-radius: 50% 50% 50% 50% / 60% 60% 42% 42%;
  will-change: transform, opacity;
  opacity: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
}
/* knoopje onderaan */
.ballon::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid currentColor;
}
/* touwtje */
.ballon::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 60px;
  margin-top: 4px;
  background: rgba(255,255,255,.5);
}
/* rood: uit de bestaande variabele, met glans linksboven */
.ballon.rood {
  color: var(--red);
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,.5), rgba(255,255,255,0) 46%),
    var(--red);
}
/* licht: halftransparant wit */
.ballon.licht {
  color: rgba(255,255,255,.6);
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,.75), rgba(255,255,255,0) 46%),
    rgba(255,255,255,.75);
}

@keyframes ballon-op-a {
  0%   { transform: translate3d(0,0,0);            opacity: 0; }
  10%  { opacity: var(--vol, .7); }
  50%  { transform: translate3d(16px,-330px,0); }
  85%  { opacity: var(--vol, .7); }
  100% { transform: translate3d(-8px,-660px,0);    opacity: 0; }
}
@keyframes ballon-op-b {
  0%   { transform: translate3d(0,0,0);            opacity: 0; }
  10%  { opacity: var(--vol, .7); }
  50%  { transform: translate3d(-22px,-330px,0); }
  85%  { opacity: var(--vol, .7); }
  100% { transform: translate3d(10px,-660px,0);    opacity: 0; }
}
@keyframes ballon-op-c {
  0%   { transform: translate3d(0,0,0);            opacity: 0; }
  10%  { opacity: var(--vol, .7); }
  50%  { transform: translate3d(9px,-330px,0); }
  85%  { opacity: var(--vol, .7); }
  100% { transform: translate3d(-25px,-660px,0);   opacity: 0; }
}

/* per ballon een eigen plek, duur en vertraging — nooit synchroon */
/* Posities vanaf 47%: links daarvan staan de kop, de datumregel en de knoppen.
   De knoppen lopen bij de breedste layout tot 41%, dus die zone blijft vrij.
   Drie ballonnen hebben een negatieve vertraging en zijn dus al halverwege
   hun vlucht zodra de pagina laadt; de andere vier komen daarna binnen. */
.ballon.b1 { left: 47%; --vol: 1; animation: ballon-op-a 17s linear   -6s infinite; }
.ballon.b2 { left: 55%; --vol: .8; animation: ballon-op-b 21s linear  3.5s infinite; transform: scale(.82); }
.ballon.b3 { left: 62%; --vol: .8; animation: ballon-op-c 15s linear    7s infinite; }
.ballon.b4 { left: 70%; --vol: 1; animation: ballon-op-a 22s linear   -9s infinite; transform: scale(.9); }
.ballon.b5 { left: 78%; --vol: .8; animation: ballon-op-b 14s linear    9s infinite; }
.ballon.b6 { left: 86%; --vol: 1; animation: ballon-op-c 19s linear  -13s infinite; transform: scale(.75); }
.ballon.b7 { left: 94%; --vol: .8; animation: ballon-op-a 16s linear   10s infinite; }

/* smalle schermen: vier ballonnen is genoeg */
@media (max-width: 600px) {
  .ballon.b5, .ballon.b6, .ballon.b7 { display: none; }
  /* Op mobiel lopen de knoppen over de volle breedte; verschuiven kan daar niet.
     Daarom gedempter, zodat de knoptekst vol contrast houdt. */
  .ballonnen .ballon { width: 42px; height: 54px; --vol: .45; }
}

/* ── Ballonnen in de pop-up ─────────────────────────────────────────────
   Subtieler en trager. Staan achter de poster en de tekst; de sluitknop
   (z-index 2) blijft altijd bereikbaar. ────────────────────────────── */
.od-popup-ballonnen {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: var(--radius);
}
.od-popup-ballonnen .ballon { width: 24px; height: 31px; bottom: -60px; }
.od-popup-ballonnen .ballon::after { height: 38px; }
.od-popup-ballonnen .ballon.p1 { left:  7%; --vol: .4; animation: ballon-op-a 24s linear  0s infinite; }
.od-popup-ballonnen .ballon.p2 { left: 86%; --vol: .4; animation: ballon-op-b 20s linear  6s infinite; }
.od-popup-ballonnen .ballon.p3 { left: 93%; --vol: .4; animation: ballon-op-c 26s linear 12s infinite; }
/* poster en tekst blijven boven de ballonnen */
.od-popup-beeld, .od-popup-tekst { position: relative; z-index: 1; }

/* ── Geen beweging bij prefers-reduced-motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  /* Geen stilstaande ballonnen: ze zijn vormgegeven om te zweven en staan
     zonder animatie onder de onderrand. Helemaal weglaten oogt rustiger. */
  .ballonnen, .od-popup-ballonnen { display: none; }
  .ballon { animation: none !important; }
}
