  :root {
    --oranje: #E8600A;
    --oranje-licht: #F5A623;
    --donker: #1a1008;
    --wit: #FEFAF5;
    --blauw: #1A3A7C;
    --rood: #C0392B;
    --gold: #D4A017;

    /* Premium tinted shadows - getint naar de donkerbruine basiskleur */
    --shadow-sm: 0 2px 8px rgba(8, 4, 2, 0.45);
    --shadow-md: 0 8px 24px rgba(8, 4, 2, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
    --shadow-lg: 0 20px 50px rgba(8, 4, 2, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.05);
    --shadow-xl: 0 30px 80px rgba(8, 4, 2, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06);
    --glow-oranje: 0 0 60px rgba(232, 96, 10, 0.35), 0 0 120px rgba(232, 96, 10, 0.15);
    --glow-blauw: 0 0 50px rgba(26, 58, 124, 0.4);

    /* Premium easing curves */
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  /* ---- ICON SYSTEM ---- */
  .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
  }
  .icon-sm { width: 14px; height: 14px; }
  .icon-lg { width: 24px; height: 24px; }
  .icon-hero {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--oranje-licht);
    opacity: 0.9;
  }
  .icon-hero .icon {
    width: 100%;
    height: 100%;
  }

  /* Zorgt automatisch voor ruimte tussen icon en tekst in koppen/paragrafen.
     Geldt NIET voor buttons/anchors (die gebruiken eigen flex gap). */
  p > .icon:first-child,
  h1 > .icon:first-child,
  h2 > .icon:first-child,
  h3 > .icon:first-child,
  h4 > .icon:first-child,
  h5 > .icon:first-child,
  h6 > .icon:first-child {
    margin-right: 12px;
  }

  body {
    background-color: var(--donker);
    color: var(--wit);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
  }

  /* ---- NAVBAR ---- */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26,16,8,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .navbar-logo img {
    height: 40px;
    width: auto;
    display: block;
  }

  .navbar-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
  }

  .navbar-links a {
    color: rgba(254,250,245,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .navbar-links a:hover { color: var(--oranje-licht); }

  .navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--wit);
    font-size: 22px;
    cursor: pointer;
  }

  .navbar-mobile {
    display: none;
    flex-direction: column;
    padding: 12px 20px 16px;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .navbar-mobile.open { display: flex; }

  .navbar-mobile a {
    color: rgba(254,250,245,0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  @media (max-width: 640px) {
    .navbar-links { display: none; }
    .navbar-toggle { display: block; }
  }

  .hero { padding-top: 100px; }

  /* ---- HERO ---- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 90px;
    background: radial-gradient(ellipse at 50% 0%, #b84a00 0%, #1a1008 65%);
    overflow: hidden;
    isolation: isolate;
  }

  .hero > .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 720px;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8600a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
  }

  .logo-wrap {
    margin-top: 56px;
    margin-bottom: 32px;
    animation: fadeDown 0.8s ease both;
  }

  .logo-wrap img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 12px;
    box-shadow: var(--shadow-lg);
  }

  .hero-tagline {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: clamp(13px, 2vw, 16px);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--oranje-licht);
    margin-bottom: 12px;
    animation: fadeDown 0.9s ease both;
    animation-delay: 0.1s;
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 8vw, 80px);
    line-height: 0.95;
    text-align: center;
    text-transform: uppercase;
    color: var(--wit);
    margin-bottom: 20px;
    animation: fadeDown 1s ease both;
    animation-delay: 0.2s;
  }

  .hero-sub {
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 400;
    color: rgba(254,250,245,0.65);
    text-align: center;
    max-width: 580px;
    line-height: 1.65;
    margin-bottom: 50px;
    animation: fadeDown 1s ease both;
    animation-delay: 0.3s;
  }

  /* ---- EERSTVOLGENDE ACTIVITEIT ---- */
  .next-event-label {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--oranje-licht);
    margin-bottom: 14px;
    animation: fadeUp 1s ease both;
    animation-delay: 0.4s;
  }

  .poster-wrap {
    position: relative;
    max-width: 480px;
    width: 100%;
    animation: fadeUp 1.1s ease both;
    animation-delay: 0.45s;
  }

  .poster-wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart);
    cursor: pointer;
    image-rendering: auto;
  }

  .poster-wrap img:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--glow-oranje);
  }

  .poster-badge {
    position: absolute;
    top: -14px;
    right: -14px;
    background: var(--oranje);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(232,96,10,0.5);
  }

  /* ---- DIVIDER ---- */
  .divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--oranje), transparent);
    margin: 0;
  }

  /* ---- PROGRAMMA SECTIE ---- */
  .programma {
    padding: 80px 20px 100px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--oranje-licht);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 52px);
    text-transform: uppercase;
    color: var(--wit);
    line-height: 1;
  }

  /* ---- DAG BLOKKEN ---- */
  .dag-blok {
    margin-bottom: 72px;
  }

  .dag-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
  }

  .dag-pill {
    background: transparent;
    color: var(--oranje-licht);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(245, 166, 35, 0.35);
    white-space: nowrap;
    transition: all 0.3s var(--ease-out-quart);
  }

  .dag-pill.blauw {
    color: #7eb0ff;
    border-color: rgba(126, 176, 255, 0.35);
  }
  .dag-pill.goud {
    color: var(--gold);
    border-color: rgba(212, 160, 23, 0.45);
  }

  .dag-naam {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 3.2vw, 32px);
    text-transform: uppercase;
    color: var(--wit);
    letter-spacing: 0.02em;
  }

  .dag-lijn {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg,
      rgba(245, 166, 35, 0.3) 0%,
      rgba(245, 166, 35, 0.1) 40%,
      transparent 100%);
  }

  /* ---- FLYER GRID ---- */
  .flyer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
  }

  .flyer-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart);
  }

  .flyer-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: var(--shadow-lg), var(--glow-oranje);
  }

  .flyer-card img {
    width: 100%;
    display: block;
    border-radius: 14px;
  }

  .flyer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }

  .flyer-card:hover .flyer-overlay {
    opacity: 1;
  }

  .flyer-overlay-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.05em;
  }

  /* ---- OVER ONS ---- */
  .over-ons {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 80px 20px;
  }

  .over-ons-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .over-ons-logo {
    width: 100px;
    margin-bottom: 28px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  .over-ons-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 42px);
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--wit);
  }

  .over-ons-tekst {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(254,250,245,0.7);
    margin-bottom: 20px;
  }

  /* ---- AANGESLOTEN ZAKEN ---- */
  .zaken-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 36px;
  }



  /* ---- ZAKEN BUTTONS ---- */
  .zaken-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
  }

  .zaak-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 10px 18px 10px 12px;
    color: var(--wit);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  .zaak-btn:hover {
    background: rgba(232,96,10,0.12);
    border-color: rgba(232,96,10,0.35);
    transform: translateY(-2px);
    color: var(--oranje-licht);
  }

  .zaak-btn img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    background: white;
    padding: 2px;
  }

  /* ---- VIDEO GRID ---- */
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 16px;
  }

  .video-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  }

  .video-wrap iframe {
    width: 100%;
    aspect-ratio: 9/16;
    display: block;
    border: none;
  }

  .video-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oranje-licht);
    margin-bottom: 12px;
    margin-top: 28px;
  }

  @media (max-width: 600px) {
    .video-grid { grid-template-columns: 1fr 1fr; }
  }

  #videos .video-wrap iframe {
    aspect-ratio: 16/9;
  }

  /* ---- SPONSOREN ---- */
  .sponsoren {
    padding: 80px 20px 60px;
    background: rgba(255,255,255,0.02);
  }

  .sponsoren-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .sponsoren-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .sponsor-tegel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 20px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    text-align: center;
  }

  .sponsor-tegel:hover {
    background: rgba(232,96,10,0.1);
    border-color: rgba(232,96,10,0.3);
    transform: translateY(-4px);
  }

  .sponsor-tegel img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: contain;
    background: white;
    padding: 4px;
  }

  .sponsor-naam {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--wit);
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .sponsor-groep-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(254,250,245,0.35);
    margin-bottom: 16px;
  }

  .sponsor-type {
    font-size: 13px;
    color: rgba(254,250,245,0.45);
    font-weight: 400;
  }

  /* ---- PROMO'S ---- */
  .promos {
    padding: 80px 20px 60px;
    background: var(--donker);
  }

  .promos-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }

  .video-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9/16;
    max-width: 360px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }

  .video-wrap iframe {
    width: 100%;
    height: 100%;
    border-radius: 14px;
  }

  .video-placeholder {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 2px dashed rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(254,250,245,0.25);
    font-size: 14px;
    font-weight: 500;
  }

  /* ---- TERUGBLIK ---- */
  .terugblik {
    padding: 80px 20px 60px;
    background: var(--donker);
  }

  .terugblik-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .terugblik-blok {
    margin-bottom: 64px;
  }

  .terugblik-blok-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .foto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }

  .foto-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }

  .foto-grid img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(232,96,10,0.25);
  }

  .foto-placeholder {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 2px dashed rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(254,250,245,0.25);
    font-size: 14px;
    font-weight: 500;
  }

  @media (max-width: 600px) {
    .foto-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .foto-grid img, .foto-placeholder { height: 150px; }
  }

  /* ---- CONTACT ---- */
  .contact-sectie {
    padding: 80px 20px 100px;
    background: linear-gradient(180deg, var(--donker) 0%, #0e0a04 100%);
  }
  .contact-inner { max-width: 1000px; margin: 0 auto; }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
  }
  @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
  .contact-form { display: flex; flex-direction: column; gap: 18px; }
  .form-group { display: flex; flex-direction: column; gap: 7px; }
  .form-group label {
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(254,250,245,0.5);
  }
  .form-group input, .form-group select, .form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 13px 16px; color: var(--wit);
    font-family: 'Barlow', sans-serif; font-size: 15px; outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-group select option { background: #1a1008; color: white; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--oranje); background: rgba(232,96,10,0.07);
  }
  .spam-check input { max-width: 120px; }
  .verzend-btn {
    background: var(--oranje); color: white; border: none; border-radius: 10px;
    padding: 15px 28px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 17px; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer;
    transition: background 0.2s, transform 0.15s; align-self: flex-start; margin-top: 6px;
  }
  .verzend-btn:hover { background: #c9520a; transform: translateY(-2px); }
  .form-feedback { font-size: 14px; margin-top: 4px; min-height: 20px; }
  .contact-info { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
  .info-blok { display: flex; gap: 16px; align-items: flex-start; }
  .info-icon { font-size: 22px; margin-top: 2px; flex-shrink: 0; }
  .info-blok strong {
    display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(254,250,245,0.5); margin-bottom: 4px;
  }
  .info-blok p { font-size: 15px; color: var(--wit); line-height: 1.5; }
  .email-reveal {
    color: var(--oranje-licht); cursor: pointer; font-size: 14px;
    text-decoration: underline; text-underline-offset: 3px;
  }
  .email-reveal:hover { color: white; }

  /* ---- FOOTER ---- */
  footer {
    padding: 40px 20px;
    text-align: center;
    color: rgba(254,250,245,0.3);
    font-size: 13px;
  }

  footer strong { color: rgba(254,250,245,0.6); }

  .social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
  }

  .social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(254,250,245,0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }

  .social-links a:hover {
    color: white;
    border-color: rgba(232,96,10,0.4);
    background: rgba(232,96,10,0.1);
  }

  .social-links svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  /* ---- MODAL ---- */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
  }

  .modal-overlay.open { display: flex; }

  .modal-img {
    max-width: 520px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s ease;
  }

  .modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .modal-close:hover { background: rgba(255,255,255,0.2); }

  /* ---- ANIMATIES ---- */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

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

  /* ---- RESPONSIVE ---- */
  @media (max-width: 600px) {
    .flyer-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .poster-badge { top: -10px; right: -6px; }
  }

  /* ---- EVENT HEADERS + BANNERS (Koningsweekend & Bevrijdingsdag) ---- */
  .event-header {
    max-width: 1200px;
    margin: 0 auto 14px;
    text-align: left;
  }

  .event-header-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--oranje-licht);
    margin-bottom: 6px;
  }

  .event-header-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(26px, 3vw, 36px);
    color: var(--wit);
    line-height: 1;
    letter-spacing: -0.01em;
  }

  .event-banner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 32px;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-md);
  }

  .event-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* Soft fade aan de onderkant zodat de banner overloopt in de pagina */
  .event-banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(180deg,
      rgba(26, 16, 8, 0) 0%,
      rgba(26, 16, 8, 0.6) 60%,
      var(--donker) 100%);
    pointer-events: none;
  }

  @media (max-width: 640px) {
    .event-banner {
      aspect-ratio: 4 / 3;
      border-radius: 12px 12px 0 0;
    }
    .event-banner::after {
      height: 60px;
    }
  }

  /* ============================================================
     THEMA: BEVRIJDINGSDAG — rood, wit, blauw — vlag-energiek
     Activeer met <body class="theme-bevrijding">
     ============================================================ */

  /* Variabele overrides voor het hele thema */
  body.theme-bevrijding {
    --donker: #0a1530;                          /* nachtblauw ipv warm bruin */
    --oranje: #d63848;                          /* helder vlag-rood */
    --oranje-licht: #a8c5ff;                    /* zacht hemelsblauw als highlight */
    --shadow-sm: 0 2px 8px rgba(2, 6, 20, 0.5);
    --shadow-md: 0 8px 24px rgba(2, 6, 20, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    --shadow-lg: 0 20px 50px rgba(2, 6, 20, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06);
    --shadow-xl: 0 30px 80px rgba(2, 6, 20, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.07);
    --glow-oranje: 0 0 60px rgba(214, 56, 72, 0.4), 0 0 120px rgba(26, 58, 124, 0.25);
    --glow-blauw:  0 0 50px rgba(80, 140, 255, 0.45);
  }

  /* Hero achtergrond — diep blauw met subtiele rode gloed */
  body.theme-bevrijding .hero {
    background:
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(214, 56, 72, 0.35) 0%, transparent 65%),
      radial-gradient(ellipse 120% 80% at 50% 0%, #1a3a7c 0%, #0a1530 60%),
      #0a1530;
  }

  /* Hero noise pattern in zacht blauw ipv oranje */
  body.theme-bevrijding .hero::before {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a8c5ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
  }

  /* ---- HERO SFEERLAAG ---- */
  body.theme-bevrijding .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }

  /* Stage lights in vlagkleuren — één rood, één wit, één blauw */
  body.theme-bevrijding .stage-light {
    position: absolute;
    top: -15%;
    width: 28vw;
    max-width: 420px;
    min-width: 220px;
    height: 130vh;
    transform-origin: 50% 0%;
    filter: blur(48px);
    mix-blend-mode: screen;
    will-change: transform, opacity;
  }

  body.theme-bevrijding .light-rood {
    left: 8%;
    background: linear-gradient(180deg,
      rgba(214, 56, 72, 0.32) 0%,
      rgba(180, 30, 50, 0.14) 35%,
      rgba(140, 20, 40, 0.04) 65%,
      transparent 85%);
    animation: bd-swayA 16s ease-in-out infinite;
  }
  body.theme-bevrijding .light-wit {
    left: 50%;
    margin-left: -14vw;
    background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(220, 230, 255, 0.1) 35%,
      transparent 80%);
    animation: bd-swayB 19s ease-in-out infinite -4s;
    opacity: 0.85;
  }
  body.theme-bevrijding .light-blauw {
    right: 8%;
    background: linear-gradient(180deg,
      rgba(100, 160, 255, 0.32) 0%,
      rgba(60, 100, 200, 0.14) 35%,
      transparent 80%);
    animation: bd-swayC 21s ease-in-out infinite -9s;
  }

  @keyframes bd-swayA {
    0%, 100% { transform: rotate(-22deg); opacity: 0.5;  }
    50%      { transform: rotate(-4deg);  opacity: 0.95; }
  }
  @keyframes bd-swayB {
    0%, 100% { transform: rotate(-6deg);  opacity: 0.55; }
    50%      { transform: rotate(8deg);   opacity: 0.9;  }
  }
  @keyframes bd-swayC {
    0%, 100% { transform: rotate(22deg);  opacity: 0.55; }
    50%      { transform: rotate(4deg);   opacity: 1;    }
  }

  /* ---- BOKEH ORBS in vlagkleuren ---- */
  body.theme-bevrijding .orb-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  body.theme-bevrijding .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    mix-blend-mode: screen;
    will-change: transform, opacity;
    opacity: 0;
  }

  /* drie kleurvarianten — vlag-trio */
  body.theme-bevrijding .orb-r {
    background: radial-gradient(circle,
      rgba(255, 130, 145, 0.95) 0%,
      rgba(214, 56, 72, 0.4) 45%,
      transparent 75%);
  }
  body.theme-bevrijding .orb-w {
    background: radial-gradient(circle,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(220, 230, 255, 0.4) 45%,
      transparent 75%);
  }
  body.theme-bevrijding .orb-b {
    background: radial-gradient(circle,
      rgba(150, 190, 255, 0.95) 0%,
      rgba(60, 110, 220, 0.4) 45%,
      transparent 75%);
  }

  body.theme-bevrijding .orb:nth-child(1) { left:  8%; top: 88%; width:  6px; height:  6px; animation: bd-floatOrb 18s ease-in-out infinite;        }
  body.theme-bevrijding .orb:nth-child(2) { left: 22%; top: 76%; width: 12px; height: 12px; animation: bd-floatOrb 22s ease-in-out infinite -3s;    }
  body.theme-bevrijding .orb:nth-child(3) { left: 36%; top: 92%; width:  4px; height:  4px; animation: bd-floatOrb 14s ease-in-out infinite -7s;    }
  body.theme-bevrijding .orb:nth-child(4) { left: 54%; top: 82%; width: 10px; height: 10px; animation: bd-floatOrb 20s ease-in-out infinite -5s;    }
  body.theme-bevrijding .orb:nth-child(5) { left: 68%; top: 95%; width:  8px; height:  8px; animation: bd-floatOrb 16s ease-in-out infinite -10s;   }
  body.theme-bevrijding .orb:nth-child(6) { left: 82%; top: 80%; width: 14px; height: 14px; animation: bd-floatOrb 24s ease-in-out infinite -12s;   }
  body.theme-bevrijding .orb:nth-child(7) { left: 14%; top: 50%; width:  3px; height:  3px; animation: bd-floatOrb 19s ease-in-out infinite -4s;    }
  body.theme-bevrijding .orb:nth-child(8) { left: 76%; top: 55%; width:  5px; height:  5px; animation: bd-floatOrb 17s ease-in-out infinite -9s;    }
  body.theme-bevrijding .orb:nth-child(9) { left: 46%; top: 65%; width:  7px; height:  7px; animation: bd-floatOrb 21s ease-in-out infinite -14s;   }

  @keyframes bd-floatOrb {
    0%   { transform: translate(0, 0);         opacity: 0;   }
    15%  { opacity: 0.85; }
    50%  { opacity: 1; }
    85%  { opacity: 0.4; }
    100% { transform: translate(14px, -180px); opacity: 0;   }
  }

  /* ---- LOGO GLOW: wit-blauw ipv warm-oranje ---- */
  body.theme-bevrijding .logo-wrap { position: relative; }
  body.theme-bevrijding .logo-wrap::before {
    content: '';
    position: absolute;
    inset: -28px;
    background: radial-gradient(circle,
      rgba(200, 220, 255, 0.4) 0%,
      rgba(60, 110, 220, 0.18) 45%,
      transparent 70%);
    filter: blur(26px);
    z-index: -1;
    animation: bd-breathe 5.5s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes bd-breathe {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50%      { opacity: 1;   transform: scale(1.1);  }
  }

  /* ---- TITLE SHINE: wit-blauw ipv warm-goud ---- */
  body.theme-bevrijding .hero-title .shine-text {
    background: linear-gradient(
      100deg,
      var(--wit)    0%,
      var(--wit)   40%,
      #b8d4ff      50%,
      var(--wit)   60%,
      var(--wit)  100%
    );
    background-size: 250% 100%;
    background-position: 150% 0;
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    animation: bd-textShine 7s ease-in-out infinite;
  }
  @keyframes bd-textShine {
    0%   { background-position: 150% 0; }
    100% { background-position: -80% 0; }
  }

  /* ---- LIVE-DOT: rood pulserend ---- */
  body.theme-bevrijding .next-event-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--oranje-licht);
  }
  body.theme-bevrijding .live-dot {
    width: 9px;
    height: 9px;
    background: #d63848;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(214, 56, 72, 0.7);
    animation: bd-pulseDot 2s ease-out infinite;
    flex-shrink: 0;
  }
  @keyframes bd-pulseDot {
    0%   { box-shadow: 0 0 0 0   rgba(214, 56, 72, 0.7); }
    70%  { box-shadow: 0 0 0 14px rgba(214, 56, 72, 0); }
    100% { box-shadow: 0 0 0 0   rgba(214, 56, 72, 0); }
  }

  /* ---- POSTER BADGE: krachtig rood, wel pulserend ---- */
  body.theme-bevrijding .poster-badge {
    background: #d63848;
    box-shadow: 0 4px 16px rgba(214, 56, 72, 0.55);
    animation: bd-badgePulse 2.6s ease-in-out infinite;
  }
  @keyframes bd-badgePulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(214, 56, 72, 0.55); }
    50%      { box-shadow: 0 4px 16px rgba(214, 56, 72, 0.6), 0 0 0 7px rgba(214, 56, 72, 0.18); }
  }

  /* ---- SCROLL CUE ---- */
  body.theme-bevrijding .hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    text-decoration: none;
    color: rgba(254, 250, 245, 0.55);
    transition: color 0.3s var(--ease-out-quart), transform 0.3s var(--ease-out-quart);
  }
  body.theme-bevrijding .hero-scroll:hover {
    color: var(--oranje-licht);
    transform: translateX(-50%) translateY(-2px);
  }
  body.theme-bevrijding .scroll-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
  }
  body.theme-bevrijding .scroll-chevron {
    display: block;
    width: 11px;
    height: 11px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    animation: bd-scrollBounce 2.4s ease-in-out infinite;
  }
  @keyframes bd-scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(-3px, -3px); opacity: 0.5; }
    50%      { transform: rotate(45deg) translate(2px, 2px);   opacity: 1;   }
  }

  /* ---- DIVIDER: rood-wit-blauw vlag-gradient ---- */
  body.theme-bevrijding .divider {
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(214, 56, 72, 0.5) 25%,
      rgba(255, 255, 255, 0.65) 50%,
      rgba(80, 140, 255, 0.5) 75%,
      transparent 100%);
    background-size: 200% 100%;
    animation: bd-dividerFlow 11s ease-in-out infinite;
  }
  @keyframes bd-dividerFlow {
    0%, 100% { background-position: 0% 0;   }
    50%      { background-position: 100% 0; }
  }

  /* ---- SECTION TITLE underline accent ---- */
  body.theme-bevrijding .section-title {
    position: relative;
    display: inline-block;
  }
  body.theme-bevrijding .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg,
      transparent 0%,
      #d63848 30%,
      #ffffff 50%,
      #5099ff 70%,
      transparent 100%);
    transform: translateX(-50%);
    transition: width 1.2s var(--ease-out-expo) 0.3s;
  }
  body.theme-bevrijding .section-header.in-view .section-title::after {
    width: 90px;
  }

  /* ---- DAG-PILL en card hover-shine: zachter, in vlagkleuren ---- */
  body.theme-bevrijding .dag-pill { position: relative; overflow: hidden; }
  body.theme-bevrijding .dag-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.18) 50%,
      transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.9s var(--ease-out-expo);
    pointer-events: none;
  }
  body.theme-bevrijding .dag-pill:hover::before { transform: translateX(120%); }

  body.theme-bevrijding .flyer-card { position: relative; }
  body.theme-bevrijding .flyer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(110deg,
      transparent 30%,
      rgba(255, 255, 255, 0.18) 50%,
      transparent 70%);
    transition: left 1s var(--ease-out-expo);
    pointer-events: none;
    z-index: 2;
    border-radius: 14px;
  }
  body.theme-bevrijding .flyer-card:hover::after { left: 125%; }

  body.theme-bevrijding .sponsor-tegel,
  body.theme-bevrijding .zaak-btn {
    position: relative;
    overflow: hidden;
  }
  body.theme-bevrijding .sponsor-tegel::after,
  body.theme-bevrijding .zaak-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(110deg,
      transparent 35%,
      rgba(255, 255, 255, 0.14) 50%,
      transparent 65%);
    transition: left 0.9s var(--ease-out-expo);
    pointer-events: none;
  }
  body.theme-bevrijding .sponsor-tegel:hover::after,
  body.theme-bevrijding .zaak-btn:hover::after { left: 125%; }

  /* ---- EVENT BANNER: zachte zoom op hover ---- */
  body.theme-bevrijding .event-banner img {
    transition: transform 1.4s var(--ease-out-expo);
  }
  body.theme-bevrijding .event-banner:hover img { transform: scale(1.035); }

  /* ---- SCROLL REVEAL ---- */
  html.js body.theme-bevrijding .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
      opacity   0.9s var(--ease-out-expo),
      transform 0.9s var(--ease-out-expo);
  }
  html.js body.theme-bevrijding .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  html.js body.theme-bevrijding .reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity   0.7s var(--ease-out-expo),
      transform 0.7s var(--ease-out-expo);
  }
  html.js body.theme-bevrijding .reveal-stagger.in-view > *             { opacity: 1; transform: translateY(0); }
  html.js body.theme-bevrijding .reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.00s; }
  html.js body.theme-bevrijding .reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.08s; }
  html.js body.theme-bevrijding .reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.16s; }
  html.js body.theme-bevrijding .reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.24s; }
  html.js body.theme-bevrijding .reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.32s; }
  html.js body.theme-bevrijding .reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.40s; }
  html.js body.theme-bevrijding .reveal-stagger.in-view > *:nth-child(n+7) { transition-delay: 0.48s; }

  /* ---- OVERIGE ACCENT-OVERRIDES VOOR THEMA ---- */

  /* Body achtergrond ook nachtblauw — voorkomt warme rand bij overgang */
  body.theme-bevrijding {
    background-color: #0a1530;
  }

  /* Over-ons sectie: subtiel blauw-getint ipv standaard transparant-warm */
  body.theme-bevrijding .over-ons {
    background: rgba(80, 140, 255, 0.04);
  }

  /* Sponsoren tegels: hover-rand en bg → blauw-rood */
  body.theme-bevrijding .sponsor-tegel:hover {
    background: rgba(214, 56, 72, 0.1);
    border-color: rgba(214, 56, 72, 0.35);
  }
  body.theme-bevrijding .zaak-btn:hover {
    background: rgba(214, 56, 72, 0.12);
    border-color: rgba(214, 56, 72, 0.35);
    color: #ff9eaa;
  }

  /* Foto-grid hover glow: warm-oranje → rood-blauw */
  body.theme-bevrijding .foto-grid img:hover {
    box-shadow: 0 12px 40px rgba(214, 56, 72, 0.28);
  }

  /* Poster wrap hover */
  body.theme-bevrijding .poster-wrap img:hover {
    box-shadow: var(--shadow-xl), 0 0 60px rgba(214, 56, 72, 0.35), 0 0 120px rgba(80, 140, 255, 0.2);
  }

  /* Form focus border */
  body.theme-bevrijding .form-group input:focus,
  body.theme-bevrijding .form-group select:focus,
  body.theme-bevrijding .form-group textarea:focus {
    border-color: #d63848;
    background: rgba(214, 56, 72, 0.07);
  }

  /* Verzendknop */
  body.theme-bevrijding .verzend-btn { background: #d63848; }
  body.theme-bevrijding .verzend-btn:hover { background: #b62a3a; }

  /* Contact-sectie achtergrondgradient — naar dieper blauw */
  body.theme-bevrijding .contact-sectie {
    background: linear-gradient(180deg, #0a1530 0%, #050b1c 100%);
  }

  /* Email-reveal en social-links accenten */
  body.theme-bevrijding .email-reveal { color: var(--oranje-licht); }
  body.theme-bevrijding .social-links a:hover {
    border-color: rgba(214, 56, 72, 0.45);
    background: rgba(214, 56, 72, 0.12);
  }

  /* Mobile: lichten kleiner */
  @media (max-width: 640px) {
    body.theme-bevrijding .stage-light { filter: blur(34px); width: 50vw; min-width: 180px; }
    body.theme-bevrijding .orb         { filter: blur(1.5px); }
  }

  /* Reduced motion: respect */
  @media (prefers-reduced-motion: reduce) {
    body.theme-bevrijding .stage-light,
    body.theme-bevrijding .orb,
    body.theme-bevrijding .live-dot,
    body.theme-bevrijding .poster-badge,
    body.theme-bevrijding .logo-wrap::before,
    body.theme-bevrijding .scroll-chevron,
    body.theme-bevrijding .divider,
    body.theme-bevrijding .hero-title .shine-text {
      animation: none !important;
    }
    body.theme-bevrijding .hero-title .shine-text {
      color: var(--wit);
      background: none;
      -webkit-background-clip: border-box;
              background-clip: border-box;
    }
    html.js body.theme-bevrijding .reveal,
    html.js body.theme-bevrijding .reveal-stagger > * {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }
