/*
Theme Name: Oranjevereniging Nijeveen
Theme URI: https://www.oranjeverenigingnijeveen.nl
Description: Festival poster design — Feestweek Nijeveen
Version: 6.0
Author: Oranjevereniging Nijeveen
*/

/* ── FONTS ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@700;900&family=Barlow:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
    --oranje:        #E8711A;
    --oranje-donker: #C45C0A;
    --oranje-licht:  #FFF0E0;
    --donker:        #1A1208;
    --donker-mid:    #2A1E0E;
    --wit:           #FFFFFF;
    --creme:         #F7F2EC;
    --grijs:         #6B7280;
    --grijs-licht:   #F3F4F6;
    --grijs-rand:    #E5E7EB;
    --blauw:         #1E3A8A;
    --blauw-donker:  #162B68;
    --groen:         #16A34A;

    --font-display:   'Bebas Neue', Impact, sans-serif;
    --font-condensed: 'Barlow Condensed', Impact, sans-serif;
    --font-body:      'Barlow', system-ui, sans-serif;

    --radius:     8px;
    --radius-lg:  16px;
    --overgang:   0.2s ease;
}

/* ── BASIS ──────────────────────────────────────────────────────── */
body {
    font-family: var(--font-body);
    background: var(--creme);
    color: var(--donker);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
header {
    background: var(--wit);
    border-bottom: 3px solid var(--oranje);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 76px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo img { height: 58px; width: auto; }

.main-navigation ul { display: flex; list-style: none; gap: 2px; margin: 0; }
.main-navigation li { position: relative; }

.main-navigation > ul > li > a {
    display: block;
    padding: 8px 14px;
    font-family: var(--font-condensed);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--donker);
    border-radius: var(--radius);
    transition: all var(--overgang);
    text-transform: uppercase;
}
.main-navigation > ul > li > a:hover,
.main-navigation > ul > li.current-menu-item > a,
.main-navigation > ul > li.current-menu-ancestor > a {
    color: var(--oranje);
    background: var(--oranje-licht);
}

.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--wit);
    border: 1px solid var(--grijs-rand);
    border-top: 3px solid var(--oranje);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 8px 0;
    min-width: 210px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 1000;
}
.main-navigation li:hover > .sub-menu { display: block; }
.main-navigation .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--donker);
    transition: all var(--overgang);
}
.main-navigation .sub-menu li a:hover {
    background: var(--oranje-licht);
    color: var(--oranje);
    padding-left: 26px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--grijs-rand);
    border-radius: var(--radius);
    font-size: 22px;
    color: var(--donker);
    cursor: pointer;
    padding: 6px 12px;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — festival poster style
   ═══════════════════════════════════════════════════════════════ */
.hp-hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 80px;
}

/* Donkere overlay met warme tint */
.hp-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(180,80,0,0.18) 0%, transparent 60%),
        linear-gradient(180deg,
            rgba(5,2,0,0.22) 0%,
            rgba(5,2,0,0.42) 40%,
            rgba(5,2,0,0.68) 80%,
            rgba(5,2,0,0.82) 100%);
    z-index: 1;
}

/* Noise texture overlay */
.hp-hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.hp-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 24px 60px;
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Gescheurde onderrand */
.hp-hero__scheur-wrap {
    position: absolute;
    bottom: -3px;
    left: 0; right: 0;
    z-index: 4;
    line-height: 0;
    pointer-events: none;
}
.hp-hero__scheur-img {
    width: 100%;
    height: 72px;
    display: block;
    object-fit: fill;
}

/* ── TITELS ─────────────────────────────────────────────────────── */
.hp-titel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 18px;
}

/* FEESTWEEK — oranje verfstreep */
.hp-feestweek {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-1deg);
    margin-bottom: -8px; /* overlap naar NIJEVEEN */
    z-index: 2;
}

/* NIJEVEEN — blauwe verfstreep, iets naar rechts */
.hp-nijeveen {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0.5deg) translateX(12px);
    z-index: 1;
}

/* Verfstreep SVG — vult container volledig */
.hp-verfstreep-img {
    position: absolute;
    top: -10px;
    left: -24px;
    right: -24px;
    width: calc(100% + 48px);
    height: calc(100% + 20px);
    object-fit: fill;
    z-index: 1;
    pointer-events: none;
}

/* Tekst bovenop verfstreep */
.hp-feestweek__tekst {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(5rem, 13vw, 10rem);
    line-height: 0.92;
    color: var(--wit);
    letter-spacing: 0.02em;
    text-shadow: 3px 5px 0 rgba(0,0,0,0.55), 0 0 30px rgba(0,0,0,0.3);
    padding: 6px 20px;
    display: block;
}

.hp-nijeveen__tekst {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 12vw, 9.2rem);
    line-height: 0.92;
    color: var(--wit);
    letter-spacing: 0.02em;
    text-shadow: 3px 5px 0 rgba(0,0,0,0.55), 0 0 30px rgba(0,0,0,0.3);
    padding: 6px 20px;
    display: block;
}

/* Datum */
.hp-datum {
    font-family: var(--font-condensed);
    font-size: clamp(1.1rem, 2.8vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.93);
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 22px;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.7);
}

/* CTA knop — brush style, geen border-radius */
.hp-hero__cta {
    display: inline-block;
    position: relative;
    background: var(--oranje);
    color: var(--wit);
    font-family: var(--font-condensed);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 52px;
    border-radius: 4px;
    margin-bottom: 28px;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
    box-shadow: 0 4px 0 rgba(0,0,0,0.35), 0 6px 20px rgba(232,113,26,0.5);
    text-decoration: none;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}
.hp-hero__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='40'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100' height='40' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    border-radius: 4px;
    mix-blend-mode: overlay;
}
.hp-hero__cta:hover {
    background: var(--oranje-donker);
    transform: scale(0.97) translateY(2px);
    box-shadow: 0 2px 0 rgba(0,0,0,0.35), 0 3px 12px rgba(232,113,26,0.4);
    color: var(--wit);
}

/* ── COUNTDOWN ─────────────────────────────────────────────────── */
.hp-countdown {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 10px;
    padding: 14px 30px;
}
.hp-countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
}
.hp-countdown__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--wit);
    line-height: 1;
    display: block;
}
.hp-countdown__label {
    font-family: var(--font-condensed);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.58);
    text-transform: uppercase;
    margin-top: 2px;
    display: block;
}
.hp-countdown__sep {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--oranje);
    line-height: 1;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   QUICKLINKS — 3 papieren kaarten
   ═══════════════════════════════════════════════════════════════ */
.hp-ql {
    background: #EDE8DF;
    padding: 52px 0 48px;
    position: relative;
}

/* Noise op sectie-achtergrond */
.hp-ql::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.09'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hp-ql__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Lichte rotatie per kaart — micro-imperfectie */
.hp-ql__kaart:nth-child(1) { transform: rotate(-0.6deg); }
.hp-ql__kaart:nth-child(2) { transform: rotate(0.4deg) translateY(4px); }
.hp-ql__kaart:nth-child(3) { transform: rotate(-0.3deg); }

.hp-ql__kaart {
    transition: transform var(--overgang), box-shadow var(--overgang);
}
.hp-ql__kaart:nth-child(1):hover { transform: rotate(-0.6deg) translateY(-5px); }
.hp-ql__kaart:nth-child(2):hover { transform: rotate(0.4deg) translateY(-1px); }
.hp-ql__kaart:nth-child(3):hover { transform: rotate(-0.3deg) translateY(-5px); }

/* Papier kaart */
.hp-ql__papier {
    position: relative;
    background: #FAF8F4;
    border-radius: 3px;
    box-shadow:
        0 2px 6px rgba(0,0,0,0.14),
        0 8px 24px rgba(0,0,0,0.10),
        inset 0 0 60px rgba(180,150,100,0.08);
    overflow: hidden;
}

/* Papier textuur */
.hp-ql__papier::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' seed='3'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.96 0 0 0 0 0.93 0 0 0 0 0.88 0 0 0 0.7 0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23p)'/%3E%3C/svg%3E") center/cover;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 1;
}

/* Scheur SVG's */
.hp-ql__scheur-top {
    width: calc(100% + 8px);
    margin-left: -4px;
    height: 16px;
    object-fit: fill;
    display: block;
    margin-top: -8px;
    transform: scaleY(-1);
    position: relative;
    z-index: 2;
}
.hp-ql__scheur-bot {
    width: calc(100% + 8px);
    margin-left: -4px;
    height: 16px;
    object-fit: fill;
    display: block;
    margin-bottom: -8px;
    position: relative;
    z-index: 2;
}

.hp-ql__body {
    padding: 22px 24px 28px;
    position: relative;
    z-index: 3;
}

.hp-ql__icon-titel {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.hp-ql__icon {
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
}
.hp-ql__titel {
    font-family: var(--font-condensed);
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #1A1208;
    margin: 0;
    text-transform: uppercase;
}
.hp-ql__tekst {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #5A4A2A;
    line-height: 1.5;
    margin-bottom: 20px;
}
.hp-ql__btn {
    display: inline-block;
    background: var(--oranje);
    color: var(--wit);
    font-family: var(--font-condensed);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 11px 28px;
    border-radius: 4px;
    transition: all var(--overgang);
    box-shadow: 0 3px 0 rgba(0,0,0,0.25);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}
.hp-ql__btn:hover {
    background: var(--oranje-donker);
    color: var(--wit);
    transform: scale(0.97) translateY(1px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.25);
}

/* ═══════════════════════════════════════════════════════════════
   HOOGTEPUNTEN
   ═══════════════════════════════════════════════════════════════ */
.hp-hoog {
    background: #EDE8DF;
    padding: 8px 0 56px;
    position: relative;
}
.hp-hoog::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.09'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hp-hoog__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 32px;
    padding-top: 12px;
    position: relative;
    z-index: 1;
}
.hp-hoog__heading h2 {
    font-family: var(--font-condensed);
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1A1208;
    margin: 0;
}
.hp-hoog__pijl {
    color: var(--oranje);
    font-size: 1.3rem;
    line-height: 1;
}

.hp-hoog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Lichte rotatie per kaart */
.hp-hoog__kaart:nth-child(1) { transform: rotate(-0.5deg); }
.hp-hoog__kaart:nth-child(2) { transform: rotate(0.3deg) translateY(3px); }
.hp-hoog__kaart:nth-child(3) { transform: rotate(-0.4deg); }

.hp-hoog__kaart {
    display: block;
    text-decoration: none;
    background: #F5F0E8;
    border-radius: 3px;
    overflow: visible;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 1px 4px rgba(0,0,0,0.12);
    transition: transform var(--overgang), box-shadow var(--overgang);
}
.hp-hoog__kaart:nth-child(1):hover { transform: rotate(-0.5deg) translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.28); }
.hp-hoog__kaart:nth-child(2):hover { transform: rotate(0.3deg) translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.28); }
.hp-hoog__kaart:nth-child(3):hover { transform: rotate(-0.4deg) translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.28); }

/* Foto wrapper */
.hp-hoog__foto-papier {
    position: relative;
    background: #2a1500;
    overflow: hidden;
}

/* Scheur randen boven/onder foto */
.hp-hoog__rand-top {
    position: absolute;
    top: -1px; left: -4px; right: -4px;
    width: calc(100% + 8px);
    height: 18px;
    object-fit: fill;
    z-index: 3;
    transform: scaleY(-1) rotate(180deg);
    filter: brightness(0.96) sepia(0.15);
    pointer-events: none;
}
.hp-hoog__rand-bot {
    position: absolute;
    bottom: -1px; left: -4px; right: -4px;
    width: calc(100% + 8px);
    height: 18px;
    object-fit: fill;
    z-index: 3;
    filter: brightness(0.94) sepia(0.1);
    pointer-events: none;
}

.hp-hoog__foto-wrap {
    overflow: hidden;
    height: 210px;
    position: relative;
}

/* Warm gradient overlay op foto */
.hp-hoog__foto-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(100,40,0,0.45) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hp-hoog__foto {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    filter: saturate(1.25) brightness(0.88) contrast(1.05);
}
.hp-hoog__kaart:hover .hp-hoog__foto {
    transform: scale(1.07);
}

/* Label sectie */
.hp-hoog__label {
    background: #F5F0E8;
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

/* Naam met verfstreep SVG als achtergrond */
.hp-hoog__naam-wrap {
    position: relative;
    display: inline-block;
}
.hp-hoog__verfstreep {
    position: absolute;
    top: -6px;
    left: -10px;
    right: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 12px);
    object-fit: fill;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-0.5deg);
}
.hp-hoog__naam {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--wit);
    letter-spacing: 0.03em;
    line-height: 1;
    display: block;
    padding: 3px 10px;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.45);
}
.hp-hoog__tijd {
    display: inline-block;
    font-family: var(--font-condensed);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5A4A2A;
    background: #E8E0D0;
    border-radius: 2px;
    padding: 3px 10px;
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL
   ═══════════════════════════════════════════════════════════════ */
.hp-social {
    background: #EDE8DF;
    padding: 12px 0 48px;
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.hp-social__link {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--oranje);
    color: var(--wit);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--overgang);
    box-shadow: 0 3px 0 rgba(0,0,0,0.25);
}
.hp-social__link:hover {
    background: var(--oranje-donker);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(232,113,26,0.45);
    color: var(--wit);
}

/* ═══════════════════════════════════════════════════════════════
   SPONSORS
   ═══════════════════════════════════════════════════════════════ */
.sponsors-section {
    background: var(--wit);
    padding: 48px 0;
    margin: 0;
    border-top: 1px solid var(--grijs-rand);
}
.sponsors-section h2 {
    font-family: var(--font-condensed);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--donker);
    text-align: center;
    margin-bottom: 36px;
}
.sponsors-carousel { overflow: hidden; position: relative; }
.sponsors-track {
    display: flex;
    gap: 24px;
    animation: scroll 40s linear infinite;
}
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.sponsor-card {
    background: transparent;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 120px;
    flex-shrink: 0;
    transition: transform var(--overgang);
}
.sponsor-card img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter var(--overgang);
}
.sponsor-card:hover { transform: scale(1.08); }
.sponsor-card:hover img { filter: grayscale(0%); }

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════ */
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-image { max-width: 90%; max-height: 90vh; object-fit: contain; border-radius: 6px; }
.lightbox-close {
    position: absolute; top: 20px; right: 28px;
    background: var(--wit); color: var(--donker);
    border: none; width: 48px; height: 48px;
    border-radius: 50%; font-size: 28px;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: all var(--overgang); z-index: 10000;
}
.lightbox-close:hover { background: var(--oranje); color: var(--wit); transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.9); color: var(--donker);
    border: none; width: 56px; height: 56px;
    border-radius: 50%; font-size: 36px;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: all var(--overgang);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--oranje); color: var(--wit); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER — donkerblauw, oranje accenten
   ═══════════════════════════════════════════════════════════════ */
footer {
    background: #0F2348;
    color: rgba(255,255,255,0.85);
    padding: 52px 0 28px;
    margin-top: 48px;
    border-top: 4px solid var(--oranje);
}

footer::before { display: none; }

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 36px;
    align-items: start;
}

.footer-logo { margin-bottom: 18px; }
.footer-logo img {
    height: 72px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255,193,120,0.9);
    line-height: 1.7;
}

.footer-section h3 {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--oranje);
    margin-bottom: 14px;
}

.footer-section ul li { margin-bottom: 8px; }

.footer-section a {
    font-size: 14px;
    color: rgba(255,193,120,0.9);
    transition: color var(--overgang);
}
.footer-section a:hover { color: var(--wit); }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,193,120,0.9);
}
.footer-contact-item svg {
    color: var(--oranje);
    flex-shrink: 0;
    width: 18px; height: 18px;
}

.footer-sponsor-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.footer-sponsor-badge {
    display: inline-block;
    border: 1.5px solid rgba(242,101,34,0.45);
    border-radius: 20px;
    padding: 5px 14px;
    font-family: var(--font-condensed);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,193,120,0.85);
    transition: all var(--overgang);
}
.footer-sponsor-badge:hover {
    border-color: var(--oranje);
    color: var(--wit);
    background: rgba(242,101,34,0.15);
}
.footer-sponsor-badge:hover {
    border-color: var(--oranje);
    color: var(--oranje);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,193,120,0.55);
    font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGES (nieuws, programma, etc.)
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
    background: var(--donker);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232,113,26,0.12) 0%, transparent 60%);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--wit);
    letter-spacing: 0.03em;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.main-content {
    padding: 48px 0;
}

/* Kaarten algemeen */
.card {
    background: var(--wit);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    border: 1px solid var(--grijs-rand);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--oranje);
}

/* Nieuws grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}
.news-card {
    background: var(--wit);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: transform var(--overgang), box-shadow var(--overgang);
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.16);
}
.news-card a { text-decoration: none; color: inherit; display: block; }
.news-card img { width: 100%; height: 220px; object-fit: cover; }
.news-card-body { padding: 24px; }
.news-card-body h2 {
    font-family: var(--font-condensed);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--donker);
    margin-bottom: 8px;
}
.news-card-body h2 a:hover { color: var(--oranje); }
.news-card-date { color: var(--grijs); font-size: 13px; margin-bottom: 12px; }
.news-card-excerpt { color: #6B4E3D; line-height: 1.6; font-size: 14px; margin-bottom: 14px; }
.news-card-more { color: var(--oranje); font-weight: 600; font-size: 14px; }
.news-card-more:hover { color: var(--oranje-donker); }

/* Knoppen algemeen */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 4px;
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--overgang);
    white-space: nowrap;
    box-shadow: 0 3px 0 rgba(0,0,0,0.22);
}
.btn:hover { transform: scale(0.97) translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.22); }
.btn-orange, .btn-primary { background: var(--oranje); color: var(--wit); }
.btn-orange:hover, .btn-primary:hover { background: var(--oranje-donker); color: var(--wit); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hp-ql__grid   { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .hp-hoog__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .hp-ql__kaart:nth-child(1),
    .hp-ql__kaart:nth-child(2),
    .hp-ql__kaart:nth-child(3) { transform: rotate(0); }
    .hp-hoog__kaart:nth-child(1),
    .hp-hoog__kaart:nth-child(2),
    .hp-hoog__kaart:nth-child(3) { transform: rotate(0); }
}

@media (max-width: 768px) {
    .logo img { height: 44px; }
    .mobile-menu-toggle { display: block; }
    .main-navigation {
        display: none;
        position: fixed;
        top: 76px; left: 0; right: 0;
        background: var(--wit);
        padding: 20px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.18);
        z-index: 999;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        border-top: 3px solid var(--oranje);
    }
    .main-navigation.active { display: block; }
    .main-navigation ul { flex-direction: column; gap: 0; }
    .main-navigation li { border-bottom: 1px solid var(--grijs-rand); }
    .main-navigation > ul > li > a { padding: 14px 8px; font-size: 1.3rem; display: block; }

    .hp-hero { min-height: 460px; padding-bottom: 60px; }
    .hp-feestweek__tekst { font-size: clamp(3.2rem, 15vw, 5.5rem); }
    .hp-nijeveen__tekst  { font-size: clamp(2.8rem, 13vw, 5rem); }
    .hp-countdown { padding: 12px 16px; gap: 6px; }
    .hp-countdown__num { font-size: 1.8rem; }
    .hp-countdown__item { min-width: 38px; }
    .hp-hero__cta { font-size: 1.1rem; padding: 14px 32px; }
    .hp-datum { font-size: 1rem; letter-spacing: 0.12em; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .news-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   FESTIVAL STIJL — Quicklinks & Hoogtepunten (Amatic SC)
   ═══════════════════════════════════════════════════════════════ */

/* ── QUICKLINKS ─────────────────────────────────────────────── */
.fw-ql {
    background-color: #F5EFE4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.038'/%3E%3C/svg%3E");
    padding: 60px 0 56px;
}

.fw-ql__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.fw-ql__kaart {
    background: #FDFAF6;
    border-radius: 14px;
    padding: 36px 28px 32px;
    box-shadow: 0 4px 20px rgba(61,43,16,0.10);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(ellipse at 10% 90%, rgba(242,101,34,0.05) 0%, transparent 55%);
}

.fw-ql__kaart::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 3px;
    background: #F26522;
    border-radius: 0 0 4px 4px;
    opacity: 0.75;
}

.fw-ql__kaart:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(61,43,16,0.18);
}

.fw-ql__icon {
    font-size: 2.8rem;
    line-height: 1;
    display: block;
    margin-bottom: 2px;
}

.fw-ql__titel {
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
    font-size: 2.1rem;
    letter-spacing: 0.04em;
    color: #3D2B10;
    line-height: 1.1;
    margin: 0;
}

.fw-ql__tekst {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #6B4B2A;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.fw-ql__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    background: #F26522;
    color: #fff;
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    padding: 10px 26px 8px;
    border-radius: 6px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.18s, transform 0.18s;
    /* Handgemaakt gevoel via licht scheef clip */
    clip-path: polygon(1% 8%, 3% 0%, 97% 2%, 100% 7%, 99% 88%, 100% 100%, 2% 97%, 0% 92%);
}

.fw-ql__btn span {
    font-size: 1.1rem;
    line-height: 1;
}

.fw-ql__btn:hover {
    background: #D4511A;
    transform: translateY(-2px);
    color: #fff;
}

/* ── HOOGTEPUNTEN ────────────────────────────────────────────── */
.fw-hoog {
    background-color: #F5EFE4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.038'/%3E%3C/svg%3E");
    padding: 12px 0 64px;
}

.fw-hoog__kop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.fw-hoog__pijl {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.fw-hoog__titel {
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 0.06em;
    color: #3D2B10;
    margin: 0;
    text-align: center;
}

.fw-hoog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fw-hoog__kaart {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61,43,16,0.15);
    background: #2a1500;
    display: block;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
}

.fw-hoog__kaart:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(61,43,16,0.25);
}

.fw-hoog__foto-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.fw-hoog__foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.15) brightness(0.82);
    transition: transform 0.4s ease;
}

.fw-hoog__kaart:hover .fw-hoog__foto {
    transform: scale(1.07);
}

.fw-hoog__foto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20,8,0,0.82) 0%,
        rgba(20,8,0,0.25) 50%,
        transparent 75%
    );
    z-index: 1;
}

/* Label over de foto */
.fw-hoog__label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 0 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* Brush stroke achter naam */
.fw-hoog__naam-bg {
    position: absolute;
    inset: -4px -10px;
    background: #F26522;
    z-index: -1;
    clip-path: polygon(
        1% 15%, 4% 0%, 96% 3%, 100% 12%,
        98% 80%, 100% 100%, 3% 96%, 0% 85%
    );
    transform: rotate(-0.5deg);
}

.fw-hoog__naam {
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.04em;
    display: block;
    position: relative;
    padding: 2px 6px;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.05;
}

/* Wrapper voor naam + brush */
.fw-hoog__label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 0 16px 18px;
}

.fw-hoog__naam-wrap-inner {
    position: relative;
    display: inline-block;
    margin-bottom: 7px;
}

.fw-hoog__tijd {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    background: rgba(0,0,0,0.42);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .fw-ql__grid  { grid-template-columns: repeat(2, 1fr); }
    .fw-hoog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .fw-ql__grid  { grid-template-columns: 1fr; }
    .fw-hoog__grid { grid-template-columns: 1fr; }
    .fw-hoog__kop { gap: 10px; }
    .fw-hoog__titel { font-size: 1.5rem; }
    .fw-hoog__foto-wrap { height: 200px; }
}
