/* ============================================================
   style.css — Köningsdag Reusel Huisstijl
   Vorstelijk Verwenfestijn Ticketpagina

   Kleuren:
   - Navy:   #2B3990  (Köningsdag blauw)
   - Oranje: #F7941D  (Köningsdag oranje)
   - Wit:    #FFFFFF
   - Body:   #F0F2F8  (lichtblauw)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── RESET & BASIS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #F0F2F8;
    color: #2d2d2d;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

a { color: #2B3990; text-decoration: none; }
a:hover { text-decoration: underline; }

.container     { max-width: 860px; margin: 0 auto; padding: 0 16px; }
.container-smal { max-width: 680px; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.site-header {
    background: #2B3990;
    color: #fff;
}

/* Drie kolommen: logo — tekst — logo */
.header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 18px 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* ── Logo links (Köningsdag blauw, al cirkelvormig) ── */
.header-logo-link {
    flex-shrink: 0;
    display: block;
    transition: transform 0.2s;
}
.header-logo-link:hover { transform: scale(1.06); }

.header-logo-rond {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 3px 14px rgba(0,0,0,0.35);
}

/* ── Tekst midden ── */
.header-midden {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.header-org-naam {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.header-reusel { color: #F7941D; }

.header-evenement-naam {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.68);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 700;
}

.header-badges {
    margin-top: 10px;
    display: flex;
    gap: 7px;
    justify-content: center;
    flex-wrap: wrap;
}

.datum-badge,
.locatie-badge {
    background: rgba(247,148,29,0.22);
    border: 1px solid rgba(247,148,29,0.55);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
}

/* ── Logo rechts (Verwenfestijn, met witte cirkel-achtergrond) ── */
.header-logo-rechts { flex-shrink: 0; }

.header-logo-vf {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 4px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.35);
    display: block;
}

/* ── Skyline van Reusel ──
   Afbeelding heeft witruimte boven het silhouet (~55% wit).
   We tonen de onderste helft door de afbeelding naar boven te schuiven.
*/
.skyline-wrapper {
    overflow: hidden;
    line-height: 0;
    height: clamp(60px, 14vw, 120px);
}

.skyline-afbeelding {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

/* ── Kleurenbalk (oranje – wit – blauw) ── */
.confetti-balk {
    height: 6px;
    display: flex;
    width: 100%;
    overflow: hidden;
}
.confetti-balk span { flex: 1; display: block; }
.confetti-balk span:nth-child(3n+1) { background: #F7941D; }
.confetti-balk span:nth-child(3n+2) { background: #FFFFFF; }
.confetti-balk span:nth-child(3n)   { background: #2B3990; }

/* ── Mobiel ── */
@media (max-width: 600px) {
    .header-inner    { padding: 14px 14px 12px; gap: 8px; }
    .header-logo-rond,
    .header-logo-vf  { width: 50px; height: 50px; }
    .header-org-naam { font-size: 1.25rem; }
    .header-evenement-naam { letter-spacing: 2px; font-size: 0.65rem; }
    .datum-badge, .locatie-badge { font-size: 0.7rem; padding: 2px 9px; }
}
@media (max-width: 360px) {
    .header-logo-rond,
    .header-logo-vf  { width: 42px; height: 42px; }
    .header-org-naam { font-size: 1.05rem; white-space: normal; }
    .header-badges   { display: none; }
}

/* ══════════════════════════════════════════════
   DEMO BANNER
══════════════════════════════════════════════ */
.demo-banner {
    background: #FFF8E1;
    border-bottom: 2px solid #F7941D;
    padding: 9px 20px;
    text-align: center;
    font-size: 0.87rem;
    color: #7A4F00;
}

/* ══════════════════════════════════════════════
   PAGINA INHOUD
══════════════════════════════════════════════ */
.pagina-inhoud { padding: 28px 0 60px; }

/* ── HERO ── */
.hero {
    background: #fff;
    border-radius: 16px;
    padding: 32px 26px 28px;
    margin-bottom: 22px;
    box-shadow: 0 2px 16px rgba(43,57,144,0.08);
    border-top: 4px solid #F7941D;
    text-align: center;
}

.hero-titel {
    font-size: 2.2rem;
    font-weight: 900;
    color: #2B3990;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-subtekst {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.prijs-callout {
    display: inline-block;
    background: #2B3990;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(43,57,144,0.28);
}

.prijs-callout strong {
    font-size: 1.35em;
    font-weight: 900;
    color: #F7941D;
}

/* ── MELDINGEN ── */
.weinig-tickets-melding {
    background: #FFF3CD;
    border: 1px solid #F7941D;
    border-left: 5px solid #F7941D;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.92rem;
    color: #7A4F00;
}

.fout-melding {
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    border-left: 5px solid #CC0000;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
    color: #7F1D1D;
    font-size: 0.92rem;
}

.uitverkocht-kaart {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 48px 32px;
    box-shadow: 0 4px 24px rgba(43,57,144,0.08);
    margin-top: 20px;
}
.uitverkocht-icoon { font-size: 4rem; margin-bottom: 16px; }
.uitverkocht-kaart h2 { color: #2B3990; margin-bottom: 12px; font-size: 1.5rem; }
.uitverkocht-kaart p { color: #666; margin-bottom: 8px; }

/* ══════════════════════════════════════════════
   FORMULIER SECTIES
══════════════════════════════════════════════ */
.formulier-sectie {
    background: #fff;
    border-radius: 16px;
    padding: 26px;
    margin-bottom: 22px;
    box-shadow: 0 2px 16px rgba(43,57,144,0.08);
    border-top: 4px solid #F7941D;
}

.sectie-titel {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sectie-nr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2B3990;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 900;
    flex-shrink: 0;
}

.sectie-intro { color: #666; margin-bottom: 18px; font-size: 0.92rem; }

/* ── Groepsgrootte ── */
.groepsgrootte-knoppen { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }

.grootte-knop {
    width: 50px;
    height: 50px;
    border: 2px solid #dde1f0;
    border-radius: 12px;
    background: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    color: #999;
    cursor: pointer;
    transition: all 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.grootte-knop:hover {
    border-color: #F7941D;
    color: #F7941D;
    background: #FFF8ED;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247,148,29,0.22);
}

.grootte-knop.actief {
    background: #2B3990;
    border-color: #2B3990;
    color: #fff;
    box-shadow: 0 4px 16px rgba(43,57,144,0.38);
    transform: translateY(-2px) scale(1.06);
}

.groepsgrootte-toelichting { font-size: 0.82rem; color: #aaa; margin-top: 8px; }

/* ── Velden ── */
.formulier-veld { margin-bottom: 16px; }
.formulier-veld:last-child { margin-bottom: 0; }

.formulier-veld label {
    display: block;
    font-weight: 700;
    color: #2B3990;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.verplicht { color: #CC0000; margin-left: 2px; }

.formulier-veld input[type="text"],
.formulier-veld input[type="email"],
.formulier-veld input[type="tel"],
.formulier-veld textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #dde1f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a1a;
    background: #f7f8fc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}

.formulier-veld input:focus,
.formulier-veld textarea:focus {
    border-color: #2B3990;
    box-shadow: 0 0 0 3px rgba(43,57,144,0.13);
    background: #fff;
}

.formulier-veld input:invalid:not(:placeholder-shown),
.formulier-veld textarea:invalid:not(:placeholder-shown) { border-color: #CC0000; }

.formulier-veld textarea { min-height: 80px; resize: vertical; }
.veld-hulp { font-size: 0.77rem; color: #aaa; margin-top: 4px; }

.veld-rij-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .veld-rij-duo { grid-template-columns: 1fr; } }

/* ── Persoon kaarten ── */
.persoon-kaart {
    background: #F0F2F8;
    border: 1px solid #dde1f0;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 14px;
}
.persoon-kaart:last-child { margin-bottom: 0; }

.persoon-header {
    font-weight: 800;
    color: #2B3990;
    font-size: 0.93rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.persoon-icoon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #2B3990;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
}

.persoon-velden { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .persoon-velden { grid-template-columns: 1fr; } }
.persoon-velden .allergie-veld { grid-column: 1 / -1; }

/* ── Prijs overzicht ── */
.betaal-sectie { border-top-color: #2B3990; }

.prijs-overzicht {
    background: #E8EAF6;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 22px;
    border: 1px solid #c8cde8;
}

.prijs-rij {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    color: #555;
    font-size: 0.92rem;
}

.prijs-totaal-rij {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 0;
    margin-top: 8px;
    border-top: 2px solid #2B3990;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
}

.totaal-bedrag {
    font-size: 1.6rem;
    font-weight: 900;
    color: #F7941D;
}

/* ── Betaalknop ── */
.betaal-knop {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    background: #F7941D;
    color: #fff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 22px rgba(247,148,29,0.45);
    margin-bottom: 14px;
    gap: 3px;
    font-family: inherit;
}
.betaal-knop:hover { background: #e5840f; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(247,148,29,0.55); }
.betaal-knop:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(247,148,29,0.3); }
.betaal-knop:disabled { background: #ccc; cursor: not-allowed; box-shadow: none; transform: none; }

.knop-icoon    { font-size: 1.5rem; }
.knop-tekst    { font-size: 1.2rem; font-weight: 800; }
.knop-subtekst { font-size: 0.77rem; opacity: 0.88; }
.kleine-tekst  { font-size: 0.77rem; color: #aaa; text-align: center; line-height: 1.5; }

/* ══════════════════════════════════════════════
   SUCCESSPAGINA
══════════════════════════════════════════════ */
.succes-vinkje {
    width: 80px; height: 80px;
    margin: 0 auto 18px;
    animation: schaalIn 0.6s cubic-bezier(0.17, 0.67, 0.55, 1.27);
}

@keyframes schaalIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.vinkje-streep {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: teken 0.5s 0.4s ease forwards;
}
@keyframes teken { to { stroke-dashoffset: 0; } }

.succes-titel { text-align: center; font-size: 1.9rem; font-weight: 900; color: #2B3990; margin-bottom: 10px; }
.succes-intro { text-align: center; color: #555; margin-bottom: 26px; font-size: 0.97rem; line-height: 1.7; }

.bevestigings-kaart {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(43,57,144,0.1);
    overflow: hidden;
    margin-bottom: 24px;
}

.kaart-sectie { padding: 22px; border-bottom: 1px solid #e8eaf5; }
.kaart-sectie:last-child { border-bottom: none; }
.kaart-sectie h2 { font-size: 0.93rem; font-weight: 800; color: #2B3990; margin-bottom: 14px; }
.kaart-evenement { background: #F0F2F8; }

.details-lijst { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.details-lijst div { display: flex; flex-direction: column; gap: 2px; }
.details-lijst dt { font-size: 0.73rem; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; }
.details-lijst dd { font-size: 0.92rem; color: #1a1a1a; }
.order-id { color: #F7941D !important; font-weight: 800; font-family: monospace; font-size: 0.95rem !important; }

@media (max-width: 480px) { .details-lijst { grid-template-columns: 1fr; } }

.deelnemers-tabel { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.deelnemers-tabel th { background: #2B3990; color: #fff; padding: 9px 12px; text-align: left; font-weight: 700; }
.deelnemers-tabel th:first-child { border-radius: 8px 0 0 0; width: 38px; }
.deelnemers-tabel th:last-child { border-radius: 0 8px 0 0; }
.deelnemers-tabel td { padding: 9px 12px; border-bottom: 1px solid #eaedf5; vertical-align: top; }
.deelnemers-tabel tr:last-child td { border-bottom: none; }
.deelnemers-tabel tr:nth-child(even) { background: #F0F2F8; }
.persoon-nr { font-weight: 800; color: #2B3990; text-align: center; }

.allergie-tag { background: #FEF3C7; border: 1px solid #FCD34D; color: #92400E; padding: 2px 8px; border-radius: 12px; font-size: 0.82rem; display: inline-block; }
.geen-allergie { color: #bbb; font-style: italic; font-size: 0.82rem; }

.kaart-prijs { background: #E8EAF6; }

.succes-slotbericht {
    background: #FFF8ED;
    border-left: 4px solid #F7941D;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin-bottom: 22px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #444;
}
.succes-slotbericht p + p { margin-top: 6px; }

.succes-knoppen { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.knop-terug { display: inline-block; padding: 11px 24px; background: #2B3990; color: #fff; border-radius: 10px; font-weight: 700; transition: background 0.2s; }
.knop-terug:hover { background: #1e2870; text-decoration: none; }

.knop-print { display: inline-block; padding: 11px 24px; background: #fff; color: #333; border: 2px solid #dde1f0; border-radius: 10px; font-weight: 700; font-size: 1rem; font-family: inherit; cursor: pointer; transition: all 0.2s; }
.knop-print:hover { border-color: #2B3990; color: #2B3990; }

.verwerking-kaart { text-align: center; background: #fff; border-radius: 16px; padding: 48px 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); margin-top: 20px; }
.laad-animatie { font-size: 3rem; animation: draai 2s linear infinite; display: inline-block; margin-bottom: 16px; }
@keyframes draai { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.verwerking-kaart h1 { color: #2B3990; margin-bottom: 12px; }

.fout-kaart { text-align: center; background: #FEF2F2; border-radius: 16px; padding: 48px 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); margin-top: 20px; border: 2px solid #FCA5A5; }
.fout-kaart h1 { color: #CC0000; margin-bottom: 12px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer { background: #2B3990; color: #b0baeb; padding: 22px 16px; text-align: center; margin-top: auto; }
.footer-inner { max-width: 860px; margin: 0 auto; }
.footer-inner p { margin-bottom: 6px; font-size: 0.87rem; line-height: 1.6; }
.footer-inner p:last-child { margin-bottom: 0; }
.footer-inner a { color: #fff; opacity: 0.85; }
.footer-inner a:hover { opacity: 1; }

/* ══════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════ */
@media print {
    .site-header, .demo-banner, .succes-knoppen, .site-footer, .confetti-balk { display: none; }
    body { background: #fff; }
    .bevestigings-kaart { box-shadow: none; border: 1px solid #ccc; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 600px) {
    .hero                { padding: 22px 16px 20px; border-radius: 12px; }
    .hero-titel          { font-size: 1.5rem; }
    .formulier-sectie    { padding: 18px 14px; border-radius: 12px; }
    .inbegrepen-blok     { padding: 18px 14px; border-radius: 12px; }
    .faq-blok            { padding: 18px 14px; border-radius: 12px; }
    .succes-titel        { font-size: 1.5rem; }
    .totaal-bedrag       { font-size: 1.3rem; }
}
@media (max-width: 400px) {
    .grootte-knop { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 8px; }
}

/* ── Transactiekosten rij ── */
.prijs-rij-kosten { color: #888; font-size: 0.88rem; }

/* ══════════════════════════════════════════════
   HERO VOORDELEN
══════════════════════════════════════════════ */
.hero-voordelen {
    list-style: none !important;
    padding: 0;
    margin: 16px auto 20px;
    max-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    text-align: left;
}
.hero-voordelen li {
    list-style: none !important;
    font-size: 0.94rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 480px) {
    .hero-voordelen { grid-template-columns: 1fr; max-width: 280px; }
}

/* ══════════════════════════════════════════════
   BESCHIKBAARHEID BALK
══════════════════════════════════════════════ */
.beschikbaar-wrapper {
    max-width: 380px;
    margin: 18px auto 0;
    text-align: center;
}
.beschikbaar-tekst {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 7px;
}
.beschikbaar-balk {
    height: 10px;
    background: #dde1f0;
    border-radius: 10px;
    overflow: hidden;
}
.beschikbaar-balk-vul {
    height: 100%;
    background: linear-gradient(90deg, #2B3990, #F7941D);
    border-radius: 10px;
    transition: width 0.5s ease;
    min-width: 4px;
}

/* ══════════════════════════════════════════════
   INBEGREPEN BLOK
══════════════════════════════════════════════ */
.inbegrepen-blok {
    background: #fff;
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 22px;
    box-shadow: 0 2px 16px rgba(43,57,144,0.08);
    border-top: 4px solid #2B3990;
}
.inbegrepen-titel {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2B3990;
    margin-bottom: 14px;
}
.inbegrepen-lijst {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (max-width: 520px) { .inbegrepen-lijst { grid-template-columns: 1fr; } }
.inbegrepen-lijst li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}
.check  { color: #22c55e; font-size: 1.1rem; font-weight: 900; flex-shrink: 0; }
.schaars { color: #F7941D; font-size: 1rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   SFEER GALLERIJ
══════════════════════════════════════════════ */
.sfeer-gallerij {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sfeer-fotos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    border-radius: 12px;
    overflow: hidden;
    width: 260px;
}
.sfeer-fotos img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}
.sfeer-fotos img:hover { opacity: 0.88; }
.sfeer-caption {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 7px;
}

/* ══════════════════════════════════════════════
   SFEER + GOED DOEL NAAST ELKAAR
══════════════════════════════════════════════ */
.sfeer-en-doel {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.sfeer-en-doel .sfeer-gallerij {
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════
   GOED DOEL BLOK
══════════════════════════════════════════════ */
.goeddoel-blok {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 260px;
}

.goeddoel-logo-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    width: 260px;
    transition: opacity 0.2s, transform 0.2s;
}
.goeddoel-logo-link:hover {
    opacity: 0.88;
    transform: scale(1.02);
}

.goeddoel-logo {
    width: 260px;
    height: 225px;
    object-fit: cover;
    display: block;
}

.goeddoel-info {
    margin-top: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.goeddoel-info strong { color: #2B3990; }

.goeddoel-knop {
    display: inline-block;
    margin-top: 10px;
    background: #2B3990;
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 7px 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
}
.goeddoel-knop:hover {
    background: #F7941D;
    text-decoration: none;
}

/* ══════════════════════════════════════════════
   MUZIEKBINGO BLOK
══════════════════════════════════════════════ */
.bingo-blok {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 22px;
    border-left: 5px solid #F7941D;
    box-shadow: 0 2px 12px rgba(43,57,144,0.07);
}

.bingo-icoon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.bingo-tekst h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #2B3990;
    margin-bottom: 5px;
}

.bingo-tekst p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.bingo-tekst strong { color: #2d2d2d; }

/* ══════════════════════════════════════════════
   ALLERGIE CHECKBOX
══════════════════════════════════════════════ */
label.allergie-check-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
    color: #2B3990;
    font-size: 0.9rem;
    margin-bottom: 0;
    user-select: none;
}
.allergie-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2B3990;
    flex-shrink: 0;
}
.allergie-tekst-veld {
    margin-top: 8px !important;
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #dde1f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a1a;
    background: #f7f8fc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}
.allergie-tekst-veld:focus {
    border-color: #2B3990;
    box-shadow: 0 0 0 3px rgba(43,57,144,0.13);
    background: #fff;
}

/* ══════════════════════════════════════════════
   VERTROUWEN BLOK
══════════════════════════════════════════════ */
.vertrouwen-blok {
    background: #F0F2F8;
    border-radius: 12px;
    padding: 14px 20px;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    border: 1px solid #dde1f0;
}
.vertrouwen-item {
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.vertrouwen-item a { color: #2B3990; font-weight: 700; }

/* ══════════════════════════════════════════════
   GROEPSBEVESTIGING BANNER
══════════════════════════════════════════════ */
.groeps-bevestiging {
    background: #FFF8E7;
    border: 2px solid #F7941D;
    border-radius: 12px;
    padding: 16px 18px;
    margin: 12px 0 4px;
    animation: inschuiven 0.25s ease;
}
@keyframes inschuiven {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.groeps-bevestiging-inhoud {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.groeps-icoon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}
.groeps-tekst strong {
    display: block;
    color: #2B3990;
    font-size: 1rem;
    margin-bottom: 4px;
}
.groeps-tekst p {
    color: #555;
    font-size: 0.92rem;
    margin: 0;
}
.groeps-knoppen {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.groeps-knop {
    padding: 9px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s;
}
.groeps-knop:hover { opacity: 0.85; }
.groeps-knop-ja {
    background: #2B3990;
    color: #fff;
}
.groeps-knop-nee {
    background: #fff;
    color: #2B3990;
    border-color: #2B3990;
}

/* ══════════════════════════════════════════════
   HERO META BADGES
══════════════════════════════════════════════ */
.hero-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.hero-meta-item {
    background: #E8EAF6;
    border: 1px solid #c8cde8;
    color: #2B3990;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
}

/* ══════════════════════════════════════════════
   FAQ BLOK
══════════════════════════════════════════════ */
.faq-blok {
    background: #fff;
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 22px;
    box-shadow: 0 2px 16px rgba(43,57,144,0.08);
    border-top: 4px solid #2B3990;
}
.faq-titel {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2B3990;
    margin-bottom: 16px;
}
.faq-item {
    padding: 12px 0;
    border-bottom: 1px solid #eaedf5;
}
.faq-item:first-of-type { padding-top: 0; }
.faq-item:last-of-type  { border-bottom: none; padding-bottom: 0; }

/* <details> reset */
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-vraag {
    font-weight: 800;
    color: #2B3990;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}
.faq-vraag::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: #F7941D;
    flex-shrink: 0;
    transition: transform 0.2s;
}
details[open] > .faq-vraag::after {
    content: '−';
}
.faq-antwoord {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.65;
    padding-top: 8px;
}
