/* =========================================================
   FLAEIJEL THEME CSS

   Logisch heringedeeld per onderdeel:
   1. Basis / layout / utilities
   2. Header / navigatie / header-hero
   3. Hero / frontpage
   4. Media
   5. Nieuws
   6. Artiesten / socials
   7. Sponsoren
   8. FAQ / contact
   9. Footer
   10. Responsive overrides

   Inhoudelijke styling is zo veel mogelijk ongewijzigd gelaten.
========================================================= */


/* =========================================================
   0. BESTANDSINFO
========================================================= */



/* =========================================================
   1. BASIS, LAYOUT, KAARTEN EN KNOPPEN
========================================================= */

/* =========================================================
      1. BASIS LAYOUT
   ========================================================= */

.container {
    width: min(100% - 2rem, var(--flaeijel-max-width));
    margin-inline: auto;
}

.site-main {
    padding: 0 0 5rem;
}

/* =========================================================
      2. ALGEMENE KAARTEN / BLOKKEN
   ========================================================= */

.hero__content,
.hero__panel,
.content-card,
.feature-card,
.footer-card {
    border: 1px solid var(--flaeijel-rand);
    border-radius: var(--flaeijel-radius);
    box-shadow: var(--flaeijel-schaduw);
}

.feature-card,
.content-card,
.footer-card {
    background: rgba(255, 255, 255, 0.88);
    padding: 1.6rem;
}

.feature-card h2,
.entry-title,
.footer-title {
    margin: 0 0 0.7rem;
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.feature-card--center {
    text-align: center;
}

.feature-card__content {
    max-width: 520px;
    margin: 0 auto;
}

.feature-card__content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.content-shell {
    display: grid;
    gap: 1.5rem;
}

.entry-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.entry-meta {
    margin-bottom: 1rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.feature-section,
.page-content-section {
    padding-top: 1.5rem;
}

/* =========================================================
      3. KNOPPEN
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.6rem 1.05rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
}

.button--primary {
    background: #0b0b0b;
    color: #f0ca0e;
    border: 2px solid rgba(240, 202, 14, 0.75);
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 0 0 rgba(240, 202, 14, 0),
        0 0 12px rgba(240, 202, 14, 0.35),
        0 0 28px rgba(240, 202, 14, 0.22);
    transition: transform 0.2s ease,
        box-shadow 0.25s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.button--primary:hover,
.button--primary:focus-visible {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 0 rgba(240, 202, 14, 0),
        0 0 18px rgba(240, 202, 14, 0.55),
        0 0 36px rgba(240, 202, 14, 0.35),
        0 0 70px rgba(240, 202, 14, 0.25);
}

/* =========================================================
      3A. KNOPPEN IN KAARTEN / ONDERAAN UITLIJNEN
   ========================================================= */

.frontpage-card,
.feature-card {
    display: flex;
    flex-direction: column;
}


.frontpage-card p:last-of-type,
.feature-card p:last-of-type {
    margin-bottom: 1.75rem;
}

.frontpage-card .button-wrapper,
.feature-card .button-wrapper {
    margin-top: auto;
    padding-top: 1rem;
}


.frontpage-card > .button:last-child,
.feature-card > .button:last-child {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}


.frontpage-card .button-wrapper,
.feature-card .button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .frontpage-card .button-wrapper,
    .feature-card .button-wrapper {
        flex-direction: column;
    }
}

.hero__actions.button-wrapper {
    margin-top: auto;
    padding-top: clamp(1.5rem, 3vw, 3rem);
}

/* =========================================================
      16. GLOWS – PAGINA & BLOKKEN
   ========================================================= */

/* Zijglow over de hele site */

body {
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 220px;
    pointer-events: none;
    z-index: 0;
}

body::before {
    left: 0;
    background: radial-gradient(
        ellipse at left center,
        rgba(240, 202, 14, 0.28) 0%,
        rgba(240, 202, 14, 0.14) 30%,
        rgba(240, 202, 14, 0.06) 55%,
        rgba(240, 202, 14, 0) 80%
    );
}

body::after {
    right: 0;
    background: radial-gradient(
        ellipse at right center,
        rgba(157, 78, 221, 0.28) 0%,
        rgba(157, 78, 221, 0.14) 30%,
        rgba(157, 78, 221, 0.06) 55%,
        rgba(157, 78, 221, 0) 80%
    );
}

/* Alleen echte content boven de body glow */

.header-image-bar,
.site-main,
.site-footer {
    position: relative;
    z-index: 1;
}

/* Losse glow utility voor kaarten / secties */

.glow-sides {
    position: relative;
    overflow: hidden;
}

.glow-sides::before,
.glow-sides::after {
    content: "";
    position: absolute;
    top: -20%;
    width: 70%;
    height: 140%;
    pointer-events: none;
    z-index: 0;
}

.glow-sides::before {
    left: -25%;
}

.glow-sides::after {
    right: -25%;
}

.glow-sides > * {
    position: relative;
    z-index: 1;
}

.glow-yellow-purple::before {
    background: radial-gradient(
        ellipse at left center,
        rgba(240, 202, 14, 0.35) 0%,
        rgba(240, 202, 14, 0.18) 30%,
        rgba(240, 202, 14, 0.06) 55%,
        rgba(240, 202, 14, 0) 75%
    );
}

.glow-yellow-purple::after {
    background: radial-gradient(
        ellipse at right center,
        rgba(157, 78, 221, 0.35) 0%,
        rgba(157, 78, 221, 0.18) 30%,
        rgba(157, 78, 221, 0.06) 55%,
        rgba(157, 78, 221, 0) 75%
    );
}

.glow-yellow-both::before,
.glow-yellow-both::after {
    background: radial-gradient(
        ellipse at center,
        rgba(240, 202, 14, 0.35) 0%,
        rgba(240, 202, 14, 0.18) 30%,
        rgba(240, 202, 14, 0.06) 55%,
        rgba(240, 202, 14, 0) 75%
    );
}

.glow-purple-both::before,
.glow-purple-both::after {
    background: radial-gradient(
        ellipse at center,
        rgba(157, 78, 221, 0.35) 0%,
        rgba(157, 78, 221, 0.18) 30%,
        rgba(157, 78, 221, 0.06) 55%,
        rgba(157, 78, 221, 0) 75%
    );
}

/* Extra hero-glow in de contentkaart */

.hero__content::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -25%;
    width: 70%;
    height: 140%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        ellipse at left center,
        rgba(240, 202, 14, 0.35) 0%,
        rgba(240, 202, 14, 0.18) 30%,
        rgba(240, 202, 14, 0.06) 55%,
        rgba(240, 202, 14, 0) 75%
    );
}

.hero__content::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -25%;
    width: 70%;
    height: 140%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        ellipse at right center,
        rgba(157, 78, 221, 0.35) 0%,
        rgba(157, 78, 221, 0.18) 30%,
        rgba(157, 78, 221, 0.06) 55%,
        rgba(157, 78, 221, 0) 75%
    );
}

.hero__content > * {
    position: relative;
    z-index: 1;
}

/* =========================================================
      INLINE LINKS – CONSISTENT (GEEL / PAARS)
   ========================================================= */

.text-link {
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: color 0.2s ease;
}

/* GEEL */

.text-link--yellow {
    color: #f0ca0e;
}

/* PAARS */

.text-link--purple {
    color: rgba(157, 78, 221, 0.95);
}

/* Hover (voor allebei gelijk) */

.text-link:hover {
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

#boerenoptocht,
#openluchtmuseum {
    scroll-margin-top: 90px;

    /* iets ruimer ivm sticky header */
}

/* =========================================================
      ANCHOR HIGHLIGHT EFFECT (LANGER)
   ========================================================= */

.anchor-highlight {
    animation: anchorFlash 2.2s ease;
}

@keyframes anchorFlash {
    0% {
        box-shadow: 0 0 0 rgba(240, 202, 14, 0),
            0 0 0 rgba(240, 202, 14, 0);
    }

    20% {
        box-shadow: 0 0 0 3px rgba(240, 202, 14, 0.9),
            0 0 30px rgba(240, 202, 14, 0.8),
            0 0 60px rgba(240, 202, 14, 0.4);
    }

    /* 👇 blijft even zichtbaar */

    60% {
        box-shadow: 0 0 0 3px rgba(240, 202, 14, 0.85),
            0 0 28px rgba(240, 202, 14, 0.7),
            0 0 50px rgba(240, 202, 14, 0.35);
    }

    100% {
        box-shadow: 0 0 0 rgba(240, 202, 14, 0),
            0 0 0 rgba(240, 202, 14, 0);
    }
}

/* =========================================================
   BREADCRUMB – FLAEIJEL STIJL
========================================================= */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.2rem;

    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: rgba(0, 0, 0, 0.55);
}

/* Links */
.breadcrumb a {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Hover = beetje Flaeijel */
.breadcrumb a:hover {
    color: #000;
}

/* Laatste item (huidige pagina) */
.breadcrumb span {
    color: #000;
    opacity: 0.7;
}

/* 🔥 Pijltje separator */
.breadcrumb a::after {
    content: "›";
    margin-left: 0.5rem;
    opacity: 0.4;
}


.single-news-card {
    max-width: 920px;
    margin-inline: auto;
}

.single-news-title {
    margin-bottom: 1.2rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    color: #111;
}

.single-news-content {
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Extra ruimte onder header */
.breadcrumb--spaced {
    margin-top: 1.5rem;
    margin-bottom: 1.2rem;
}

/* Op mobiel iets meer lucht */
@media (max-width: 1023px) {
    .breadcrumb--spaced {
        margin-top: 1.2rem;
    }
}



/* =========================================================
   2. HEADER, MENU EN HEADER-HERO
========================================================= */

/* =========================================================
      4. HEADER / BRANDING
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(240, 202, 14, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 50px;
    padding: 0.3rem 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    flex: 0 0 auto;
}

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

.site-logo .custom-logo {
    max-height: 66px;
    width: auto;
}

.site-branding__text {
    min-width: 0;
}

.site-title {
    display: inline-block;
    margin: 0;
    text-decoration: none;
    font-size: clamp(1.3rem, 1.8vw, 2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.site-title--fancy {
    font-family: var(--font_2), cursive;
    font-size: clamp(1.75rem, 2.45vw, 2.8rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.06em;
    position: relative;
    white-space: nowrap;
    transform: translateY(3px);
}

.site-title--fancy .outline {
    display: inline-block;
    color: var(--flaeijel-geel, #f0ca0e);
    -webkit-text-stroke: 0.20em #000;
    text-shadow:
        0.04em 0.04em 0 #000,
        0 -2px 4px rgba(240, 202, 23, 0.30),
        0 2px 6px rgba(240, 202, 14, 0.18),
        0 6px 18px rgba(240, 202, 14, 0.30),
        0 14px 34px rgba(240, 202, 14, 0.38);
}

.site-title--fancy .fill {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    -webkit-text-stroke: 0;
    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.08),
        0 4px 10px rgba(240, 202, 14, 0.12),
        0 10px 22px rgba(240, 202, 14, 0.18);
    pointer-events: none;
}

.site-tagline {
    margin: 0.3rem 0 0;
    font-size: 0.95rem;
    opacity: 0.82;
}

/* =========================================================
      5. HOOFDMENU – BASIS
   ========================================================= */

.main-navigation {
    margin-left: auto;
}

.primary-menu,
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-menu a,
.footer-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.7rem 1rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}

/* =========================================================
      6. MENU-TOGGLE (MOBIEL)
   ========================================================= */

.menu-toggle {
    display: none;
    position: relative;
    z-index: 100;
    border: 0;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    background: var(--flaeijel-zwart);
    color: var(--flaeijel-wit);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.menu-toggle__text {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.menu-toggle::before,
.menu-toggle::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
    transition: all 0.25s ease;
}

.menu-toggle.is-open {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    background: transparent;
    color: transparent;
    border-radius: 0;
    padding: 1rem;
}

.menu-toggle.is-open .menu-toggle__text {
    opacity: 0;
}

.menu-toggle.is-open::before {
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 1;
}

.menu-toggle.is-open::after {
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 1;
}

/* =========================================================
      7. DESKTOP NAVIGATIE
   ========================================================= */

@media (min-width: 1024px) {
    .main-navigation {
        flex: 1 1 auto;
        min-width: 0;
        margin-left: auto;
        overflow: visible;
    }

    .site-header,
    .site-header__inner,
    .primary-menu,
    .primary-menu > li {
        overflow: visible;
    }

    .site-header__inner {
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .site-logo .custom-logo {
        max-height: 58px;
    }

    .site-branding__text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
    }

    .site-title {
        font-size: 2.2rem;
        line-height: 1;
    }

    .site-title--fancy {
        font-size: 2.65rem;
    }

    .site-tagline {
        margin: 0.15rem 0 0;
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .primary-menu {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        gap: 0.15rem;
        width: 100%;
    }

    .primary-menu > li {
        position: relative;
        flex: 0 0 auto;
    }

    .primary-menu > li > a {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 0.5rem 0.6rem;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        white-space: nowrap;
        color: #000;
        background: transparent;
        border-radius: 999px;
        box-shadow: none;
        transform: none;
    }

    .primary-menu > li > a:hover,
    .primary-menu > li > a:focus-visible {
        background: rgba(255, 255, 255, 0.42);
        transform: none;
    }

    .primary-menu > li.menu-item-has-children > a::after {
        content: "";
        display: inline-block;
        width: 0.36rem;
        height: 0.36rem;
        margin-left: 0.35rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-1px);
        opacity: 0.7;
    }

    .primary-menu .sub-menu {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        min-width: 220px;
        max-width: 280px;
        margin: 0;
        padding: 0.35rem 0;
        list-style: none;
        background: #f0ca0e;
        border: 1px solid rgba(0, 0, 0, 0.14);
        border-radius: 12px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        z-index: 999;
        overflow: hidden;
        backdrop-filter: none;
    }

    .primary-menu li:hover > .sub-menu,
    .primary-menu li:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .primary-menu .sub-menu li {
        display: block;
        width: 100%;
        margin: 0;
        border: 0;
    }

    .primary-menu .sub-menu a {
        display: block;
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 0.75rem 1rem;
        color: #000;
        background: #f0ca0e;
        border-radius: 0;
        box-shadow: none;
        font-size: 0.92rem;
        font-weight: 700;
        line-height: 1.2;
        white-space: nowrap;
        transform: none;
    }

    .primary-menu .sub-menu a:hover,
    .primary-menu .sub-menu a:focus-visible {
        background: rgba(0, 0, 0, 0.08);
        transform: none;
    }

    .primary-menu .sub-menu .menu-item-has-children {
        position: relative;
    }

    .primary-menu .sub-menu .menu-item-has-children > a::after {
        content: "";
        display: inline-block;
        width: 0.36rem;
        height: 0.36rem;
        margin-left: auto;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(-45deg);
        opacity: 0.6;
    }

    .primary-menu .sub-menu .sub-menu {
        top: -0.35rem;
        left: calc(100% + 0.35rem);
    }

    .primary-menu .sub-menu,
    .primary-menu .sub-menu li,
    .primary-menu .sub-menu a {
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
    }
}

/* =========================================================
      8. MOBIELE NAVIGATIE
   ========================================================= */

@media (max-width: 1023px) {
    .site-branding__text {
        display: none;
    }

    .site-branding {
        gap: 0;
    }

    .site-logo .custom-logo {
        max-height: 42px;
    }

    .site-header.menu-open .site-logo {
        opacity: 0;
        pointer-events: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-navigation {
        width: 100%;
        display: none;
        margin-left: 0;
    }

    .main-navigation.is-open {
        display: block;
    }

    .primary-menu {
        padding-top: 0.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .primary-menu li {
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .primary-menu > li > a,
    .primary-menu .sub-menu a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        min-height: 52px;
        padding: 0.9rem 0.2rem;
        border-radius: 0;
        background: transparent;
        transform: none;
    }

    .primary-menu > li > a:hover,
    .primary-menu > li > a:focus-visible,
    .primary-menu .sub-menu a:hover,
    .primary-menu .sub-menu a:focus-visible {
        background: rgba(255, 255, 255, 0.18);
        transform: none;
    }

    .primary-menu li.menu-item-has-children > a {
        position: relative;
        padding-right: 2.5rem;
    }

    .primary-menu li.menu-item-has-children > a::after {
        content: "";
        position: absolute;
        right: 0.4rem;
        top: 50%;
        width: 0.6rem;
        height: 0.6rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-65%) rotate(45deg);
        transition: transform 0.25s ease;
        opacity: 0.75;
    }

    .primary-menu li.submenu-open > a::after {
        transform: translateY(-35%) rotate(-135deg);
    }

    .primary-menu .sub-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding-left: 0;
        margin: 0;
        list-style: none;
        transition: max-height 0.32s ease, opacity 0.22s ease;
        background: rgba(255, 255, 255, 0.10);
    }

    .primary-menu li.submenu-open > .sub-menu {
        opacity: 1;
    }

    .primary-menu .sub-menu li {
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .primary-menu .sub-menu a {
        min-height: 46px;
        padding: 0.8rem 0.2rem 0.8rem 1.25rem;
        font-weight: 600;
        font-size: 0.96rem;
        background: transparent;
    }
}
@media (max-width: 1023px) {
    .primary-menu > li > a[href*="kaartverkoop"],
    .primary-menu > li > a[href*="tickets"],
    .primary-menu > li > a[href*="ticket"],
    .primary-menu > li > a[href*="aanmelden"],
    .primary-menu > li > a[href*="aanmelding"] {
        width: fit-content !important;
        min-height: 42px !important;
        margin: 0.5rem 0 !important;
        padding: 0.6rem 1.2rem !important;

        display: inline-flex !important;
        justify-content: center;
        align-items: center;

        border-radius: 999px !important;
        background: #0b0b0b !important;
        color: #f0ca0e !important;
        border: 2px solid rgba(240, 202, 14, 0.75) !important;

        box-shadow:
            0 0 12px rgba(240, 202, 14, 0.35),
            0 0 28px rgba(240, 202, 14, 0.22);
    }

    .primary-menu > li:has(> a[href*="kaartverkoop"]),
    .primary-menu > li:has(> a[href*="tickets"]),
    .primary-menu > li:has(> a[href*="ticket"]),
    .primary-menu > li:has(> a[href*="aanmelden"]),
    .primary-menu > li:has(> a[href*="aanmelding"]) {
        display: block;
        border-top: 0;
    }
}

@media (max-width: 1023px) {
    .main-navigation.is-open {
        display: block;

        max-height: calc(100vh - 60px); /* 🔥 hoogte minus header */
        overflow-y: auto;

        -webkit-overflow-scrolling: touch; /* smooth scroll iOS */
    }
}

/* =========================================================
      14B. CTA-KNOPPEN OOK IN GELE HEADER
   ========================================================= */

.primary-menu > li > a[href*="kaartverkoop"],
.primary-menu > li > a[href*="tickets"],
.primary-menu > li > a[href*="ticket"],
.primary-menu > li > a[href*="aanmelden"],
.primary-menu > li > a[href*="aanmelding"] {
    background: #0b0b0b !important;
    color: #f0ca0e !important;
    border: 2px solid rgba(240, 202, 14, 0.75);
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 0 0 rgba(240, 202, 14, 0),
        0 0 12px rgba(240, 202, 14, 0.35),
        0 0 28px rgba(240, 202, 14, 0.22);
    transition: transform 0.2s ease,
        box-shadow 0.25s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.primary-menu > li > a[href*="kaartverkoop"]:hover,
.primary-menu > li > a[href*="tickets"]:hover,
.primary-menu > li > a[href*="ticket"]:hover,
.primary-menu > li > a[href*="aanmelden"]:hover,
.primary-menu > li > a[href*="aanmelding"]:hover,
.primary-menu > li > a[href*="kaartverkoop"]:focus-visible,
.primary-menu > li > a[href*="tickets"]:focus-visible,
.primary-menu > li > a[href*="ticket"]:focus-visible,
.primary-menu > li > a[href*="aanmelden"]:focus-visible,
.primary-menu > li > a[href*="aanmelding"]:focus-visible {
    background: #000 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 0 0 rgba(240, 202, 14, 0),
        0 0 18px rgba(240, 202, 14, 0.55),
        0 0 36px rgba(240, 202, 14, 0.35),
        0 0 70px rgba(240, 202, 14, 0.25);
}

/* =========================================================
      11. HERO – AFBEELDINGEN / OVERLAYS
   ========================================================= */

/* Oude losse banner boven de site */

.header-image-bar {
    width: 100%;
    height: 80vh;
    background-image: url("/wp-content/uploads/2026/04/header-blended.png");
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}

.header-image-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(240, 202, 14, 0.25),
        rgba(0, 0, 0, 0.6)
    );
}

/* Hero-content afbeelding bovenin de kaart */

.hero__content .news-card__image {
    width: calc(100% + (2 * clamp(2rem, 4vw, 4rem)));
    margin-left: calc(-1 * clamp(2rem, 4vw, 4rem));
    margin-right: calc(-1 * clamp(2rem, 4vw, 4rem));
    margin-top: calc(-1 * clamp(2rem, 4vw, 4rem));
    margin-bottom: 1.5rem;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: var(--flaeijel-radius);
    border-top-right-radius: var(--flaeijel-radius);
}

/* =========================================================
      12. HERO – HEADER TITEL IN OUDE BANNER
   ========================================================= */

.header-image-bar .hero-title-main--header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    z-index: 4;
    margin: 0;
    min-height: 0;
    width: min(92vw, 980px);
    pointer-events: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.05em;
}

.header-image-bar .hero-title-main--header .hero-title-main__outline {
    position: relative;
    display: inline-block;
}

.header-image-bar .hero-title-main--header .hero-title-main__outline--main {
    position: relative;
    display: inline-block;
    font-size: clamp(3.6rem, 7vw, 6rem);
}

.header-image-bar .hero-title-main--header .hero-title-main__outline--main .hero-title-main__fill {
    font-size: clamp(3.6rem, 7vw, 6rem);
}

.header-image-bar .hero-title-main--header .hero-title-main__outline--sub {
    position: relative;
    left: auto;
    top: auto;
    display: inline-block;
    margin-top: -0.2em;
    margin-left: 3.9em;
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    transform: none;
    letter-spacing: 0.04em;
}

.header-image-bar .hero-title-main--header .hero-title-main__outline--sub .hero-title-main__fill {
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    letter-spacing: 0.04em;
}

/* =========================================================
      13. HERO – CIRKEL / LIJN / LOGO
   ========================================================= */

.fv-hero__circle-wrapper {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 3;
    width: 200px;
    height: 200px;
}

.fv-hero__circle {
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    isolation: isolate;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(240, 202, 14, 0.5);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(240, 202, 14, 0.25);
}

.fv-hero__circle::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 178px;
    z-index: 1;
    transform: translateY(-50%);
    height: 2px;
    width: calc(100vw - 230px - 2rem);
    background: linear-gradient(
        to right,
        rgba(240, 202, 14, 1) 0%,
        rgba(240, 202, 14, 1) 30%,
        rgba(157, 78, 221, 0.9) 55%,
        rgba(157, 78, 221, 0.6) 70%,
        rgba(157, 78, 221, 0.2) 85%,
        rgba(157, 78, 221, 0) 100%
    );
}

.fv-logo-link {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-decoration: none;
}

.fv-logo {
    position: relative;
    display: block;
    width: 99%;
    height: auto;
    z-index: 6;
}

.header-scroll-trigger {
    position: absolute;
    top: calc(2rem + 40px);
    left: 0;
    width: 100%;
    height: 2px;
    pointer-events: none;
}

/* =========================================================
      14. HERO TOP MENU
   ========================================================= */

.hero-top-navigation {
    position: absolute;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    width: min(96vw, 1200px);
}

.hero-top-menu,
.hero-top-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-top-menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
}

.hero-top-menu > li {
    position: relative;
    flex: 0 0 auto;
}

.hero-top-menu > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.34);
    color: #fff;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease,
        border-color 0.2s ease;
}

.hero-top-menu > li > a:hover,
.hero-top-menu > li > a:focus-visible {
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
    transform: translateY(-1px);
}

/* Kaartverkoop + Aanmelden matchen met gewone buttons */

.hero-top-menu > li > a[href*="kaartverkoop"],
.hero-top-menu > li > a[href*="tickets"],
.hero-top-menu > li > a[href*="ticket"],
.hero-top-menu > li > a[href*="aanmelden"],
.hero-top-menu > li > a[href*="aanmelding"] {
    background: #0b0b0b;
    color: #f0ca0e;
    border: 2px solid rgba(240, 202, 14, 0.75);
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 0 0 rgba(240, 202, 14, 0),
        0 0 12px rgba(240, 202, 14, 0.35),
        0 0 28px rgba(240, 202, 14, 0.22);
}

.hero-top-menu > li > a[href*="kaartverkoop"]:hover,
.hero-top-menu > li > a[href*="tickets"]:hover,
.hero-top-menu > li > a[href*="ticket"]:hover,
.hero-top-menu > li > a[href*="aanmelden"]:hover,
.hero-top-menu > li > a[href*="aanmelding"]:hover,
.hero-top-menu > li > a[href*="kaartverkoop"]:focus-visible,
.hero-top-menu > li > a[href*="tickets"]:focus-visible,
.hero-top-menu > li > a[href*="ticket"]:focus-visible,
.hero-top-menu > li > a[href*="aanmelden"]:focus-visible,
.hero-top-menu > li > a[href*="aanmelding"]:focus-visible {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 0 rgba(240, 202, 14, 0),
        0 0 18px rgba(240, 202, 14, 0.55),
        0 0 36px rgba(240, 202, 14, 0.35),
        0 0 70px rgba(240, 202, 14, 0.25);
}

.hero-top-menu > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 0.34rem;
    height: 0.34rem;
    margin-left: 0.35rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.8;
}

.hero-top-menu .sub-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 210px;
    max-width: 280px;
    padding: 0.35rem 0;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 20;
    overflow: hidden;
}

.hero-top-menu li:hover > .sub-menu,
.hero-top-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-top-menu .sub-menu li {
    display: block;
    width: 100%;
}

.hero-top-menu .sub-menu a {
    display: block;
    width: 100%;
    padding: 0.65rem 0.85rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
    line-height: 1.2;
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
}

.hero-top-menu .sub-menu a:hover,
.hero-top-menu .sub-menu a:focus-visible {
    background: rgba(240, 202, 14, 0.22);
}

.hero-top-menu .sub-menu .menu-item-has-children {
    position: relative;
}

.hero-top-menu .sub-menu .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 0.34rem;
    height: 0.34rem;
    margin-left: auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.7;
}

.hero-top-menu .sub-menu .sub-menu {
    top: -0.35rem;
    left: calc(100% + 0.35rem);
}

/* Op mobiel blijft dit menu uit */

@media (max-width: 700px) {
    .hero-top-navigation {
        display: none;
    }
}

/* =========================================================
   PAGINA HEADER – COMPACT
========================================================= */

.header-image-bar--small {
    height: 40vh; /* 🔥 was 80vh → nu ongeveer helft */
    min-height: 220px;
    max-height: 360px;
}

/* Titel iets compacter maken */
.header-image-bar--small .hero-title-main--header {
    transform: translate(-50%, -52%);
}

.header-image-bar--small .hero-title-main__outline--main {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.header-image-bar--small .hero-title-main__outline--sub {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

/* Datum kleiner (indien aanwezig) */
.header-image-bar--small .hero-date {
    font-size: clamp(0.9rem, 2vw, 1.4rem);
}

/* =========================================================
      MOBIEL – KOPFOTO'S LAGER
   ========================================================= */

@media (max-width: 700px) {
    /* grote kopfoto bovenaan */

    .header-image-bar {
        height: 55vh;
        min-height: 360px;
        border-bottom-left-radius: 26px;
        border-bottom-right-radius: 26px;
    }

    /* kopfoto in hero-kaart */

    .hero__content .news-card__image {
        height: 145px;
        margin-bottom: 1rem;
    }

    /* normale kaart-kopfoto's */

    .news-card__image {
        height: 85px;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 701px) {
    .hero__content .hero__actions.hero__actions--center.button-wrapper {
        display: none;
    }
}

/* =========================================================
      25. RESPONSIVE – STICKY HEADER OP DESKTOP
   ========================================================= */

@media (min-width: 981px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .site-header.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

.frontpage-layout,
.frontpage-artists,
.frontpage-card--artists,
.frontpage-artists-slider,
.frontpage-artists-slider__viewport {
    min-width: 0;
    max-width: 100%;
}

/* =========================================================
   HEADER TITEL – LANGE TITELS VEILIG, ZONDER ALLES TE SLOPEN
========================================================= */

.header-image-bar .hero-title-main--header {
    max-width: 92vw;
}

/* Alleen de hoofdtitel in de header */
.header-image-bar .hero-title-main--header .hero-title-main__outline--main {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
    line-height: 0.95;
}

/* Fill volgt exact dezelfde maat als outline */
.header-image-bar .hero-title-main--header .hero-title-main__outline--main .hero-title-main__fill {
    white-space: normal;
    overflow-wrap: break-word;
}

/* Alleen kleine paginaheaders iets veiliger maken */
.header-image-bar--small .hero-title-main--header .hero-title-main__outline--main {
    font-size: clamp(2rem, 4.6vw, 4rem);
}

.header-image-bar--small .hero-title-main--header .hero-title-main__outline--main .hero-title-main__fill {
    font-size: clamp(2rem, 4.6vw, 4rem);
}

/* Mobiel */
@media (max-width: 700px) {
    .header-image-bar .hero-title-main--header {
        width: min(94vw, 560px);
    }

    .header-image-bar .hero-title-main--header .hero-title-main__outline--main {
        font-size: clamp(2.2rem, 10vw, 46px);
    }

    .header-image-bar .hero-title-main--header .hero-title-main__outline--main .hero-title-main__fill {
        font-size: clamp(2.2rem, 10vw, 46px);
    }

    .header-image-bar--small .hero-title-main--header .hero-title-main__outline--main {
        font-size: clamp(1.8rem, 8.5vw, 38px);
    }

    .header-image-bar--small .hero-title-main--header .hero-title-main__outline--main .hero-title-main__fill {
        font-size: clamp(1.8rem, 8.5vw, 38px);
    }
}



/* =========================================================
   3. ALGEMENE HERO EN FRONTPAGE
========================================================= */

/* =========================================================
      9. HERO – BASISLAYOUT
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 2rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.65), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.hero__content {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 4rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.82));
    min-width: 0;
}

.hero__panel {
    display: grid;
    gap: 1rem;
    align-content: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.95), rgba(16, 16, 16, 0.88));
    color: var(--flaeijel-wit);
    min-width: 0;
}

.hero__eyebrow,
.feature-card__eyebrow,
.footer-label {
    margin: 0 0 0.8rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.hero-row {
    display: grid;
    align-items: start;
    width: 100%;
}

.hero-row--left {
    width: 66.666%;
    margin-right: auto;
    grid-template-columns: 2fr 1fr;
}

.hero-row--right {
    width: 66.666%;
    margin-left: auto;
    grid-template-columns: 1fr 2fr;
}

.hero-col--wide {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hero-col--wide span {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.hero-col--narrow {
    width: 100%;
}

.hero__text {
    margin: 1.4rem 0 0;
    max-width: 48rem;
    font-size: 1.08rem;
}

.hero__text strong {
    font-weight: 700;
    display: inline;
}

.hero__text-block {
    margin: 1rem 0 0;
    max-width: 48rem;
    font-size: 1.05rem;
}

.hero-label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111111;
}

.hero-label--paars {
    color: #111111;
}

.hero__text-block strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
}

.hero__desc {
    display: block;
    margin: 0;
    line-height: 1.4;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.hero__actions--center {
    justify-content: center;
    align-items: center;
}

/* =========================================================
      10. HERO – TITELS / TYPOGRAFIE
   ========================================================= */

.hero-title-main {
    position: relative;
    text-align: center;
    margin-bottom: 1.25rem;
    line-height: 1;
    min-height: 120px;
}

.hero-title-main__outline {
    position: relative;
    display: inline-block;
    font-family: var(--font_2), cursive;
    color: #f0ca0e;
    -webkit-text-stroke: 0.25em black;
    text-shadow: 0.06em 0.06em 0 black;
    white-space: nowrap;
}

.hero-title-main__outline--main {
    display: inline-block;
    font-size: 72px;
}

.hero-title-main__outline--sub {
    position: absolute;
    left: 50%;
    top: 62px;
    transform: translateX(-25px);
    font-size: 44px;
    letter-spacing: 0.04em;
}

.hero-title-main__fill {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    -webkit-text-stroke: 0;
    text-shadow: none;
    white-space: nowrap;
}

.hero-title-main__outline--main .hero-title-main__fill {
    font-size: 72px;
}

.hero-title-main__outline--sub .hero-title-main__fill {
    font-size: 44px;
    letter-spacing: 0.04em;
}

.hero-fancy {
    display: block;
}

.hero-fancy .hero-title-main__outline {
    font-size: 1.2em;
    margin-right: 6px;
    display: inline-block;
}

.hero-title-fancy {
    position: relative;
    display: inline-block;
    font-family: var(--font_2), cursive;
    margin-right: 8px;
    letter-spacing: 0.06em;
    line-height: 1;
    transform: translateY(2px);
}

.hero-title-fancy .outline {
    display: inline-block;
    color: #f0ca0e;
    letter-spacing: 0.06em;
    -webkit-text-stroke: 0.25em black;
    text-shadow: 0.04em 0.04em 0 black;
}

.hero-title-fancy .fill {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    -webkit-text-stroke: 0;
    text-shadow: none;
}

.hero-title-fancy--yellow-glow .outline {
    text-shadow: 0.04em 0.04em 0 black,
        0 -2px 4px rgba(240, 202, 23, 0.30),
        0 2px 6px rgba(240, 202, 14, 0.18),
        0 6px 18px rgba(240, 202, 14, 0.30),
        0 14px 34px rgba(240, 202, 14, 0.38),
        0 24px 58px rgba(240, 202, 14, 0.24);
}

.hero-title-fancy--yellow-glow .fill {
    color: #fff;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.08),
        0 4px 10px rgba(240, 202, 14, 0.12),
        0 10px 22px rgba(240, 202, 14, 0.18);
}

.hero-title-fancy--purple-glow .outline {
    text-shadow: 0.04em 0.04em 0 black,
        0 -2px 4px rgba(157, 78, 221, 0.30),
        0 2px 6px rgba(157, 78, 221, 0.20),
        0 6px 18px rgba(157, 78, 221, 0.32),
        0 14px 34px rgba(157, 78, 221, 0.40),
        0 24px 58px rgba(157, 78, 221, 0.26);
}

.hero-title-fancy--purple-glow .fill {
    color: #fff;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.08),
        0 4px 10px rgba(157, 78, 221, 0.14),
        0 10px 22px rgba(157, 78, 221, 0.20);
}

.hero-col--wide > span .hero-title-fancy {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

.hero__content .news-card__title .hero-glow-word {
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 0.95;
}

.hero__content .news-card__title .hero-row--left,
.hero__content .news-card__title .hero-row--right {
    width: 100%;
}

.hero-glow-word {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    font-weight: inherit;
    color: #fff;
}


.hero-glow-word .hero-title-fancy--phrase {
    margin-right: 0;
}

.hero-glow-word .hero-title-fancy--phrase .outline,
.hero-glow-word .hero-title-fancy--phrase .fill {
    letter-spacing: 0.06em;
}

.hero-glow-word.word-verleden {
    text-shadow: 0 -2px 4px rgba(240, 202, 14, 0.12),
        0 2px 6px rgba(240, 202, 14, 0.18),
        0 6px 18px rgba(240, 202, 14, 0.30),
        0 14px 34px rgba(240, 202, 14, 0.38),
        0 24px 58px rgba(240, 202, 14, 0.24);
}

.hero-glow-word.word-feest {
    text-shadow: 0 -2px 4px rgba(157, 78, 221, 0.14),
        0 2px 6px rgba(157, 78, 221, 0.20),
        0 6px 18px rgba(157, 78, 221, 0.32),
        0 14px 34px rgba(157, 78, 221, 0.40),
        0 24px 58px rgba(157, 78, 221, 0.26);
}

.hero-date {
    display: block;
    margin-top: 0.35em;
    text-align: center;
    font-family: "Avenir", "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 2.4vw, 2rem);
    line-height: 1.1;
}

.hero-date__outline {
    position: relative;
    display: inline-block;
    color: #fff;
    white-space: nowrap;
}

.hero-date__fill {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-text-stroke: 0;
    text-shadow: none;
    white-space: nowrap;
}

/* =========================================================
      15. HERO – STATS PANEEL
   ========================================================= */

/* 🔥 PANEL MET BLUR ACHTERGROND */

.hero__panel {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.12);
    z-index: 1;
}

.hero__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.48),
        rgba(0, 0, 0, 0.78)
    );
    z-index: 2;
}

.hero__panel > * {
    position: relative;
    z-index: 3;
}

/* ========================================================= */

.hero-stats {
    display: grid;
    gap: 0.8rem;
}

.hero-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;

    /* 🔥 aangepast voor foto achtergrond */
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 0 rgba(240, 202, 14, 0),
        0 0 12px rgba(240, 202, 14, 0.12),
        0 0 24px rgba(240, 202, 14, 0.06);
    transition: box-shadow 0.3s ease;
}

.hero-stat:hover {
    box-shadow: 0 0 0 rgba(240, 202, 14, 0),
        0 0 18px rgba(240, 202, 14, 0.18),
        0 0 36px rgba(240, 202, 14, 0.10);
}

.hero-stat__number {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-left: 6px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4),
        0 0 10px rgba(240, 202, 14, 0.35),
        0 0 20px rgba(240, 202, 14, 0.2);
}

.hero-stat__label {
    font-size: 1.05rem;
    font-weight: 600;
    margin-right: 6px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================================= */

.hero-end-text {
    text-align: center;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.hero-end-text .hero-title-fancy {
    font-size: clamp(0.9rem, 1.6vw, 1.3rem);
    line-height: 1.1;
}

.hero-end-text .outline,
.hero-end-text .fill {
    font-size: inherit;
}

/* =========================================================
      KLEURVARIATIE (PAARS BLOKKEN)
   ========================================================= */

/* 2 = dagen feest */

/* 3 = artiesten */

.hero-stats .hero-stat:nth-child(2),
.hero-stats .hero-stat:nth-child(3) {
    box-shadow: 0 0 0 rgba(157, 78, 221, 0),
        0 0 12px rgba(157, 78, 221, 0.12),
        0 0 24px rgba(157, 78, 221, 0.06);
}

.hero-stats .hero-stat:nth-child(2):hover,
.hero-stats .hero-stat:nth-child(3):hover {
    box-shadow: 0 0 0 rgba(157, 78, 221, 0),
        0 0 18px rgba(157, 78, 221, 0.18),
        0 0 36px rgba(157, 78, 221, 0.10);
}

.hero-stats .hero-stat:nth-child(2) .hero-stat__number,
.hero-stats .hero-stat:nth-child(3) .hero-stat__number {
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4),
        0 0 10px rgba(157, 78, 221, 0.35),
        0 0 20px rgba(157, 78, 221, 0.2);
}

/* =========================================================
      17. FEATURE SECTION – TWEE KOLOMMEN
   ========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    align-items: stretch;
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-card__content {
    flex-grow: 1;

    /* 👈 vult de ruimte */
}

.feature-card__cta {
    margin-top: auto;

    /* 👈 duwt hem naar onderen */
    padding-top: 1.2rem;

    /* ruimte erboven */
    text-align: center;
}

/* =========================================================
      18. FRONTPAGE – BLOKLAYOUT
   ========================================================= */

.frontpage-blocks-section {
    padding: 1.75rem 0 0;
}

.frontpage-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 1.4rem;
    align-items: start;
}

.frontpage-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--flaeijel-rand);
    border-radius: var(--flaeijel-radius);
    box-shadow: var(--flaeijel-schaduw);
    padding: 1.6rem;
    height: 100%;
}

.frontpage-card__eyebrow {
    margin: 0 0 0.8rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.frontpage-card h2,
.frontpage-card h3 {
    margin: 0 0 0.7rem;
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.frontpage-artists,
.frontpage-news,
.frontpage-sponsors {
    grid-column: 1 / -1;
}

.frontpage-card--artists {
    min-height: 320px;
}

.frontpage-card--sponsors {
    min-height: 220px;
}

.frontpage-media {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: start;
}

.frontpage-media .frontpage-card--photos {
    width: 100%;
    height: auto;
    align-self: start;
}

.frontpage-card--photos {
    min-height: clamp(320px, 30vw, 430px);
}

.frontpage-card--videos {
    min-height: clamp(420px, 38vw, 560px);
}

.frontpage-news__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.4rem;
}

.frontpage-card--news-main {
    min-height: 100%;
}

.frontpage-news__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.frontpage-card--news-small {
    padding: 1.2rem 1.25rem;
}

.frontpage-card--news-small h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.frontpage-card--news-small p {
    margin: 0 auto;
    max-width: 42ch;
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: center;
}

.frontpage-card--news-small .button {
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
}



/* =========================================================
   4. MEDIA: FOTO'S, VIDEO'S EN LIGHTBOX
========================================================= */

/* =========================================================
      20. FLICKR GRID + LIGHTBOX
   ========================================================= */

.flickr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
    margin: 0.9rem 0 1.2rem;
}

.flickr-grid__item {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.flickr-grid__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flickr-grid__item:hover img,
.flickr-grid__item:focus-visible img {
    transform: scale(1.05);
}

.flaeijel-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
}

.flaeijel-lightbox.is-open {
    display: flex;
}

.flaeijel-lightbox__inner {
    position: relative;
    max-width: min(92vw, 1200px);
    max-height: 88vh;
    text-align: center;
}

.flaeijel-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.flaeijel-lightbox__caption {
    margin: 0.9rem 0 0;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.flaeijel-lightbox__close,
.flaeijel-lightbox__nav {
    position: absolute;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.flaeijel-lightbox__close {
    top: 1.2rem;
    right: 1.2rem;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
}

.flaeijel-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 2rem;
    line-height: 1;
}

.flaeijel-lightbox__nav--prev {
    left: 1.2rem;
}

.flaeijel-lightbox__nav--next {
    right: 1.2rem;
}

.flaeijel-lightbox__close:hover,
.flaeijel-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

body.flaeijel-lightbox-open {
    overflow: hidden;
}

/* =========================================================
      21. VIDEOKAARTEN
   ========================================================= */

.flaeijel-featured-video-card {
    display: block;
    margin: 1rem 0 1.1rem;
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    overflow: visible;
    background: transparent;
    border: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flaeijel-featured-video-card:hover {
    transform: none;
    box-shadow: none;
}

.flaeijel-featured-video-card__media {
    position: relative;
    overflow: hidden;
    background: #111;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.flaeijel-featured-video-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flaeijel-featured-video-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
}

.flaeijel-featured-video-card__play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
}

.flaeijel-featured-video-card__body {
    padding: 1rem 1rem 1.05rem;
}

.flaeijel-featured-video-card__title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
}

.flaeijel-featured-video-card__text {
    display: block;
    width: 100%;
    margin-top: 0;
    padding: 0;
}

.flaeijel-featured-video-card__text h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.flaeijel-featured-video-card__text p {
    margin: 0;
    line-height: 1.6;
    color: #1f1f1f;
    text-align: center;
}

/* Autoplay variant */

.flaeijel-featured-video-card--autoplay {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0 1.1rem;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    border: 0;
}

.flaeijel-featured-video-card--autoplay .flaeijel-featured-video-card__media iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    display: block !important;
    border: 0 !important;
    max-width: none !important;
    max-height: none !important;
    transform: translate(-50%, -50%) !important;
}

.flaeijel-featured-video-card--autoplay .flaeijel-featured-video-card__media--landscape {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
}

.flaeijel-featured-video-card--autoplay .flaeijel-featured-video-card__media--landscape iframe {
    width: 110% !important;
    height: 110% !important;
}

.flaeijel-featured-video-card--autoplay .flaeijel-featured-video-card__media--portrait {
    width: min(100%, 340px);
    aspect-ratio: 9 / 16;
    min-height: 0;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

.flaeijel-featured-video-card--autoplay .flaeijel-featured-video-card__media--portrait iframe {
    width: 100% !important;
    height: 100% !important;
    transform: translate(-50%, -50%) !important;
}



/* =========================================================
   5. NIEUWS
========================================================= */

/* =========================================================
      19. NIEUWSKAART AFBEELDING / TITEL OP FOTO
   ========================================================= */

.news-card__image {
    position: relative;
    width: calc(100% + 3.2rem);
    height: 140px;
    margin: -1.6rem -1.6rem 1rem -1.6rem;
    background-size: cover;
    background-position: center;
    border-top-left-radius: var(--flaeijel-radius);
    border-top-right-radius: var(--flaeijel-radius);
    overflow: hidden;
}

.news-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.news-card__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    width: calc(100% - 1rem);
    text-align: center;
    z-index: 2;
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45),
        0 1px 2px rgba(0, 0, 0, 0.7);
}

/* =========================================================
      29. NIEUWS
   ========================================================= */

.frontpage-news-grid {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.frontpage-news-tile {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    isolation: isolate;
}

.frontpage-news-tile::before,
.frontpage-news-tile::after {
    content: "";
    position: absolute;
    top: -12%;
    width: 24%;
    height: 124%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    filter: blur(18px);
}

.frontpage-news-tile::before {
    left: -6%;
}

.frontpage-news-tile::after {
    right: -6%;
}

.frontpage-news-tile > * {
    position: relative;
    z-index: 1;
}

.frontpage-news-tile__image {
    position: relative;
    min-height: 180px;
    border-radius: var(--flaeijel-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--flaeijel-schaduw);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.frontpage-news-tile__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.38) 45%,
        rgba(0, 0, 0, 0.10) 100%
    );
    z-index: 1;
}

.frontpage-news-tile:hover .frontpage-news-tile__image {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}

.frontpage-news-tile__overlay {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
}

.frontpage-news-tile__title {
    margin: 0;
    color: #fff;
    line-height: 1.05;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    text-shadow: 0.04em 0.04em 0 rgba(0,0,0,0.9),
        0 2px 10px rgba(0, 0, 0, 0.45);
}

.frontpage-news-tile__subtitle {
    margin-top: 0.35rem;
    color: #f0ca0e;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

.frontpage-news-tile--yellow::before {
    opacity: 1;
    background: radial-gradient(
        ellipse at left center,
        rgba(240, 202, 14, 0.38) 0%,
        rgba(240, 202, 14, 0.18) 35%,
        rgba(240, 202, 14, 0.06) 60%,
        rgba(240, 202, 14, 0) 80%
    );
}

.frontpage-news-tile--purple::after {
    opacity: 1;
    background: radial-gradient(
        ellipse at right center,
        rgba(157, 78, 221, 0.38) 0%,
        rgba(157, 78, 221, 0.18) 35%,
        rgba(157, 78, 221, 0.06) 60%,
        rgba(157, 78, 221, 0) 80%
    );
}

.frontpage-news-tile--yellow-purple::before {
    opacity: 1;
    background: radial-gradient(
        ellipse at left center,
        rgba(240, 202, 14, 0.34) 0%,
        rgba(240, 202, 14, 0.16) 35%,
        rgba(240, 202, 14, 0.05) 60%,
        rgba(240, 202, 14, 0) 80%
    );
}

.frontpage-news-tile--yellow-purple::after {
    opacity: 1;
    background: radial-gradient(
        ellipse at right center,
        rgba(157, 78, 221, 0.34) 0%,
        rgba(157, 78, 221, 0.16) 35%,
        rgba(157, 78, 221, 0.05) 60%,
        rgba(157, 78, 221, 0) 80%
    );
}

@media (max-width: 700px) {
    .frontpage-news-grid {
        margin-top: 0.5rem;
        gap: 0.5rem;
    }

    .frontpage-news-tile__image {
        min-height: 0;

        /* kill de oude hoogte */
        height: auto;
        aspect-ratio: 16 / 7;

        /* 👈 dit is de magic */
        border-radius: 14px;
    }

    .frontpage-news-tile__overlay {
        left: 0.6rem;
        right: 0.6rem;
        bottom: 0.5rem;
    }

    .frontpage-news-tile__title {
        margin: 0;
        font-size: clamp(0.9rem, 4.5vw, 1.1rem);
        line-height: 1.05;
    }

    .frontpage-news-tile__subtitle {
        margin: 0.15rem 0 0;
        font-size: 0.75rem;
        line-height: 1.1;
    }
}

/* =========================================================
   NIEUWS OVERZICHTSPAGINA
========================================================= */

.nieuws-page-main {
    padding-top: 2rem;
}

.nieuws-intro-card {
    text-align: center;
}

.nieuws-overview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.5rem;
    align-items: start;
}

.nieuws-results {
    display: grid;
    gap: 1.2rem;
}

.nieuws-list-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1.2rem;
    align-items: stretch;

    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--flaeijel-rand);
    border-radius: var(--flaeijel-radius);
    box-shadow: var(--flaeijel-schaduw);
    overflow: hidden;
}

.nieuws-list-card__image {
    display: block;
    min-height: 190px;
    background-size: cover;
    background-position: center;
}

.nieuws-list-card__content {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nieuws-list-card__title {
    margin: 0 0 0.7rem;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.08;
}

.nieuws-list-card__title a {
    color: #111;
    text-decoration: none;
}

.nieuws-list-card__title a:hover {
    text-decoration: underline;
}

.nieuws-list-card__excerpt {
    margin: 0 0 1.2rem;
    line-height: 1.6;
}

.nieuws-list-card .button {
    margin-top: auto;
}

.nieuws-filter-card {
    position: sticky;
    top: 90px;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--flaeijel-rand);
    border-radius: var(--flaeijel-radius);
    box-shadow: var(--flaeijel-schaduw);
    padding: 1.4rem;
}

.nieuws-filter-card h2 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
}

.nieuws-filter-form {
    display: grid;
    gap: 1rem;
}

.nieuws-filter-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 800;
    font-size: 0.9rem;
}

.nieuws-filter-form input,
.nieuws-filter-form select {
    width: 100%;
    min-height: 42px;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: #fff;
    font: inherit;
}

.nieuws-filter-reset {
    display: inline-block;
    text-align: center;
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

.nieuws-filter-reset:hover {
    text-decoration: underline;
}

@media (max-width: 1023px) {
    .nieuws-overview-layout {
        grid-template-columns: 1fr;
    }

    .nieuws-filter-card {
        position: static;
        order: -1;
    }

    .nieuws-list-card {
        grid-template-columns: 1fr;
    }

    .nieuws-list-card__image {
        min-height: 220px;
    }
}
/* FILTER GLOW */
.nieuws-filter-card {
    box-shadow:
        0 0 0 rgba(240, 202, 14, 0),
        0 0 12px rgba(240, 202, 14, 0.25),
        0 0 28px rgba(157, 78, 221, 0.18);
}

/* =========================================================
   NIEUWS DETAILPAGINA
========================================================= */

.single-news-main {
    padding-top: 2rem;
}

/* =========================================================
   NIEUWS ZOEKEN INKLAPPEN OP MOBIEL
========================================================= */
@media (max-width: 1023px) {
    .nieuws-filter-details summary {
        cursor: pointer;
        font-size: 1.15rem;
        font-weight: 900;
        list-style: none;
    }

    .nieuws-filter-details summary::-webkit-details-marker {
        display: none;
    }

    .nieuws-filter-details summary::after {
        content: "＋";
        float: right;
    }

    .nieuws-filter-details[open] summary::after {
        content: "−";
    }

    .nieuws-filter-details:not([open]) .nieuws-filter-form {
        display: none;
    }

    .nieuws-filter-details[open] .nieuws-filter-form {
        margin-top: 1rem;
    }
}

@media (min-width: 1024px) {
    .nieuws-filter-details {
        display: block;
    }

    .nieuws-filter-details summary {
        display: none;
    }
}
@media (max-width: 1023px) {
    .nieuws-intro-card {
        display: none;
    }
}

/* =========================================================
   NIEUWS TITEL – FLAEIJEL STIJL
========================================================= */

.single-news-title {
    text-align: center;
    margin: 0 0 1.5rem;
    line-height: 1;
}

.single-news-title .outline,
.single-news-title .fill {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.05;
}

/* Zorg dat lange titels netjes breken */
.single-news-title .outline {
    white-space: normal;
    word-break: break-word;
}



/* =========================================================
   6. ARTIESTEN EN SOCIALS
========================================================= */

/* =========================================================
      28. ARTIESTEN
   ========================================================= */

/* ---------------------------------------------------------
      28A. ARTIESTEN CONTAINER
   --------------------------------------------------------- */

.frontpage-card--artists {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #111;
    color: #fff;
}

.frontpage-card--artists > * {
    position: relative;
    z-index: 2;
}

/* ---------------------------------------------------------
      28B. SLIDER BASIS
   --------------------------------------------------------- */

.frontpage-artists-slider {
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.frontpage-artists-slider__viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.frontpage-artists-slider,
.frontpage-artists-slider__viewport,
.frontpage-artists-slider__track,
.artist-card--slide {
    box-sizing: border-box;
}

.frontpage-artists-slider__track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

/* ---------------------------------------------------------
      28C. ARTIESTEN CARDS
   --------------------------------------------------------- */

.artist-card--slide {
    flex: 0 0 calc((100% - 3.75rem) / 4);
    max-width: calc((100% - 3.75rem) / 4);
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #111;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.artist-card--slide > * {
    position: relative;
    z-index: 2;
}

.artist-card--slide .artist-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.artist-card--slide .artist-card__content {
    padding: 0.9rem 1rem 1rem;
    text-align: center;
}

.artist-card--slide h3 {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.2;
}

/* ---------------------------------------------------------
      28D. NAVIGATIEKNOPPEN
   --------------------------------------------------------- */

.artist-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #f0ca0e;
    background: rgba(0,0,0,0.75);
    color: #f0ca0e;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

.artist-nav:hover {
    background: #f0ca0e;
    color: #000;
    box-shadow: 0 0 14px rgba(240, 202, 14, 0.6);
}

.artist-nav--prev {
    left: 12px;
}

.artist-nav--next {
    right: 12px;
}

/* ---------------------------------------------------------
      28E. RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1100px) {
    .artist-card--slide {
        flex: 0 0 calc((100% - 2.5rem) / 3);
        max-width: calc((100% - 2.5rem) / 3);
    }

    .artist-card--slide .artist-card__image {
        aspect-ratio: 4 / 4.8;
    }
}

@media (max-width: 780px) {
    .frontpage-artists-slider__track {
        gap: 1rem;
    }

    .artist-card--slide {
        flex: 0 0 calc((100% - 1rem) / 2);
        max-width: calc((100% - 1rem) / 2);
    }

    .artist-card--slide .artist-card__image {
        aspect-ratio: 4 / 4.3;
    }
}

@media (max-width: 520px) {
    .frontpage-artists-slider__viewport {
        padding-inline: 0;
    }

    .frontpage-artists-slider__track {
        gap: 0;
    }

    .artist-card--slide {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        border-radius: 16px;
    }

    .artist-card--slide .artist-card__image {
        aspect-ratio: 4 / 3.6;
        background-position: center top;
    }

    .artist-card--slide .artist-card__content {
        padding: 0.8rem 0.9rem 0.95rem;
    }

    .artist-card--slide h3 {
        font-size: 1rem;
    }

    .artist-nav {
        top: 42%;
        width: 34px;
        height: 34px;
        background: rgba(0,0,0,0.62);
        font-size: 18px;
    }

    .artist-nav--prev {
        left: 8px;
    }

    .artist-nav--next {
        right: 8px;
    }
}

/* =========================================================
   ARTIESTEN OVERZICHT
========================================================= */

.flaeijel-artiesten-overzicht {
    display: grid;
    gap: 1.4rem;
}

/* FILTER */
.flaeijel-artiesten-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.flaeijel-artiesten-filter__button {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: #000;
    color: #f0ca0e;
    border: 1px solid rgba(240, 202, 14, 0.6);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.86rem;
}

.flaeijel-artiesten-filter__button:hover,
.flaeijel-artiesten-filter__button.is-active {
    background: #f0ca0e;
    color: #000;
}

/* GRID */
.flaeijel-artiesten-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

/* CARD */
.flaeijel-artiest-card {
    overflow: hidden;
    padding: 0;
    transition:
        opacity 0.5s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.flaeijel-artiest-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* IMAGE */
.flaeijel-artiest-card__image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111;
}

.flaeijel-artiest-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* OVERLAY CONTENT */
.flaeijel-artiest-card__overlay {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.9rem;
    text-align: center;
}

/* TITEL – scherp & knallend */
.flaeijel-artiest-card__title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.05;
    letter-spacing: -0.01em;

    text-shadow:
        0 2px 2px rgba(0,0,0,0.9),
        0 0 6px rgba(0,0,0,0.5),
        0 0 10px rgba(240, 202, 14, 0.25);

    -webkit-text-stroke: 0.3px rgba(0,0,0,0.6);
}

/* SHUFFLE EFFECT */
.flaeijel-artiesten-grid.is-shuffling .flaeijel-artiest-card {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
}

.flaeijel-artiest-card.is-hidden {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .flaeijel-artiesten-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    /* mobiel iets groter = beter leesbaar */
    .flaeijel-artiest-card__title {
        font-size: 1.35rem;
    }
}

/* =========================================================
      29B. CTA + Socials naast elkaar
   ========================================================= */

.frontpage-cta-socials {
    grid-column: 1 / -1;
    width: 100%;
}

.frontpage-cta-socials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.frontpage-cta,
.frontpage-socials {
    min-width: 0;
}

.frontpage-card--cta,
.frontpage-card--socials {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #111;
    color: #fff;
}

/* CONTENT BOVENOP */

.frontpage-card--cta > *,
.frontpage-card--socials > * {
    position: relative;
    z-index: 2;
}

/* =========================================================
      TITELS & TEKST
   ========================================================= */

.frontpage-card__title {
    text-align: center;
    margin: 0 0 1.25rem !important;
    color: #fff;
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.75),
        0 0 14px rgba(0,0,0,0.55);
}

.frontpage-cta__text {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.65);
}

.frontpage-cta__buttons {
    margin-top: auto;
}

@media (max-width: 800px) {
    .frontpage-cta-socials__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* =========================================================
      30. Socials
   ========================================================= */

.frontpage-socials {
    grid-column: auto;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.social-card {
    width: 100%;
    min-width: 0;
    min-height: 100px;
    padding: 0.65rem;
    box-sizing: border-box;
    border-radius: 14px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.08);
    color: #000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08),
        0 0 12px rgba(240,202,14,0.15);
    transition: all 0.2s ease;
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12),
        0 0 18px rgba(240,202,14,0.35);
}

.social-card__icon {
    font-size: 1.45rem;
    color: #f0ca0e;
}

.social-card__label {
    color: #000;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 0 4px rgba(240,202,14,0.6),
        0 0 8px rgba(240,202,14,0.3);
}

@media (max-width: 600px) {
    .socials-grid {
        gap: 0.65rem;
    }

    .social-card {
        min-height: 86px;
        padding: 0.5rem 0.35rem;
    }

    .social-card__icon {
        font-size: 1.35rem;
    }

    .social-card__label {
        font-size: 0.68rem;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 380px) {
    .socials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}



/* =========================================================
   7. SPONSOREN
========================================================= */

/* =========================================================
      31. SPONSORS
   ========================================================= */

/* ---------------------------------------------------------
      31A. CONTAINER
   --------------------------------------------------------- */

.frontpage-card.frontpage-card--sponsors {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #111 !important;
    background-image: none !important;
    background-color: #111 !important;
    color: #fff !important;
}

.frontpage-card.frontpage-card--sponsors > * {
    position: relative;
    z-index: 2;
}

/* knop uitzetten */

.frontpage-card--sponsors .button {
    display: none;
}

/* ---------------------------------------------------------
      31B. STRUCTUUR
   --------------------------------------------------------- */

.sponsor-showcase {
    margin-top: 0.2rem;
}

.sponsor-logo-grid--main {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

/* ---------------------------------------------------------
      31C. BASIS KAARTEN (wit houden!)
   --------------------------------------------------------- */

.sponsor-logo-card {
    flex: 0 0 auto;
    width: 180px;
    height: 95px;
    padding: 0.6rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.sponsor-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-logo-fallback {
    font-weight: 800;
    text-align: center;
    color: #111;
}

/* ---------------------------------------------------------
      31D. PLATINA (tekst-only)
   --------------------------------------------------------- */

.sponsor-showcase--rank-6 .sponsor-logo-card--text {
    width: auto;
    height: auto;
    padding: 0.1rem 0.4rem;
    background: transparent;
    border: none;
    box-shadow: none;
    text-decoration: none;
}

.sponsor-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f0ca0e;
    white-space: nowrap;
}

/* ---------------------------------------------------------
      31E. HOOFDSPONSOR
   --------------------------------------------------------- */

.sponsor-intro {
    margin: 0.4rem 0 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    color: #f0ca0e;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sponsor-showcase--rank-8 .sponsor-logo-card {
    width: 380px;
    height: 200px;
    border: 2px solid rgba(240, 202, 14, 0.6);
    transform: scale(1.08);
    box-shadow: 0 0 24px rgba(240, 202, 14, 0.3),
        0 0 48px rgba(240, 202, 14, 0.18);
}

.sponsor-logo-card--main {
    position: relative;
    overflow: visible;
}

.sponsor-main-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.2rem;
    margin-bottom: 0.8rem;
}

.sponsor-main-title {
    font-weight: 900;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.1;
    text-align: center;
    color: #f0ca0e;
    white-space: nowrap;
    text-shadow: 0 0 6px rgba(240, 202, 14, 0.6),
        0 0 12px rgba(240, 202, 14, 0.4);
}

/* ---------------------------------------------------------
      31F. MARQUEE
   --------------------------------------------------------- */

.sponsor-marquee {
    overflow: hidden;
    width: 100%;
    margin-bottom: 0.4rem;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.sponsor-marquee__track {
    display: flex;
    gap: 0.6rem;
    width: max-content;
    animation: sponsorScrollLeft 45s linear infinite;
}

.sponsor-marquee--marquee-right .sponsor-marquee__track {
    animation-name: sponsorScrollRight;
}

@keyframes sponsorScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes sponsorScrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.sponsor-marquee:hover .sponsor-marquee__track {
    animation-play-state: paused;
}

/* ---------------------------------------------------------
      31G. SNELHEID / FINE TUNE
   --------------------------------------------------------- */

.sponsor-showcase--rank-7 .sponsor-marquee__track {
    animation-duration: 50s;
}

.sponsor-showcase--rank-6 .sponsor-marquee__track {
    animation-duration: 130s;
    gap: 0.3rem;
}

.sponsor-showcase--rank-6 {
    margin-top: -0.3rem;
}

.sponsor-showcase--rank-7 {
    margin-top: -0.2rem;
}

/* ---------------------------------------------------------
      31H. RESPONSIVE
   --------------------------------------------------------- */

.frontpage-sponsors,
.frontpage-card--sponsors,
.sponsor-showcase,
.sponsor-marquee {
    min-width: 0;
    max-width: 100%;
}

.sponsor-marquee,
.sponsor-marquee__track,
.sponsor-logo-card {
    box-sizing: border-box;
}

.sponsor-marquee__track {
    max-width: none;
    will-change: transform;
}

@media (max-width: 700px) {
    .frontpage-card--sponsors {
        overflow: hidden;
    }

    .sponsor-showcase {
        overflow: hidden;
    }

    .sponsor-showcase--rank-8 .sponsor-logo-card {
        width: min(80vw, 300px);
        height: 150px;
        transform: none;
    }

    .sponsor-main-title {
        max-width: 90vw;
        white-space: normal;
        font-size: clamp(0.95rem, 4vw, 1.15rem);
    }

    .sponsor-showcase--rank-7 .sponsor-logo-card {
        width: 130px;
        height: 70px;
        padding: 0.45rem;
    }

    .sponsor-showcase--rank-6 .sponsor-marquee__track {
        gap: 0.2rem;
    }

    .sponsor-text {
        font-size: 0.8rem;
    }
}

/* =========================================================
   34. SPONSORPAGINA
========================================================= */

.sponsor-page-main {
    padding-bottom: 5rem;
}

.sponsor-page-hero {
    padding: clamp(1.6rem, 4vw, 3rem) 0 1.5rem;
}

.sponsor-page-hero__content {
    background: linear-gradient(135deg, rgba(17,17,17,0.96), rgba(0,0,0,0.94));
    color: #fff;
    border-radius: var(--flaeijel-radius);
    padding: clamp(1.4rem, 4vw, 3rem);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--flaeijel-schaduw);
}

.sponsor-page-eyebrow {
    margin: 0 0 0.75rem;
    color: #f0ca0e;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sponsor-page-hero h1,
.sponsor-page-section-heading h2,
.sponsor-page-cta h2,
.sponsor-page-intro-card h2 {
    margin: 0 0 0.8rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.sponsor-page-hero h1 {
    font-size: clamp(2.1rem, 7vw, 5rem);
    color: #fff;
    text-shadow: 0 0 18px rgba(240, 202, 14, 0.25);
}

.sponsor-page-hero p:not(.sponsor-page-eyebrow) {
    max-width: 780px;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.92;
}

.sponsor-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.4rem;
}

.button--ghost {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
}

.sponsor-page-section {
    padding: 1.4rem 0;
}

.sponsor-page-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.sponsor-page-intro-card {
    text-align: center;
}

.sponsor-page-section-heading {
    text-align: center;
    margin-bottom: 1.2rem;
}

.sponsor-page-section-heading h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.sponsor-page-rank {
    margin-top: 1.2rem;
    padding: clamp(1.1rem, 3vw, 1.8rem);
    border-radius: var(--flaeijel-radius);
    background: #111;
    color: #fff;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--flaeijel-schaduw);
}

.sponsor-page-rank h3 {
    margin: 0 0 1rem;
    text-align: center;
    color: #f0ca0e;
    font-size: clamp(1.25rem, 3vw, 2rem);
    line-height: 1.1;
}

.sponsor-page-main-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.sponsor-page-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 230px;
    min-height: 150px;
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    color: #111;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.sponsor-page-card--main {
    width: min(100%, 460px);
    min-height: 230px;
    border: 2px solid rgba(240,202,14,0.7);
    box-shadow: 0 0 26px rgba(240,202,14,0.26), 0 0 60px rgba(240,202,14,0.13);
}

.sponsor-page-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 82px;
}

.sponsor-page-card__logo img {
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
}

.sponsor-page-card__title {
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
}

.sponsor-page-rank--diamant .sponsor-showcase,
.sponsor-page-rank--platina .sponsor-showcase {
    margin-top: 0;
}

.sponsor-page-cta {
    text-align: center;
    background: rgba(255,255,255,0.92);
}

.sponsor-page-cta p:not(.sponsor-page-eyebrow) {
    max-width: 680px;
    margin: 0 auto 1.2rem;
}

.sponsor-page-empty {
    text-align: center;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 780px) {
    .sponsor-page-intro-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-page-hero__content,
    .sponsor-page-rank,
    .sponsor-page-cta {
        border-radius: 22px;
    }

    .sponsor-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sponsor-page-actions .button,
    .sponsor-page-cta .button {
        width: 100%;
        text-align: center;
    }

    .sponsor-page-card--main {
        min-height: 180px;
    }
}

/* =========================================================
   SPONSORPAGINA
========================================================= */

.sponsor-page-main {
    padding: 3rem 0 5rem;
}

.sponsor-page-container {
    display: grid;
    gap: 2.5rem;
}

.sponsor-page-header {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}

.sponsor-page-kicker {
    margin: 0 0 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111111;
}

.sponsor-page-header h1 {
    margin: 0 0 1rem;
}

.sponsor-page-header p {
    margin: 0;
    font-size: 1.08rem;
}

/* Grote sponsorblokken met glow */
.sponsor-level {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: var(--flaeijel-radius);
    background:
        radial-gradient(circle at top left, rgba(240, 202, 14, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(122, 48, 180, 0.18), transparent 38%),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(240, 202, 14, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.45) inset,
        0 0 28px rgba(240, 202, 14, 0.18),
        0 18px 45px rgba(0, 0, 0, 0.12);
}

.sponsor-level::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
        inset 18px 0 35px rgba(240, 202, 14, 0.20),
        inset -18px 0 35px rgba(122, 48, 180, 0.16);
}

.sponsor-level > * {
    position: relative;
    z-index: 1;
}

.sponsor-level h2 {
    margin: 0 0 1.25rem;
    text-align: center;
}

.sponsor-page-main-grid {
    display: grid;
    justify-items: center;
}

.sponsor-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.sponsor-page-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    min-height: 145px;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsor-page-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.sponsor-page-card__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    width: 100%;
}

.sponsor-page-card__logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.sponsor-page-card__title {
    font-weight: 800;
    line-height: 1.15;
}

.sponsor-page-card--main {
    width: min(100%, 520px);
    min-height: 230px;
    padding: 2rem;
    border: 2px solid var(--flaeijel-geel);
}

.sponsor-page-card--main .sponsor-page-card__logo img {
    max-height: 140px;
}

.sponsor-page-card--main .sponsor-page-card__title {
    font-size: 1.25rem;
}

.sponsor-logo-fallback {
    font-weight: 900;
    font-size: 1.2rem;
}

/* Tablet */
@media (max-width: 900px) {
    .sponsor-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobiel */
@media (max-width: 560px) {

    .sponsor-page-main {
        padding-top: 2rem;
    }

    .sponsor-level {
        padding: 0.85rem;
    }

    .sponsor-page-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .sponsor-page-grid > * {
        min-width: 0;
        max-width: 100%;
    }

    .sponsor-page-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 78px;
        padding: 0.45rem;
        border-radius: 12px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .sponsor-page-card__logo {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 46px;
        overflow: hidden;
    }

    .sponsor-page-card__logo img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: 46px;
        max-height: 46px;
        object-fit: contain;
    }

    .sponsor-logo-fallback {
        font-size: 0.8rem;
        line-height: 1.1;
        text-align: center;
    }

    /* Hoofdsponsor blijft groter */
    .sponsor-page-card--main {
        min-height: 150px;
        padding: 1rem;
    }

    .sponsor-page-card--main .sponsor-page-card__logo {
        min-height: 100px;
    }

    .sponsor-page-card--main .sponsor-page-card__logo img {
        height: auto;
        max-height: 100px;
        width: auto;
        max-width: 100%;
    }
}



/* =========================================================
   8. FAQ EN CONTACT
========================================================= */

/* =========================================================
   FAQ OPMAAK
========================================================= */

.flaeijel-faq-list {
    display: grid;
    gap: 1rem;
}

.flaeijel-faq-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--flaeijel-rand);
    border-radius: var(--flaeijel-radius);
    box-shadow: var(--flaeijel-schaduw);
    overflow: hidden;
}

.flaeijel-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.flaeijel-faq-question::-webkit-details-marker {
    display: none;
}

.flaeijel-faq-question__text {
    font-size: 1.1rem;
    line-height: 1.25;
}

.flaeijel-faq-question__icon {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #0b0b0b;
    color: #f0ca0e;
    font-weight: 900;
}

.flaeijel-faq-item[open] .flaeijel-faq-question__icon {
    content: "−";
}

.flaeijel-faq-item[open] .flaeijel-faq-question__icon {
    font-size: 0;
}

.flaeijel-faq-item[open] .flaeijel-faq-question__icon::before {
    content: "−";
    font-size: 1.2rem;
}

.flaeijel-faq-answer {
    padding: 0 1.25rem 1.2rem;
    line-height: 1.7;
}


/* FEEST PAGINA – ECHT ZWART MET PAARSE ZIJ-GLOW */
body:has(.page-theme-feest) {
    background:
        radial-gradient(ellipse at left center, rgba(150, 0, 255, 0.38) 0%, rgba(150, 0, 255, 0.16) 18%, transparent 38%),
        radial-gradient(ellipse at right center, rgba(150, 0, 255, 0.38) 0%, rgba(150, 0, 255, 0.16) 18%, transparent 38%),
        #000 !important;
}

/* alles transparant zodat body zichtbaar blijft */
body:has(.page-theme-feest) .site-main,
body:has(.page-theme-feest) .single-page-main,
body:has(.page-theme-feest) .content-shell,
body:has(.page-theme-feest) .site-header,
body:has(.page-theme-feest) .site-footer {
    background: transparent !important;
    background-image: none !important;
}
@media (max-width: 1023px) {

    body:has(.page-theme-feest) .main-navigation.is-open {
        background: linear-gradient(
            180deg,
            rgba(20, 0, 40, 0.85),
            rgba(5, 0, 15, 0.92)
        ) !important;

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    body:has(.page-theme-feest) .primary-menu > li > a,
    body:has(.page-theme-feest) .primary-menu .sub-menu a {
        color: #f0ca0e !important;

        /* minder agressieve glow */
        text-shadow: 0 0 4px rgba(240, 202, 14, 0.25);
    }

    /* zachtere scheidingslijnen */
    body:has(.page-theme-feest) .primary-menu li {
        border-top: 1px solid rgba(255,255,255,0.06) !important;
    }

}
@media (max-width: 1023px) {

    body:has(.page-theme-feest) .main-navigation.is-open {
        border-radius: 18px;
        overflow: hidden;
        margin: 0.5rem;
    }

}

/* =========================================================
   CONTACTFORMULIER – COMPACT / FLAEIJEL
========================================================= */

.flaeijel-contact-form {
    max-width: 620px;
    margin: 1.25rem auto 0;
    padding: 1.1rem 1.2rem;

    border-radius: 18px;
    background:
        radial-gradient(ellipse at left center, rgba(240, 202, 14, 0.12), transparent 60%),
        radial-gradient(ellipse at right center, rgba(157, 78, 221, 0.12), transparent 60%),
        rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.08);

    display: grid;
    gap: 0.65rem;
}

/* labels subtieler */
.flaeijel-contact-form label {
    display: grid;
    gap: 0.2rem;
    font-weight: 800;
    font-size: 0.85rem;
    color: #111;
}

/* inputs compacter */
.flaeijel-contact-form input,
.flaeijel-contact-form select,
.flaeijel-contact-form textarea {
    width: 100%;
    min-height: 38px;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.94);
    font-size: 0.9rem;
}

/* textarea netjes */
.flaeijel-contact-form textarea {
    min-height: 110px;
}

/* focus iets subtieler */
.flaeijel-contact-form input:focus,
.flaeijel-contact-form select:focus,
.flaeijel-contact-form textarea:focus {
    outline: none;
    border-color: #f0ca0e;
    box-shadow:
        0 0 0 2px rgba(240, 202, 14, 0.18),
        0 0 12px rgba(157, 78, 221, 0.10);
}

/* knop kleiner */
.flaeijel-contact-form .button,
.flaeijel-contact-form button[type="submit"] {
    margin: 0.5rem auto 0;
    padding: 0.5rem 1.3rem;
    font-size: 0.85rem;
}

/* Honeypot */
.flaeijel-contact-form .flaeijel-contact-hp {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Meldingen compacter */
.contact-form-message {
    max-width: 620px;
    margin: 1rem auto 0;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
}

/* CONTACT – FORMULIER + HULPBLOK NAAST ELKAAR */
.flaeijel-contact-layout {
    max-width: 980px;
    margin: 1.25rem auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1rem;
    align-items: start;
}

.flaeijel-contact-layout .flaeijel-contact-form {
    margin: 0;
}

.flaeijel-contact-helper {
    padding: 1.1rem;
    border-radius: 18px;
    background:
        radial-gradient(ellipse at left center, rgba(240, 202, 14, 0.12), transparent 60%),
        radial-gradient(ellipse at right center, rgba(157, 78, 221, 0.12), transparent 60%),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.flaeijel-contact-helper__title {
    margin: 0 0 0.35rem;
    font-weight: 900;
    font-size: 1rem;
}

.flaeijel-contact-helper__text {
    margin: 0 0 0.8rem;
    font-size: 0.9rem;
    line-height: 1.45;
}

.flaeijel-contact-helper__links {
    display: grid;
    gap: 0.45rem;
}

.flaeijel-contact-helper__links a {
    display: block;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #000;
    color: #f0ca0e;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    border: 1px solid rgba(240, 202, 14, 0.55);
}

.flaeijel-contact-helper__links a:hover {
    background: #f0ca0e;
    color: #000;
}

@media (max-width: 800px) {
    .flaeijel-contact-layout {
        grid-template-columns: 1fr;
    }

    .flaeijel-contact-helper {
        order: 2;
    }
}
.flaeijel-contact-helper__small {
    margin: 0.9rem 0 0;
    font-size: 0.82rem;
    line-height: 1.4;
    opacity: 0.75;
}

/* =========================================================
   CONTACT INTRO
========================================================= */

.flaeijel-contact-intro {
    max-width: 720px;
    margin: 1.5rem auto 0.8rem;
    text-align: center;
}

.flaeijel-contact-intro h1 {
    margin: 0 0 0.4rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.flaeijel-contact-intro__lead {
    margin: 0 0 0.4rem;
    font-weight: 800;
    font-size: 1.05rem;
}

.flaeijel-contact-intro__text {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ACTIVITEITEN OVERZICHT */
.flaeijel-activiteiten-overzicht {
    display: grid;
    gap: 1.4rem;
}

.flaeijel-activiteiten-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.flaeijel-activiteiten-filter__button {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: #000;
    color: #f0ca0e;
    border: 1px solid rgba(240, 202, 14, 0.6);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.86rem;
}

.flaeijel-activiteiten-filter__button:hover,
.flaeijel-activiteiten-filter__button.is-active {
    background: #f0ca0e;
    color: #000;
}

.flaeijel-activiteiten-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.flaeijel-activiteit-card {
    overflow: hidden;
    padding: 0;
}

.flaeijel-activiteit-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.flaeijel-activiteit-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
}

.flaeijel-activiteit-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flaeijel-activiteit-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.38) 48%,
        rgba(0, 0, 0, 0.08) 100%
    );
}

.flaeijel-activiteit-card__overlay {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.9rem;
    z-index: 2;
    text-align: center;
}

.flaeijel-activiteit-card__title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.05;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.75),
        0 0 14px rgba(0,0,0,0.55);
}

.flaeijel-activiteit-card__title a {
    color: inherit;
    text-decoration: none;
}

.flaeijel-activiteit-card__time {
    margin: 0.35rem 0 0;
    color: #f0ca0e;
    font-weight: 900;
    font-size: 0.95rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.75);
}

.flaeijel-activiteit-card__content {
    padding: 1rem;
    text-align: center;
}

.flaeijel-activiteit-card__excerpt {
    margin: 0;
    line-height: 1.5;
}

.flaeijel-activiteit-card__actions {
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.flaeijel-activiteit-card__signup {
    background: #f0ca0e !important;
    color: #000 !important;
}

@media (max-width: 900px) {
    .flaeijel-activiteiten-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .flaeijel-activiteiten-grid {
        grid-template-columns: 1fr;
    }
}
.flaeijel-activiteit-card {
    transition:
        opacity 0.5s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.flaeijel-activiteiten-grid.is-shuffling .flaeijel-activiteit-card {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
}

.flaeijel-activiteit-card.is-hidden {
    display: none;
}



/* =========================================================
   9. FOOTER
========================================================= */

/* =========================================================
      22. FOOTER
   ========================================================= */

.site-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    background: linear-gradient(180deg, #111111, #000000);
    color: var(--flaeijel-wit);
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    overflow: hidden;
}

/* GRID */

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.4rem;
}

/* KAARTEN */

.footer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.4rem;
}

/* =========================
      LINKER KOLOM (LOGO BLOK)
   ========================= */

.footer-card--logo {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

/* LINKS */

.footer-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-quick-links a {
    color: var(--flaeijel-wit);
    text-decoration: none;
    opacity: 0.85;
    font-weight: 500;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-quick-links a:hover {
    opacity: 1;
    transform: translateX(4px);
}

/* ZOEK */

.footer-search input[type="search"] {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
}

.footer-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* =========================
      TYPO
   ========================= */

.footer-title {
    font-size: 1.5rem;
}

.footer-text,
.footer-list,
.footer-info p {
    margin: 0;
    opacity: 0.88;
    font-size: 0.92rem;
}

.footer-info p + p {
    margin-top: 0.3rem;
}

/* =========================
      ONDERSTE BALK
   ========================= */

.site-footer__bottom {
    padding: 1.1rem 0 1.8rem;
}

.site-footer__bottom-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.site-footer__copy {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0.92;
    justify-self: start;
}

.site-footer__credits {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    flex-wrap: wrap;
}

.site-footer__credit-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    line-height: 1.25;
    opacity: 0.8;
    white-space: nowrap;
}

.site-footer__credit-label {
    opacity: 0.82;
}

.site-footer__divider {
    font-size: 0.7rem;
    opacity: 0.55;
}

.site-footer__credit-item a {
    color: inherit;
    text-decoration: none;
}

.site-footer__credit-item a:hover,
.site-footer__credit-item a:focus-visible {
    text-decoration: underline;
}

/* =========================
      FOOTER SEARCH – FLAEIJEL STYLE
   ========================= */

.footer-search form {
    display: flex;
    gap: 0.4rem;
}

/* INPUT */

.footer-search input[type="search"] {
    flex: 1;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(240, 202, 14, 0.35);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 0 8px rgba(240, 202, 14, 0.12),
        inset 0 0 6px rgba(240, 202, 14, 0.08);
    transition: all 0.2s ease;
}

.footer-search input::placeholder {
    color: rgba(255,255,255,0.55);
}

/* FOCUS */

.footer-search input:focus {
    outline: none;
    border-color: #f0ca0e;
    box-shadow: 0 0 10px rgba(240, 202, 14, 0.25),
        0 0 20px rgba(240, 202, 14, 0.15),
        inset 0 0 8px rgba(240, 202, 14, 0.15);
}

/* BUTTON */

.footer-search button,
.footer-search input[type="submit"] {
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #f0ca0e;
    background: #000;
    color: #f0ca0e;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(240, 202, 14, 0.2),
        0 0 16px rgba(240, 202, 14, 0.08);
    transition: all 0.2s ease;
}

/* HOVER */

.footer-search button:hover,
.footer-search input[type="submit"]:hover {
    background: #f0ca0e;
    color: #000;
    box-shadow: 0 0 10px rgba(240, 202, 14, 0.5),
        0 0 22px rgba(240, 202, 14, 0.25);
}

/* ACTIVE */

.footer-search button:active {
    transform: translateY(1px);
}

.footer-info--about p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-info--about a {
    color: #111111;
    text-decoration: none;
}

.footer-info--about a:hover {
    text-decoration: underline;
}

.footer-meta {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    opacity: 0.65;
}

/* =========================
      FOOTER INFO BLOK
   ========================= */

.footer-card--info {
    text-align: center;
}

/* KOP */

.footer-card--info .footer-label {
    text-align: center;
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 1rem;
    color: #111111;
}

/* TEKST GROTER */

.footer-card--info .footer-info p {
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
    opacity: 0.92;
}

.footer-card--info .footer-info p + p {
    margin-top: 0.5rem;
}

/* LINKS ONDER ELKAAR */

.footer-info-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

/* LINKS */

.footer-info-links a {
    color: #111111;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.95;
    transition: all 0.2s ease;
}

/* GEEN BOLLETJES MEER */

.footer-info-links a::after {
    content: "";
}

/* HOVER */

.footer-info-links a:hover {
    opacity: 1;
    text-shadow: 0 0 6px rgba(240, 202, 14, 0.6);
    transform: translateY(-1px);
}

/* =========================
      FOOTER QUICK LINKS
   ========================= */

.footer-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* LINKS GEEL */

.footer-quick-links a {
    color: #111111;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.95;
    transition: all 0.2s ease;
}

/* HOVER */

.footer-quick-links a:hover {
    opacity: 1;
    text-shadow: 0 0 6px rgba(240, 202, 14, 0.6);
    transform: translateY(-1px);
}

/* =========================
      FOOTER ABOUT BLOK
   ========================= */

.footer-card--about {
    text-align: center;
}

/* LABEL GEEL + GECENTREERD */

.footer-card--about .footer-label {
    color: #111111;
    text-align: center;
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* TEKST GECENTREERD */

.footer-info--about p {
    text-align: center;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-info--about p + p {
    margin-top: 0.5rem;
}

/* =========================
      RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .footer-card--logo {
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-quick-links {
        align-items: center;
    }
}



/* =========================================================
   10. ALGEMENE RESPONSIVE OVERRIDES
========================================================= */

/* =========================================================
      23. RESPONSIVE – TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 980px) {
    .hero__inner,
    .feature-grid,
    .site-footer__grid,
    .frontpage-layout,
    .frontpage-news__grid,
    .frontpage-media {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        align-items: center;
        flex-wrap: nowrap;
    }

    .site-footer__bottom-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .site-footer__copy {
        justify-self: center;
    }

    .site-footer__credits {
        grid-column: auto;
    }

    .frontpage-card--photos {
        min-height: 280px;
    }

}

/* =========================================================
      24. RESPONSIVE – MOBIEL
   ========================================================= */

@media (max-width: 700px) {
    body::before,
    body::after {
        width: 120px;
        opacity: 0.6;
    }

    .hero__title {
        font-size: clamp(1.8rem, 7vw, 2.7rem);
    }

    .hero-row--left,
    .hero-row--right {
        width: 100%;
    }

    .hero-col--wide span {
        white-space: normal;
    }

    .hero-title-main {
        min-height: auto;
        margin-bottom: 1rem;
    }

    .hero-title-main__outline--main {
        font-size: clamp(3rem, 12vw, 46px);
    }

    .hero-title-main__outline--main .hero-title-main__fill {
        font-size: clamp(3rem, 12vw, 46px);
    }

    .hero-title-main__outline--sub {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-top: -0.2em;
        margin-left: 3.9em;
        transform: none;
        font-size: clamp(1.8rem, 7vw, 28px);
        letter-spacing: 0.04em;
    }

    .hero-title-main__outline--sub .hero-title-main__fill {
        font-size: clamp(1.8rem, 7vw, 28px);
        letter-spacing: 0.04em;
    }

    .hero-title-fancy {
        transform: translateY(1px);
    }

    .fv-hero__circle-wrapper {
        top: 1rem;
        left: 1rem;
        width: 120px;
        height: 120px;
    }

    .fv-hero__circle {
        width: 120px;
        height: 120px;
    }

    .fv-hero__circle::after {
        top: 30%;
        left: 110px;
        width: calc(100vw - 140px - 2rem);
    }

    .header-image-bar .hero-title-main--header {
        transform: translate(-50%, -54%);
        width: min(94vw, 560px);
        gap: 0.05em;
    }

    .header-image-bar .hero-title-main--header .hero-title-main__outline--main {
        font-size: clamp(3rem, 12vw, 46px);
    }

    .header-image-bar .hero-title-main--header .hero-title-main__outline--main .hero-title-main__fill {
        font-size: clamp(3rem, 12vw, 46px);
    }

    .header-image-bar .hero-title-main--header .hero-title-main__outline--sub {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-top: -0.2em;
        margin-left: 3.9em;
        transform: none;
        font-size: clamp(1.8rem, 7vw, 28px);
        letter-spacing: 0.04em;
    }

    .header-image-bar .hero-title-main--header .hero-title-main__outline--sub .hero-title-main__fill {
        font-size: clamp(1.8rem, 7vw, 28px);
        letter-spacing: 0.04em;
    }

    .hero-date {
        margin-top: 0.2em;
        font-size: clamp(0.9rem, 4vw, 1.3rem);
        line-height: 1.15;
    }

    .hero-date__outline,
    .hero-date__fill {
        white-space: normal;
    }

    .header-scroll-trigger {
        top: calc(1rem + 36px);
    }

    .flickr-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .flaeijel-lightbox {
        padding: 1rem;
    }

    .flaeijel-lightbox__image {
        max-height: 70vh;
    }

    .flaeijel-lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 1.7rem;
    }

    .flaeijel-lightbox__close {
        width: 42px;
        height: 42px;
        font-size: 1.7rem;
    }

    .hero-top-navigation {
        display: none;
    }
}

/* =========================================
   BREADCRUMBS – THEMA KLEUREN
========================================= */

/* FEEST (donker / paars) */
.page-theme-feest .breadcrumb a,
.page-theme-feest .breadcrumb span {
    color: #a855f7; /* jouw paarse tint */
}

.page-theme-feest .breadcrumb a:hover {
    color: #d8b4fe;
}

/* VERLEDEN (geel) */
.page-theme-verleden .breadcrumb a,
.page-theme-verleden .breadcrumb span {
    color: #111111;
}

/* MIXED */
.page-theme-mixed .breadcrumb a,
.page-theme-mixed .breadcrumb span {
    color: #c084fc; /* tussenkleur paars/geel */
}


/* =========================================================
   GLOBALE CTA-ZICHTBAARHEID
   Aangestuurd door de vinkjes in Flaeijel Site > Acties.
========================================================= */
body.flaeijel-hide-ticket-ctas .flaeijel-cta-ticket,
body.flaeijel-hide-ticket-ctas .menu-item.flaeijel-cta-ticket,
body.flaeijel-hide-ticket-ctas a.flaeijel-cta-ticket,
body.flaeijel-hide-ticket-ctas a.button[href*="/tickets"],
body.flaeijel-hide-ticket-ctas a.button[href*="/ticket"],
body.flaeijel-hide-ticket-ctas a.button[href*="/kaartverkoop"],
body.flaeijel-hide-ticket-ctas .button-wrapper a[href*="/tickets"],
body.flaeijel-hide-ticket-ctas .button-wrapper a[href*="/ticket"],
body.flaeijel-hide-ticket-ctas .button-wrapper a[href*="/kaartverkoop"],
body.flaeijel-hide-ticket-ctas .primary-menu > li:has(> a[href*="/tickets"]),
body.flaeijel-hide-ticket-ctas .primary-menu > li:has(> a[href*="/ticket"]),
body.flaeijel-hide-ticket-ctas .primary-menu > li:has(> a[href*="/kaartverkoop"]),
body.flaeijel-hide-ticket-ctas .hero-top-menu > li:has(> a[href*="/tickets"]),
body.flaeijel-hide-ticket-ctas .hero-top-menu > li:has(> a[href*="/ticket"]),
body.flaeijel-hide-ticket-ctas .hero-top-menu > li:has(> a[href*="/kaartverkoop"]) {
    display: none !important;
}

body.flaeijel-hide-signup-ctas .flaeijel-cta-signup,
body.flaeijel-hide-signup-ctas .menu-item.flaeijel-cta-signup,
body.flaeijel-hide-signup-ctas a.flaeijel-cta-signup,
body.flaeijel-hide-signup-ctas a.button[href*="/aanmelden"],
body.flaeijel-hide-signup-ctas a.button[href*="/aanmelding"],
body.flaeijel-hide-signup-ctas a.button[href*="/deelnemen"],
body.flaeijel-hide-signup-ctas a.button[href*="/inschrijven"],
body.flaeijel-hide-signup-ctas .button-wrapper a[href*="/aanmelden"],
body.flaeijel-hide-signup-ctas .button-wrapper a[href*="/aanmelding"],
body.flaeijel-hide-signup-ctas .button-wrapper a[href*="/deelnemen"],
body.flaeijel-hide-signup-ctas .button-wrapper a[href*="/inschrijven"],
body.flaeijel-hide-signup-ctas .primary-menu > li:has(> a[href*="/aanmelden"]),
body.flaeijel-hide-signup-ctas .primary-menu > li:has(> a[href*="/aanmelding"]),
body.flaeijel-hide-signup-ctas .primary-menu > li:has(> a[href*="/deelnemen"]),
body.flaeijel-hide-signup-ctas .primary-menu > li:has(> a[href*="/inschrijven"]),
body.flaeijel-hide-signup-ctas .hero-top-menu > li:has(> a[href*="/aanmelden"]),
body.flaeijel-hide-signup-ctas .hero-top-menu > li:has(> a[href*="/aanmelding"]),
body.flaeijel-hide-signup-ctas .hero-top-menu > li:has(> a[href*="/deelnemen"]),
body.flaeijel-hide-signup-ctas .hero-top-menu > li:has(> a[href*="/inschrijven"]) {
    display: none !important;
}

/* =========================================================
   Frontpage titels - zelfde fancy lettertype, layout behouden
   ========================================================= */
.home .news-card__title,
.home .frontpage-card__title,
.home .frontpage-news-tile__title,
.home .artist-card--slide h3,
.home .flaeijel-artiest-card__title,
.home .flaeijel-featured-video-card__title {
    font-family: var(--font_2), cursive;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
}

/* =========================================================
   Frontpage fancy titels - identiek opgebouwd als hero-titels
   ========================================================= */
.home .news-card__title,
.home .frontpage-card__title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.home .news-card__title .frontpage-title-fancy,
.home .frontpage-card__title .frontpage-title-fancy {
    margin-right: 0;
    font-family: var(--font_2), cursive;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 0.95;
    transform: translateY(2px);
}

.home .news-card__title .frontpage-title-fancy .outline,
.home .news-card__title .frontpage-title-fancy .fill,
.home .frontpage-card__title .frontpage-title-fancy .outline,
.home .frontpage-card__title .frontpage-title-fancy .fill {
    letter-spacing: 0.06em;
}

.home .news-card__title .frontpage-title-fancy {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.home .frontpage-card__title .frontpage-title-fancy {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.home .frontpage-card--news-small .news-card__title .frontpage-title-fancy {
    font-size: clamp(1.45rem, 2.25vw, 2.1rem);
}

.home .frontpage-card__title {
    color: transparent;
    text-shadow: none;
}

@media (max-width: 700px) {
    .home .news-card__title .frontpage-title-fancy,
    .home .frontpage-card__title .frontpage-title-fancy {
        font-size: clamp(1.45rem, 8vw, 2.1rem);
        letter-spacing: 0.04em;
    }

    .home .news-card__title .frontpage-title-fancy .outline,
    .home .news-card__title .frontpage-title-fancy .fill,
    .home .frontpage-card__title .frontpage-title-fancy .outline,
    .home .frontpage-card__title .frontpage-title-fancy .fill {
        letter-spacing: 0.04em;
    }
}

/* =========================================================
   Frontpage: socials full-width onder sponsoren
========================================================= */
.frontpage-socials {
    grid-column: 1 / -1;
    width: 100%;
}

.frontpage-card--socials {
    width: 100%;
}

@media (min-width: 801px) {
    .frontpage-socials .socials-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* =========================================================
   Hero paneel video i.p.v. tellerblok
   ========================================================= */
.hero-video-block {
    width: 100%;
    margin-top: 1.25rem;
}

.hero-video-block .flaeijel-featured-video-card,
.hero-video-block .flaeijel-featured-video-card--autoplay {
    margin: 0;
    color: #fff;
}

.hero-video-block .flaeijel-featured-video-card__media {
    border-radius: 22px;
    border: 1px solid rgba(240, 202, 14, 0.35);
    box-shadow:
        0 0 18px rgba(240, 202, 14, 0.22),
        0 0 34px rgba(128, 54, 170, 0.18);
}

.hero-video-block .flaeijel-featured-video-card__body,
.hero-video-block .flaeijel-featured-video-card__title,
.hero-video-block .flaeijel-featured-video-card__text {
    display: none !important;
}

.hero-video-block .flaeijel-featured-video-card--autoplay .flaeijel-featured-video-card__media--landscape {
    min-height: 260px;
}

@media (max-width: 760px) {
    .hero-video-block .flaeijel-featured-video-card--autoplay .flaeijel-featured-video-card__media--landscape {
        min-height: 210px;
    }
}

/* =========================================================
   Hero eerste blok: tekst + 3-foto doorlopende sliders naast de video
   ========================================================= */
.hero-story-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.hero-story-card {
    display: grid;
    grid-template-columns: minmax(150px, 0.46fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.hero-story-card--verleden {
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.08),
        0 0 22px rgba(240, 202, 14, 0.18);
}

.hero-story-card--feest {
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.08),
        0 0 22px rgba(128, 54, 170, 0.16);
}

.hero-story-slider {
    position: relative;
    min-height: 150px;
    border-radius: 18px;
    overflow: hidden;
    background: #111;
    isolation: isolate;
}

.hero-story-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.18), rgba(0,0,0,0.02) 20%, rgba(0,0,0,0.02) 80%, rgba(0,0,0,0.18));
    z-index: 2;
    pointer-events: none;
}

.hero-story-slider__track {
    position: absolute;
    inset: 0;
    display: flex;
    width: max-content;
    min-width: 200%;
    height: 100%;
    will-change: transform;
    animation: flaeijel-hero-story-marquee-ltr 24s linear infinite;
}

.hero-story-card--feest .hero-story-slider__track {
    animation-name: flaeijel-hero-story-marquee-rtl;
}

.hero-story-slider__slide {
    flex: 0 0 clamp(190px, 52%, 360px);
    height: 100%;
    margin-right: 0.55rem;
    background-size: cover;
    background-position: center;
    transform: scale(1.001);
}

@keyframes flaeijel-hero-story-marquee-ltr {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@keyframes flaeijel-hero-story-marquee-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-story-slider__track {
        animation-duration: 1ms;
        animation-iteration-count: 1;
    }
}

.hero-story-card__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.35rem 0.3rem 0.35rem 0;
}

.hero-story-card__content strong {
    display: block;
    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
    line-height: 1.12;
    margin-bottom: 0.2rem;
}

.hero-story-card__content .hero__desc {
    font-size: 0.98rem;
    line-height: 1.38;
}

@media (max-width: 760px) {
    .hero-story-card {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero-story-slider {
        min-height: 190px;
    }

    .hero-story-card__content {
        padding: 0 0.25rem 0.25rem;
    }
}

/* =========================================================
   Hero eerste blok: kaartjes groter + desktop ankerknoppen weg
   ========================================================= */
@media (min-width: 761px) {
    .hero__content {
        display: flex;
        flex-direction: column;
        padding: clamp(1.5rem, 2.8vw, 2.7rem);
    }

    .hero-story-grid {
        flex: 1 1 auto;
        gap: clamp(1rem, 1.6vw, 1.4rem);
        margin-top: clamp(1rem, 1.6vw, 1.5rem);
    }

    .hero-story-card {
        grid-template-columns: minmax(210px, 0.58fr) minmax(0, 1fr);
        gap: clamp(1rem, 1.5vw, 1.45rem);
        padding: clamp(0.9rem, 1.3vw, 1.15rem);
        min-height: clamp(210px, 18vw, 255px);
    }

    .hero-story-slider {
        min-height: 100%;
    }

    .hero-story-card__content {
        padding: 0.45rem 0.35rem 0.45rem 0;
    }

    .hero-story-card__content strong {
        font-size: clamp(1.22rem, 1.85vw, 1.55rem);
    }

    .hero-story-card__content .hero__desc {
        font-size: clamp(1rem, 1.08vw, 1.08rem);
    }

    .hero__content .hero__actions.hero__actions--center.button-wrapper,
    .hero__content .hero__actions.hero__actions--center.button-wrapper a[href="#verleden"],
    .hero__content .hero__actions.hero__actions--center.button-wrapper a[href="#feest"] {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

@media (max-width: 760px) {
    .hero-story-grid {
        gap: 1rem;
    }

    .hero-story-card {
        padding: 0.85rem;
        border-radius: 24px;
    }

    .hero-story-slider {
        min-height: clamp(220px, 62vw, 330px);
        border-radius: 19px;
    }

    .hero-story-card__content strong {
        font-size: clamp(1.15rem, 5vw, 1.45rem);
    }

    .hero__content .hero__actions.hero__actions--center.button-wrapper {
        display: flex !important;
        visibility: visible !important;
        pointer-events: auto !important;
        margin-top: 1.35rem;
        padding-top: 0.25rem;
    }
}

@media (max-width: 760px) {
    .hero-story-slider__slide {
        flex-basis: clamp(210px, 72vw, 360px);
        margin-right: 0.6rem;
    }
}

/* =========================================================
   Hero eerste blok v4: desktop meer lucht in titel/fotokaarten
   ========================================================= */
@media (min-width: 761px) {
    .hero-story-card {
        grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
        min-height: clamp(250px, 22vw, 330px);
        padding: clamp(1.15rem, 1.6vw, 1.55rem);
        gap: clamp(1.25rem, 1.9vw, 1.8rem);
        border-radius: 28px;
    }

    .hero-story-slider {
        min-height: 100%;
        border-radius: 22px;
    }

    .hero-story-card__content {
        padding: clamp(0.8rem, 1.25vw, 1.25rem) clamp(0.75rem, 1.25vw, 1.2rem) clamp(0.8rem, 1.25vw, 1.25rem) 0;
    }

    .hero-story-card__content strong {
        font-size: clamp(1.38rem, 2.15vw, 1.85rem);
        line-height: 1.08;
        margin-bottom: 0.45rem;
    }

    .hero-story-card__content .hero__desc {
        font-size: clamp(1.02rem, 1.15vw, 1.14rem);
        line-height: 1.45;
        max-width: 34rem;
    }
}

/* =========================================================
   Hero eerste blok v5: header-banner op desktop niet samendrukken
   ========================================================= */
@media (min-width: 761px) {
    .hero__content .news-card__image {
        position: relative;
        height: clamp(330px, 30vw, 430px);
        min-height: 330px;
        margin-bottom: clamp(1.8rem, 2.4vw, 2.5rem);
        background-size: cover;
        background-position: center center;
        border-top-left-radius: var(--flaeijel-radius);
        border-top-right-radius: var(--flaeijel-radius);
        overflow: hidden;
    }

    .hero__content .news-card__image::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background:
            radial-gradient(circle at 22% 25%, rgba(240, 202, 14, 0.28), transparent 42%),
            radial-gradient(circle at 78% 42%, rgba(157, 78, 221, 0.28), transparent 44%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.20) 44%, rgba(0, 0, 0, 0.48));
    }

    .hero__content .news-card__image .news-card__title {
        position: absolute;
        inset: clamp(2.1rem, 3vw, 3.2rem) clamp(2.2rem, 3.3vw, 3.8rem);
        z-index: 3;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: clamp(1.25rem, 2.2vw, 2.4rem);
        pointer-events: none;
    }

    .hero__content .news-card__title .hero-row--left,
    .hero__content .news-card__title .hero-row--right {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
    }

    .hero__content .news-card__title .hero-row--right {
        transform: translateY(0.15rem);
    }

    .hero__content .news-card__title .hero-row--left .hero-col--wide {
        justify-self: start;
        max-width: 92%;
    }

    .hero__content .news-card__title .hero-row--right .hero-col--wide {
        justify-self: end;
        max-width: 92%;
    }

    .hero__content .news-card__title .hero-title-fancy,
    .hero__content .news-card__title .hero-glow-word {
        line-height: 0.92;
    }

    .hero__content .news-card__title .hero-col--wide > span .hero-title-fancy {
        font-size: clamp(2.7rem, 4.8vw, 4.75rem);
    }

    .hero__content .news-card__title .hero-glow-word {
        font-size: clamp(2.2rem, 4.05vw, 4.1rem);
        margin-top: 0.1em;
    }
}

/* =========================================================
   Hero eerste blok v6: desktop opnieuw in balans
   - Geen hoge, uitgerekte linkerkolom naast de video
   - Side-by-side pas als er echt genoeg breedte is
   - Header/fototitel compact, met voldoende lucht
   ========================================================= */

@media (min-width: 981px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
        align-items: start;
        gap: clamp(1.25rem, 2vw, 2rem);
    }

    .hero__content {
        display: block;
        padding: clamp(1.35rem, 2.2vw, 2.2rem) !important;
        align-self: start;
    }

    .hero__panel {
        align-self: start;
        padding: clamp(1.35rem, 2.2vw, 2rem);
    }

    .hero__content .news-card__image {
        width: calc(100% + (2 * clamp(1.35rem, 2.2vw, 2.2rem))) !important;
        margin-left: calc(-1 * clamp(1.35rem, 2.2vw, 2.2rem)) !important;
        margin-right: calc(-1 * clamp(1.35rem, 2.2vw, 2.2rem)) !important;
        margin-top: calc(-1 * clamp(1.35rem, 2.2vw, 2.2rem)) !important;
        margin-bottom: clamp(1rem, 1.4vw, 1.35rem) !important;
        height: clamp(230px, 19vw, 310px) !important;
        min-height: 230px !important;
        border-top-left-radius: var(--flaeijel-radius);
        border-top-right-radius: var(--flaeijel-radius);
    }

    .hero__content .news-card__image .news-card__title {
        inset: clamp(1.25rem, 2vw, 2rem) clamp(1.45rem, 2.4vw, 2.4rem) !important;
        gap: clamp(0.65rem, 1.2vw, 1.15rem) !important;
        justify-content: center;
    }

    .hero__content .news-card__title .hero-col--wide > span .hero-title-fancy {
        font-size: clamp(2.2rem, 3.6vw, 3.8rem) !important;
        line-height: 0.94 !important;
    }

    .hero__content .news-card__title .hero-glow-word {
        font-size: clamp(1.9rem, 3.25vw, 3.35rem) !important;
        line-height: 0.96 !important;
    }

    .hero-story-grid {
        gap: clamp(0.85rem, 1.2vw, 1.15rem) !important;
        margin-top: 0 !important;
    }

    .hero-story-card {
        grid-template-columns: minmax(185px, 0.58fr) minmax(0, 1fr) !important;
        min-height: clamp(175px, 15vw, 225px) !important;
        padding: clamp(0.85rem, 1.15vw, 1.05rem) !important;
        gap: clamp(0.85rem, 1.35vw, 1.25rem) !important;
        border-radius: 24px !important;
    }

    .hero-story-slider {
        border-radius: 18px !important;
        min-height: 100% !important;
    }

    .hero-story-card__content {
        padding: clamp(0.35rem, 0.8vw, 0.7rem) clamp(0.25rem, 0.8vw, 0.7rem) clamp(0.35rem, 0.8vw, 0.7rem) 0 !important;
    }

    .hero-story-card__content strong {
        font-size: clamp(1.12rem, 1.55vw, 1.42rem) !important;
        line-height: 1.08 !important;
        margin-bottom: 0.28rem !important;
    }

    .hero-story-card__content .hero__desc {
        font-size: clamp(0.92rem, 1vw, 1.02rem) !important;
        line-height: 1.38 !important;
    }

    .hero-video-block .flaeijel-featured-video-card--autoplay .flaeijel-featured-video-card__media--landscape {
        min-height: clamp(230px, 22vw, 330px) !important;
    }
}

@media (min-width: 761px) and (max-width: 980px) {
    .hero__inner {
        grid-template-columns: 1fr !important;
        align-items: start !important;
    }

    .hero__content {
        display: block !important;
        padding: clamp(1.25rem, 4vw, 2rem) !important;
    }

    .hero__content .news-card__image {
        height: clamp(220px, 34vw, 300px) !important;
        min-height: 220px !important;
        margin-bottom: 1.25rem !important;
    }

    .hero-story-card {
        min-height: 190px !important;
    }
}

/* =========================================================
   Hero eerste blok v11: titelpositie definitief herstellen
   - gebaseerd op de werkende v6-layout
   - geen clipping bovenin
   - beide titels volledig zichtbaar
   ========================================================= */
@media (min-width: 761px) {
    .hero__content .news-card__image {
        overflow: hidden !important;
    }

    .hero__content .news-card__image .news-card__title {
        position: absolute !important;
        inset: 0 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        z-index: 5 !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        pointer-events: none !important;
    }

    .hero__content .news-card__title .hero-row--left,
    .hero__content .news-card__title .hero-row--right {
        position: absolute !important;
        display: block !important;
        width: auto !important;
        max-width: none !important;
        transform: none !important;
        text-align: center !important;
    }

    .hero__content .news-card__title .hero-row--left {
        top: clamp(2.25rem, 3vw, 3.1rem) !important;
        left: clamp(2.4rem, 3.4vw, 3.6rem) !important;
    }

    .hero__content .news-card__title .hero-row--right {
        top: clamp(5.05rem, 6.8vw, 7.1rem) !important;
        right: clamp(2.2rem, 3.2vw, 3.4rem) !important;
    }

    .hero__content .news-card__title .hero-col,
    .hero__content .news-card__title .hero-col--wide {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        max-width: none !important;
        min-width: 0 !important;
        width: auto !important;
    }

    .hero__content .news-card__title .hero-col--narrow {
        display: none !important;
    }

    .hero__content .news-card__title .hero-title-fancy,
    .hero__content .news-card__title .hero-glow-word,
    .hero__content .news-card__title .hero-glow-word .hero-title-fancy {
        display: block !important;
        margin: 0 !important;
        line-height: 0.92 !important;
        white-space: nowrap !important;
        transform: none !important;
    }

    .hero__content .news-card__title .hero-col--wide > span .hero-title-fancy,
    .hero__content .news-card__title .hero-glow-word .hero-title-fancy {
        font-size: clamp(1.85rem, 3.05vw, 3.35rem) !important;
    }
}

@media (min-width: 981px) {
    .hero__content .news-card__title .hero-row--left {
        top: clamp(2.35rem, 3.05vw, 3.25rem) !important;
        left: clamp(2.7rem, 3.5vw, 3.9rem) !important;
    }

    .hero__content .news-card__title .hero-row--right {
        top: clamp(5.25rem, 6.65vw, 7rem) !important;
        right: clamp(2.4rem, 3.35vw, 3.7rem) !important;
    }
}

@media (min-width: 761px) and (max-width: 980px) {
    .hero__content .news-card__title .hero-col--wide > span .hero-title-fancy,
    .hero__content .news-card__title .hero-glow-word .hero-title-fancy {
        font-size: clamp(1.75rem, 5.6vw, 2.9rem) !important;
    }

    .hero__content .news-card__title .hero-row--left {
        top: clamp(1.9rem, 4.2vw, 2.7rem) !important;
        left: clamp(1.65rem, 4vw, 2.6rem) !important;
    }

    .hero__content .news-card__title .hero-row--right {
        top: clamp(4.7rem, 10vw, 6.4rem) !important;
        right: clamp(1.55rem, 4vw, 2.5rem) !important;
    }
}


/* Fancy site title in de vaste menubalk */
@media (max-width: 760px) {
    .site-title--fancy {
        font-size: clamp(1.45rem, 8vw, 2.05rem);
        letter-spacing: 0.04em;
    }

    .site-title--fancy .outline {
        -webkit-text-stroke: 0.16em #000;
    }
}

/* =========================================================
   FOOTER – Flaeijel geel behouden
   Breadcrumb/theme-kleuren mogen de footer nooit overschrijven.
========================================================= */
.site-footer .footer-label,
.site-footer .footer-title,
.site-footer .footer-quick-links a,
.site-footer .footer-info-links a,
.site-footer .site-footer__credit-item a {
    color: #f0ca0e !important;
}

.site-footer .footer-quick-links a:hover,
.site-footer .footer-quick-links a:focus-visible,
.site-footer .footer-info-links a:hover,
.site-footer .footer-info-links a:focus-visible,
.site-footer .site-footer__credit-item a:hover,
.site-footer .site-footer__credit-item a:focus-visible {
    color: #f0ca0e !important;
    opacity: 1;
}


/* =========================================================
   FIX: mobiele paginaheader titels veilig binnen beeld
   Lange titels zoals "STOOMMACHINES" mogen niet uit de hero lopen.
========================================================= */
@media (max-width: 700px) {
    .header-image-bar--small .hero-title-main--header {
        width: min(88vw, 360px) !important;
        max-width: calc(100vw - 2rem) !important;
        transform: translate(-50%, -52%) !important;
        overflow: visible !important;
    }

    .header-image-bar--small .hero-title-main--header .hero-title-main__outline--main {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: clamp(1.55rem, 8.2vw, 34px) !important;
        line-height: 0.9 !important;
        letter-spacing: 0.025em !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
        text-wrap: balance !important;
        text-align: center !important;
        -webkit-text-stroke-width: 0.18em !important;
        text-shadow: 0.045em 0.045em 0 #000 !important;
    }

    .header-image-bar--small .hero-title-main--header .hero-title-main__outline--main .hero-title-main__fill {
        position: absolute !important;
        inset: 0 auto auto 0 !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: inherit !important;
        line-height: inherit !important;
        letter-spacing: inherit !important;
        white-space: inherit !important;
        overflow-wrap: inherit !important;
        word-break: inherit !important;
        text-wrap: inherit !important;
        text-align: inherit !important;
    }
}

@media (max-width: 390px) {
    .header-image-bar--small .hero-title-main--header .hero-title-main__outline--main {
        font-size: clamp(1.35rem, 7.4vw, 29px) !important;
        letter-spacing: 0.015em !important;
    }
}
