/* ==========================================================================
   OKK'70 • DESIGN TOKENS (COLORS + TYPOGRAPHY)
   Centrale kleuren + font tokens + Bootstrap overrides
   ========================================================================== */
:root {
    /* ==========================================================================
       OKK'70 • DESIGN TOKENS
       Centrale kleuren, typography, buttons, radius en component-helpers
       ========================================================================== */

    /* Brand */
    --okk-green: #77b446;
    --okk-dark: #253a34;
    --okk-dark-prima: #132621;
    --okk-light: #e4eae3;
    --okk-bg-light: #ebebeb;
    --okk-link: var(--okk-green);
    --okk-soft: rgba(37, 58, 52, 0.08);

    /* Typography */
    --font-heading: 'Poppins', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    --font-body: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

    --fw-poppins-black: 800;
    --fw-poppins-semibold: 600;
    --fw-poppins-medium: 500;
    --fw-body: 400;

    --fs-heading: 28px;
    --fs-subheading: 21px;
    --fs-body: 16px;

    /* Radius */
    --okk-radius-xs: 5px;
    --okk-radius-sm: 8px;
    --okk-radius-md: 10px;
    --okk-radius-lg: 16px;
    --okk-radius-pill: 999px;

    /* Buttons */
    --okk-btn-height: 2.35rem;
    --okk-btn-pad-x: 1.1rem;
    --okk-btn-icon-size: 1.2rem;
    --okk-btn-icon-left: 0.8rem;
    --okk-btn-arrow-w: 0.44rem;
    --okk-btn-arrow-h: 0.28rem;

    /* Legacy WC tokens nu ook bovenaan */
    --wc-radius: 1rem;
    --wc-radius-sm: 0.9rem;
    --wc-shadow: none;
    --wc-muted: #6c757d;

    /* Bootstrap */
    --bs-link-color: var(--okk-link);
    --bs-link-hover-color: var(--okk-dark);
}

/* ==========================================================================
   OKK'70 • BASE TYPOGRAPHY
   - Body: Open Sans regular 16px, donkergroen
   - Headings: Poppins
   ========================================================================== */
body {
    font-family: var(--font-body);
    font-weight: var(--fw-body);
    font-size: var(--fs-body);
    color: var(--okk-dark-prima); /* Prima donkergroen */
    background-color: var(--okk-bg-light); /* Prima lichtgrijs */
}

/* Headings baseline (je kunt dit verder fine-tunen per h1/h2) */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--okk-dark-prima);
}

/* Prima spec: Heading */
h1,
.okk-heading {
    font-weight: var(--fw-poppins-black);
    font-size: var(--fs-heading);
    line-height: 1.15;
    color: var(--okk-dark-prima);
}

/* Prima spec: Subheading */
h2,
.okk-subheading {
    font-weight: var(--fw-poppins-semibold);
    font-size: var(--fs-subheading);
    line-height: 1.2;
    color: var(--okk-green-prima);
}

/* ==========================================================================
   LINKS (GLOBAL) — menu-safe
   (nav/mega/topbar hebben eigen styling)
   ========================================================================== */
a:not(.btn):not(.nav-link):not(.okk-mega-textlink):not(.okk-mega-link):not(.okk-mega-tile) {
    color: var(--bs-link-color);
    text-decoration: none;
}
a:not(.btn):not(.nav-link):not(.okk-mega-textlink):not(.okk-mega-link):not(.okk-mega-tile):hover {
    color: var(--bs-link-hover-color);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   OKK'70 • HELPERS / SMALL COMPONENTS
   ========================================================================== */
.okk-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.okk-card-soft {
    background: rgba(39, 56, 51, 0.04);
    border-color: rgba(39, 56, 51, 0.1);
}

/* ==========================================================================
   OKK'70 • TYPOGRAPHY COMPONENTS
   ========================================================================== */
.section-title {
    font-family: var(--font-heading);
    font-weight: var(--fw-poppins-black);
    font-size: var(--fs-heading);
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--okk-dark-prima);
    margin-bottom: 1rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 4px;
    background: var(--okk-green);
    border-radius: var(--okk-radius-pill);
    margin-top: 0.5rem;
}

.brand-band.on-dark h1.section-title {
    color: #fff;
}

.is-centered-title .section-title {
    text-align: center;
}
.is-centered-title .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   OKK'70 • BUTTON SYSTEM
   Nieuwe pill-buttons + legacy mapping voor bestaande pagina's.
   Gebruik op nieuwe pagina's bij voorkeur:
   - .btn-okk-pill--dark
   - .btn-okk-pill--green
   - .btn-okk-pill--white
   - .btn-okk-pill--on-dark
   ========================================================================== */

/* Basis reset */
.btn,
button,
input[type='submit'],
input[type='button'] {
    font-family: var(--font-heading);
    font-weight: var(--fw-poppins-semibold);
    letter-spacing: 0.02em;
    box-shadow: none !important;
}

/* Nieuwe button basis */
.btn-okk-pill,
.btn-okk,
.btn-okk-outline,
.btn-okk70 {
    --btn-bg: #fff;
    --btn-fg: var(--okk-dark-prima);
    --btn-border: transparent;
    --btn-icon-bg: #fff;
    --btn-arrow-color: var(--okk-dark-prima);

    --btn-bg-hover: var(--okk-green);
    --btn-fg-hover: var(--okk-dark-prima);
    --btn-border-hover: var(--okk-green);
    --btn-icon-bg-hover: var(--okk-green);
    --btn-arrow-color-hover: var(--okk-dark-prima);

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--okk-btn-height);
    padding: 0.45rem var(--okk-btn-pad-x);
    padding-left: 2.3rem;

    border-radius: var(--okk-radius-pill);
    border: 1px solid var(--btn-border);
    background: var(--btn-bg);
    color: var(--btn-fg) !important;
    line-height: 1;
    text-decoration: none !important;
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

/* Bolletje */
.btn-okk-pill::before,
.btn-okk::before,
.btn-okk-outline::before,
.btn-okk70::before {
    content: '';
    position: absolute;
    left: var(--okk-btn-icon-left);
    top: 50%;
    width: var(--okk-btn-icon-size);
    height: var(--okk-btn-icon-size);
    border-radius: var(--okk-radius-pill);
    background: var(--btn-icon-bg);
    transform: translateY(-50%);
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

/* Pijltje */
.btn-okk-pill::after,
.btn-okk::after,
.btn-okk-outline::after,
.btn-okk70::after {
    content: '';
    position: absolute;
    left: calc(var(--okk-btn-icon-left) + (var(--okk-btn-icon-size) / 2) - 0.11rem);
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: var(--okk-btn-arrow-h) solid transparent;
    border-bottom: var(--okk-btn-arrow-h) solid transparent;
    border-left: var(--okk-btn-arrow-w) solid var(--btn-arrow-color);
    transition: border-left-color 0.18s ease;
}

.btn-okk-pill:hover,
.btn-okk-pill:focus,
.btn-okk:hover,
.btn-okk:focus,
.btn-okk-outline:hover,
.btn-okk-outline:focus,
.btn-okk70:hover,
.btn-okk70:focus {
    background: var(--btn-bg-hover);
    color: var(--btn-fg-hover) !important;
    border-color: var(--btn-border-hover);
    text-decoration: none !important;
    box-shadow: none !important;
    filter: none;
}

.btn-okk-pill:hover::before,
.btn-okk-pill:focus::before,
.btn-okk:hover::before,
.btn-okk:focus::before,
.btn-okk-outline:hover::before,
.btn-okk-outline:focus::before,
.btn-okk70:hover::before,
.btn-okk70:focus::before {
    background: var(--btn-icon-bg-hover);
}

.btn-okk-pill:hover::after,
.btn-okk-pill:focus::after,
.btn-okk:hover::after,
.btn-okk:focus::after,
.btn-okk-outline:hover::after,
.btn-okk-outline:focus::after,
.btn-okk70:hover::after,
.btn-okk70:focus::after {
    border-left-color: var(--btn-arrow-color-hover);
}

/* Variants */
.btn-okk-pill--dark,
.btn-okk70 {
    --btn-bg: var(--okk-dark);
    --btn-fg: #fff;
    --btn-border: var(--okk-dark);
    --btn-icon-bg: var(--okk-dark);
    --btn-arrow-color: #fff;

    --btn-bg-hover: var(--okk-green);
    --btn-fg-hover: var(--okk-dark-prima);
    --btn-border-hover: var(--okk-green);
    --btn-icon-bg-hover: var(--okk-green);
    --btn-arrow-color-hover: var(--okk-dark-prima);
}

.btn-okk-pill--green,
.btn-okk {
    --btn-bg: var(--okk-green);
    --btn-fg: var(--okk-dark-prima);
    --btn-border: var(--okk-green);
    --btn-icon-bg: var(--okk-green);
    --btn-arrow-color: var(--okk-dark-prima);

    --btn-bg-hover: var(--okk-dark);
    --btn-fg-hover: #fff;
    --btn-border-hover: var(--okk-dark);
    --btn-icon-bg-hover: var(--okk-dark);
    --btn-arrow-color-hover: #fff;
}

.btn-okk-pill--white,
.btn-okk-outline {
    --btn-bg: #fff;
    --btn-fg: var(--okk-dark-prima);
    --btn-border: var(--okk-dark);
    --btn-icon-bg: #fff;
    --btn-arrow-color: var(--okk-dark-prima);

    --btn-bg-hover: var(--okk-dark);
    --btn-fg-hover: #fff;
    --btn-border-hover: var(--okk-dark);
    --btn-icon-bg-hover: var(--okk-dark);
    --btn-arrow-color-hover: #fff;
}

.btn-okk-pill--white::before,
.btn-okk-outline::before {
    box-shadow: inset 0 0 0 1px rgba(37, 58, 52, 0.18);
}
.btn-okk-pill--white:hover::before,
.btn-okk-pill--white:focus::before,
.btn-okk-outline:hover::before,
.btn-okk-outline:focus::before {
    box-shadow: none;
}

.btn-okk-pill--on-dark {
    --btn-bg: #fff;
    --btn-fg: var(--okk-dark-prima);
    --btn-border: #fff;
    --btn-icon-bg: #fff;
    --btn-arrow-color: var(--okk-dark-prima);

    --btn-bg-hover: var(--okk-green);
    --btn-fg-hover: var(--okk-dark-prima);
    --btn-border-hover: var(--okk-green);
    --btn-icon-bg-hover: var(--okk-green);
    --btn-arrow-color-hover: var(--okk-dark-prima);
}
.btn-okk-pill--on-dark::before {
    box-shadow: inset 0 0 0 1px rgba(37, 58, 52, 0.18);
}
.btn-okk-pill--on-dark:hover::before,
.btn-okk-pill--on-dark:focus::before {
    box-shadow: none;
}

.btn-okk-pill.btn-sm,
.btn-okk.btn-sm,
.btn-okk-outline.btn-sm,
.btn-okk70.btn-sm {
    --okk-btn-height: 2rem;
    --okk-btn-pad-x: 0.95rem;
    --okk-btn-icon-size: 1.05rem;
    --okk-btn-arrow-w: 0.4rem;
    --okk-btn-arrow-h: 0.25rem;
    font-size: 0.9rem;
}

/* Oude active states neutraliseren */
.btn-okk.active,
.btn-okk.show,
.btn-okk[aria-pressed='true'],
.btn-okk-outline.active,
.btn-okk-outline.show,
.btn-okk-outline[aria-pressed='true'] {
    box-shadow: none !important;
}

/* Context: dark band + bootstrap primary => on-dark variant */
.brand-band .btn-primary {
    min-height: var(--okk-btn-height);
    padding-left: 2.3rem;
    border-radius: var(--okk-radius-pill);
    background: #fff;
    border-color: #fff;
    color: var(--okk-dark-prima);
}
.brand-band .btn-primary:hover,
.brand-band .btn-primary:focus {
    background: var(--okk-green);
    border-color: var(--okk-green);
    color: var(--okk-dark-prima);
}

/* ==========================================================================
   OKK'70 • LINK VARIANTS (OPTIONEEL)
   Alleen gebruiken in content waar je expliciet varianten wil.
   ========================================================================== */
.okk-link {
    color: var(--okk-link);
}
.okk-link:hover {
    color: var(--bs-link-hover-color);
}

.okk-link-muted {
    opacity: 0.75;
}
.okk-link-muted:hover {
    opacity: 1;
}

/* ==========================================================================
   OKK'70 • CONSISTENCY CLEANUP
   Schaduwen uit, radius gelijker, oude onrust wat gedempt.
   ========================================================================== */
.feature-card,
.sponsor-logo,
.sponsor-feature-card,
.okk-faq details,
.okk-media,
.activity-card,
.okk-person-card,
.volleystars-card,
.agenda-card,
.gallery-album-card__link,
.gallery-detail-header__inner,
.gallery-photo-tile__media,
.gallery-empty-state,
.pill-card,
.album-cover,
.card.border-success,
.shadow-soft,
.okk-mega .dropdown-menu,
.okk-mega-menu {
    box-shadow: none !important;
}

.feature-card,
.sponsor-feature-card,
.okk-faq details,
.okk-media,
.activity-card,
.okk-person-card,
.volleystars-card,
.agenda-card,
.pill-card,
.gallery-album-card__link,
.gallery-empty-state {
    border-radius: var(--okk-radius-md);
}

.sponsor-logo,
.location-thumb,
.footer .social-icons a,
.footer .footer-quicklinks a,
.okk-mega .dropdown-menu,
.okk-mega-menu {
    border-radius: var(--okk-radius-md);
}

.activity-card:hover,
.activity-card.is-past:hover,
.sponsor-logo:hover,
.gallery-album-card__link:hover,
.gallery-album-card__link:focus,
.gallery-photo-tile:hover .gallery-photo-tile__media,
.gallery-photo-tile:focus .gallery-photo-tile__media,
.pill-card:hover,
.hover-lift:hover {
    transform: none;
}

/* ==========================================================================
   OKK'70 • CONTEXTS / BANDS
   brand-band = donkere strook
   on-dark = context helper (alleen normale links wit maken, nooit button-links)
   ========================================================================== */
.brand-band {
    background: var(--okk-dark);
    color: #fff;
}

.brand-band .h1 {
    background: var(--okk-dark);
    color: #fff;
}

/* Alleen normale links in dark context, niet de Bootstrap .btn anchors */
.on-dark a:not(.btn) {
    color: #fff;
}
.on-dark a:not(.btn):hover {
    opacity: 0.8;
    color: #fff;
}

/* Context: bootstrap primary in dark band => OKK green */
.brand-band .btn-primary {
    background: var(--okk-green);
    border-color: var(--okk-green);
    color: #0b1f17;
}
.brand-band .btn-primary:hover {
    filter: brightness(0.95);
    color: #0b1f17;
}

.okk-section-flush-footer {
    margin-bottom: -3rem;
}

/* In donkere band: kaarten zijn licht -> links terug naar normale linkkleur */
.on-dark .feature-card a:not(.btn),
.on-dark .okk-person-card a:not(.btn),
.on-dark .card a:not(.btn) {
    color: var(--okk-link, var(--bs-link-color));
}

.on-dark .feature-card a:not(.btn):hover,
.on-dark .okk-person-card a:not(.btn):hover,
.on-dark .card a:not(.btn):hover {
    color: var(--bs-link-hover-color);
    opacity: 1; /* voorkomt dat hover "faderig" wordt op wit */
}

/* ==========================================================================
   OKK'70 • FEATURE CARD (IN BRAND-BAND)
   Wit vlak binnen donkere band.
   ========================================================================== */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
    color: #212529;
    padding: 2rem;
    border-radius: 0.75rem;
    height: 100%;
}

/* Titel iets rustiger dan standaard */
.feature-card .section-title {
    margin-bottom: 0.75rem;
}
.brand-band.on-dark .feature-card .section-title {
    color: var(--okk-dark-prima);
}

/* Tekst */
.feature-card p {
    line-height: 1.6;
}

/* Subtiele footer-tekst */
.feature-card .feature-note {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Buttons in feature card */
.feature-card .btn {
    white-space: nowrap;
}

/* Scheidingslijn */
.feature-card hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.15), transparent);
}

/* Outline knop binnen lichte kaart: geef witte achtergrond voor duidelijkheid */
.feature-card .btn-okk-outline {
    border-color: var(--okk-green);
    color: var(--okk-green);
    background: #fff;
}
.feature-card .btn-okk-outline:hover {
    background: var(--okk-green);
    color: #0b1f17;
}

/* ==========================================================================
   OKK'70 • TOPBAR
   ========================================================================== */
.topbar {
    background: var(--okk-dark);
}
.topbar a {
    color: #fff !important;
    text-decoration: none !important;
    opacity: 0.9;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}
.topbar a:hover,
.topbar a:focus {
    color: #fff !important;
    opacity: 1;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

/* ==========================================================================
   OKK'70 • PHOTO GRID
   ========================================================================== */
.photo-grid > [class*='col-'] {
    padding: 0; /* extra zekerheid */
}
.photo-grid {
    max-width: 1050px;
    margin: 0 auto;
}
.photo-img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1; /* vierkant */
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

/* ==========================================================================
   OKK'70 • SPONSORS
   ========================================================================== */

.sponsors h3 {
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* ==========================================================================
   SPONSOR STRIP
   ========================================================================== */

.sponsor-strip {
    position: relative;
    overflow: hidden;
    padding: 16px 2px;
    -webkit-overflow-scrolling: touch;
}

.sponsor-strip-track {
    display: flex;
    gap: 20px;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.sponsor-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 140px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.sponsor-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.sponsor-logo img,
.okk-sponsor-logo-img {
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(1);
}

/* strip-specifiek */
.sponsor-strip .sponsor-logo img {
    max-height: 110px;
    max-width: 240px;
}

/* Desktop auto-scroll */
.sponsor-strip.is-animated .sponsor-strip-track {
    animation: sponsor-scroll 30s linear infinite;
}

.sponsor-strip.is-animated:hover .sponsor-strip-track {
    animation-play-state: paused;
}

@keyframes sponsor-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 991.98px) {
    .sponsor-strip-track {
        gap: 14px;
    }

    .sponsor-logo {
        width: 220px;
        height: 120px;
    }

    .sponsor-strip .sponsor-logo img {
        max-height: 92px;
        max-width: 200px;
    }

    .sponsor-strip.is-animated .sponsor-strip-track {
        animation-duration: 40s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sponsor-strip.is-animated .sponsor-strip-track {
        animation: none;
    }
}

.sponsor-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.sponsor-header__text {
    max-width: 60ch;
}

.sponsor-header__actions {
    flex-shrink: 0;
}

.sponsor-header .section-title {
    margin-bottom: 0.25rem;
}

/* ==========================================================================
   PLATINUM / GOUD / ZILVER CARDS
   ========================================================================== */

.sponsor-feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sponsor-feature-card__logo {
    display: grid;
    place-items: center;
    min-height: 220px;
    padding: 24px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.sponsor-feature-card__logo img {
    max-width: 90%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.18s ease;
}

.sponsor-feature-card:hover .sponsor-feature-card__logo img {
    transform: scale(1.025);
}

.sponsor-feature-card__body {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.sponsor-feature-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.25;
    margin: 0;
    color: var(--okk-dark-prima);
}

.sponsor-feature-card__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(19, 38, 33, 0.68);
    flex-grow: 1;
}

@media (max-width: 575.98px) {
    .sponsor-feature-card__logo {
        min-height: 190px;
        padding: 20px;
    }

    .sponsor-feature-card__logo img {
        max-height: 135px;
        max-width: 92%;
    }

    .sponsor-feature-card__body {
        padding: 0.95rem 1rem 1rem;
    }

    .sponsor-feature-card__title {
        font-size: 1.02rem;
    }

    .sponsor-feature-card__text {
        font-size: 0.9rem;
    }
}

#platinum .sponsor-feature-card__logo {
    min-height: 250px;
}

#platinum .sponsor-feature-card__logo img {
    max-height: 180px;
}

/* ==========================================================================
   BRONS / OVERIG LOGO TILES
   ========================================================================== */

.okk-sponsor-logo-lg {
    width: 100%;
    height: 140px;
}

.okk-sponsor-logo-lg img {
    max-height: 110px;
    max-width: 88%;
}

@media (max-width: 575.98px) {
    .okk-sponsor-logo-lg {
        height: 128px;
    }

    .okk-sponsor-logo-lg img {
        max-height: 94px;
        max-width: 86%;
    }
}

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

.okk-faq details {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    padding: 0.9rem 1rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.06);
}

.okk-faq details + details {
    margin-top: 0.75rem;
}

.okk-faq summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
}

.okk-faq summary:focus-visible {
    outline: 3px solid rgba(79, 176, 81, 0.35);
    outline-offset: 4px;
    border-radius: 0.5rem;
}

/* ==========================================================================
   HELPERS
   ========================================================================== */

.okk-action-card {
    display: flex;
    flex-direction: column;
}

.okk-action-card .btn {
    white-space: nowrap;
}

/* ==========================================================================
   OKK'70 • MEDIA LIST (voor sponsor-opties met afbeelding)
   ========================================================================== */
.okk-media {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.06);
}

.okk-media-reverse {
    flex-direction: row-reverse;
}

.okk-media-img {
    flex: 0 0 auto;
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
}

.okk-media-img img {
    max-width: 110px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.okk-media-img-round img {
    border-radius: 999px;
}

.okk-media-body h3 {
    margin-bottom: 0.5rem;
}

@media (max-width: 575.98px) {
    .okk-media,
    .okk-media-reverse {
        flex-direction: column;
        align-items: flex-start;
    }
    .okk-media-img {
        width: 90px;
        height: 90px;
    }
    .okk-media-img img {
        max-width: 90px;
        max-height: 90px;
    }
}

/* ==========================================================================
   OKK'70 • EVENTS
   ========================================================================== */
.activities-section {
    background: #f7f8fa;
}

.activity-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.activity-inner {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    height: 100%;
}

.activity-poster {
    flex: 0 0 25%;
    max-width: 25%;
}

.activity-poster img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.activity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-meta {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.activity-title {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.activity-text {
    margin: 0 0 0.75rem 0;
    color: #444;
}

.activity-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.activity-actions {
    margin-top: auto;
}

/* Past variant: afwijkend uiterlijk + “uit” gevoel */
.activity-card.is-past {
    background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
    border-color: rgba(0, 0, 0, 0.08);
}

.activity-card.is-past .activity-poster img {
    filter: grayscale(0.6);
    opacity: 0.9;
}

.activity-card.is-past .activity-title {
    color: #333;
}

.activity-past-note {
    margin-top: auto;
    font-size: 0.85rem;
    color: #666;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
}

/* Mobile */
@media (max-width: 576px) {
    .activity-inner {
        flex-direction: column;
    }
    .activity-poster {
        max-width: 100%;
    }
}

.activity-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.activity-card:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.activity-card.is-past:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.activity-poster--placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #e9ecef;
}

.activity-poster-link {
    display: block;
}
.activity-poster-link img {
    display: block;
    width: 100%;
    height: auto;
}
.activity-poster-img {
    width: 100%;
    max-height: 520px;
    object-fit: contain; /* portrait blijft heel */
    background: #f3f4f6; /* subtiele backing */
}

#activityPosterModal .modal-body {
    padding: 0;
    background: rgba(0, 0, 0, 0.85);
}

#activityPosterModal .activity-modal-img {
    display: block;
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* ==========================================================================
   OKK'70 • FOOTER
   ========================================================================== */

.footer {
    background: linear-gradient(180deg, var(--okk-dark) 0%, #1f2f2a 100%);
    color: #fff;
    border-top: 6px solid var(--okk-green);
    padding-top: 2rem;
}

.footer .row.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.25rem;
}

/* --------------------------------------------------------------------------
   Basis
   -------------------------------------------------------------------------- */

.footer .footer-brand .logo-svg {
    width: 180px;
    height: auto;
    display: block;
}

.footer .footer-title {
    margin: 0 0 1rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: var(--fw-poppins-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--okk-green);
}

.footer p,
.footer li,
.footer .text-secondary,
.footer .contact-block {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition:
        color 0.18s ease,
        opacity 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.footer a:hover {
    color: #fff;
}

.footer .footer-intro {
    max-width: 52ch;
    margin-bottom: 0.9rem;
}

/* --------------------------------------------------------------------------
   Socials
   -------------------------------------------------------------------------- */

.footer .social-icons {
    display: flex;
    gap: 0.6rem;
    max-width: 260px;
}

.footer .social-icons a {
    flex: 1 1 0;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer .social-icons a i {
    font-size: 1.35rem;
    line-height: 1;
}

.footer .social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(79, 176, 81, 0.4);
    transform: translateY(-1px);
    opacity: 1;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Snelle links
   -------------------------------------------------------------------------- */

.footer .footer-quicklinks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .footer-quicklinks a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer .footer-quicklinks a span {
    line-height: 1.3;
}

.footer .footer-quicklinks a i {
    flex: 0 0 auto;
    font-size: 0.95rem;
    color: var(--okk-green);
    transition: transform 0.18s ease;
}

.footer .footer-quicklinks a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 176, 81, 0.45);
    transform: translateX(2px);
    opacity: 1;
    text-decoration: none;
}

.footer .footer-quicklinks a:hover i {
    transform: translateX(2px);
}

/* --------------------------------------------------------------------------
   Locaties
   -------------------------------------------------------------------------- */

.footer .footer-locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .location-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.footer .location-thumb {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.footer .contact-block {
    line-height: 1.4;
}

.footer .contact-block .address-line {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.footer .contact-block .map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    color: var(--okk-green);
    background: rgba(79, 176, 81, 0.12);
}

.footer .contact-block .map-link:hover {
    background: rgba(79, 176, 81, 0.22);
    color: #fff;
    opacity: 1;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Form elementen / buttons
   -------------------------------------------------------------------------- */

.footer input.form-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

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

.footer input.form-control:focus {
    background: transparent;
    color: #fff;
    border-color: var(--okk-green);
    box-shadow: none;
}

.footer .btn-primary {
    background: var(--okk-green);
    border-color: var(--okk-green);
    color: #0b1f17;
    font-weight: 600;
}

.footer .btn-primary:hover {
    background: #45a746;
    border-color: #45a746;
    color: #0b1f17;
}

.footer .sponsor-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
}

/* --------------------------------------------------------------------------
   Onderste balk
   -------------------------------------------------------------------------- */

.footer .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 0.85rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
}

.footer .footer-bottom a:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
    .footer .footer-brand .logo-svg {
        width: 165px;
    }
}

@media (max-width: 767.98px) {
    .footer {
        text-align: left;
    }

    .footer .row > div {
        margin-bottom: 1.5rem;
    }

    .footer .social-icons {
        max-width: 240px;
    }

    .footer .location-thumb {
        width: 58px;
        height: 58px;
    }

    .footer .footer-bottom {
        margin-top: 1.25rem;
    }
}

.footer.mt-5 {
    margin-top: 2rem !important;
}

/* ==========================================================================
   OKK'70 • NAVBAR + MEGA MENU
   ========================================================================== */
.okk-navbar {
    background: var(--okk-green);
}

.okk-navbar .okk-nav .nav-link {
    color: var(--okk-dark-prima, var(--okk-dark));
    font-family: var(--font-heading, inherit);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.75rem 0.9rem;
}

/* Hover/focus */
.okk-navbar .okk-nav .nav-link:hover,
.okk-navbar .okk-nav .nav-link:focus {
    color: var(--okk-dark-prima, var(--okk-dark));
    opacity: 0.9;
    text-decoration: none;
}

/* Open dropdown / active states (Bootstrap toggles .show op li) */
.okk-navbar .okk-nav .nav-item.show > .nav-link,
.okk-navbar .okk-nav .nav-link.active,
.okk-navbar .okk-nav .nav-link[aria-expanded='true'] {
    color: var(--okk-dark-prima, var(--okk-dark));
    opacity: 1;
}

/* Bootstrap focus ring weg op nav-links */
.okk-navbar .nav-link:focus,
.okk-navbar .nav-link:focus-visible {
    box-shadow: none;
    outline: none;
}

.okk-navbar-inner {
    min-height: 120px;
    align-items: center;
}

#mainNav {
    position: relative;
}

.okk-logo {
    height: 100px;
    width: auto;
}

/* ==========================================================================
   MEGA MENU
   ========================================================================== */

.okk-mega {
    position: relative;
}

/* Desktop mega menu */
.okk-mega .dropdown-menu {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.okk-mega-menu {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    max-width: calc(100vw - 2rem);
    overflow: hidden;
}
.okk-mega-narrow {
    width: min(560px, calc(100vw - 2rem));
}
.okk-mega-wide {
    width: min(980px, calc(100vw - 2rem));
}
.okk-mega.one-col .dropdown-menu {
    width: min(320px, calc(100vw - 2rem));
}
.okk-mega-menu .row {
    --bs-gutter-x: 1.25rem;
}
/* 1-kolom menu: col-md-6 forceren naar 100% */
.okk-mega.one-col .dropdown-menu .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* titels / links */
.okk-mega-title {
    font-family: var(--font-heading, inherit);
    font-weight: 800;
    color: var(--okk-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.95rem;
    opacity: 0.85;
}
.okk-mega-textlink {
    display: block;
    text-decoration: none;
    line-height: 1.25;
    color: var(--okk-dark-prima, var(--okk-dark));
    font-family: var(--font-heading, inherit);
    font-weight: 600;
    padding: 0.35rem 0.5rem;
    margin-left: -0.5rem;
    border-radius: 10px;
}
.okk-mega-textlink:hover,
.okk-mega-textlink:focus {
    color: var(--okk-dark-prima, var(--okk-dark));
    background: rgba(19, 38, 33, 0.06);
    text-decoration: none;
}

/* tiles */
.okk-mega-tile {
    display: block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    max-height: 140px;
    background-image: var(--tile-img);
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
}
@media (min-width: 1200px) {
    .okk-mega-tile {
        max-height: 160px;
    }
}
.okk-mega-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.okk-mega-tile-label {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .okk-mega-wide {
        width: min(860px, calc(100vw - 2rem));
    }
    .okk-mega-menu .row {
        --bs-gutter-x: 1rem;
    }
}

@media (max-width: 992px) {
    .okk-mega-wide .col-lg-4,
    .okk-mega-wide .col-lg-5,
    .okk-mega-wide .col-lg-7,
    .okk-mega-wide .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .okk-mega-wide .dropdown-menu .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.dropdown-menu {
    --okk-shift-x: 0px;
    translate: var(--okk-shift-x) 0;
}

/* Mobile button */
.okk-menu-btn {
    background: transparent;
    border: 0;
    color: var(--okk-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =========================
   OKK Nav Tabs
   ========================= */

.nav-tabs {
    border-bottom: none;
    gap: 0.25rem;
}

/* basis knop */
.nav-tabs .nav-link {
    border: none;
    border-radius: 0.75rem 0.75rem 0 0;
    font-weight: 600;
    color: var(--okk-green);
    background: transparent;
    padding: 0.55rem 1.1rem;
    transition: all 0.18s ease;
}

/* hover subtiel */
.nav-tabs .nav-link:hover {
    background: rgba(39, 56, 51, 0.08); /* okk-dark heel licht */
    color: var(--okk-dark);
}

/* active tab */
.nav-tabs .nav-link.active {
    background: var(--okk-dark);
    color: #fff;
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.04);
}

/* focus netjes */
.nav-tabs .nav-link:focus {
    box-shadow: none;
}

/* ==========================================================================
   OKK'70 • MOBILE MENU (OFFCANVAS + ACCORDION)
   Doelen:
   - Geen Bootstrap blauwe focus ring
   - Hoofditems (button + direct link) exact gelijk
   - Strakke uitlijning + subtiele separators
   - Geen underline bij hover/click
   ========================================================================== */

/* Offcanvas basis */
.okk-offcanvas {
    background: var(--okk-dark);
    width: 100vw !important;
    max-width: 100vw !important;
}

/* Body centreren (container) */
.okk-offcanvas .offcanvas-body {
    display: flex;
    justify-content: center;
}

/* Menu container (breedte en uitlijning) */
.okk-offcanvas .accordion {
    width: 100%;
    max-width: 460px; /* iets breder dan 420 = rustiger */
    margin: 0 auto;
    text-align: left; /* <-- keuze: links (aanrader) */
}

/* Geen underline op links in mobile menu */
.okk-offcanvas a,
.okk-offcanvas a:hover,
.okk-offcanvas a:active {
    text-decoration: none !important;
}

/* Bootstrap focus ring weg (blauwe rand) */
.okk-offcanvas .accordion-button:focus,
.okk-offcanvas .accordion-button:focus-visible,
.okk-offcanvas a:focus,
.okk-offcanvas a:focus-visible {
    box-shadow: none !important;
    outline: none !important;
}

/* Accordion items */
.okk-acc-item {
    background: transparent;
    border: 0;
}

/* =========================
   HOOFDITEMS (button en link)
   Maak ze identiek in typografie/spacing
========================= */
.okk-acc-btn,
.okk-acc-direct {
    display: flex;
    align-items: center;
    justify-content: space-between; /* tekst links, chevron rechts */
    width: 100%;

    padding: 1.05rem 0;
    margin: 0;

    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.1;

    color: #fff !important;
    background: transparent !important;
}

/* Bootstrap accordion-button reset (anders krijg je afwijkende paddings) */
.okk-acc-btn {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Subtiele lijn onder elk hoofditem */
.okk-acc-btn,
.okk-acc-direct {
    position: relative;
}
.okk-acc-btn::before,
.okk-acc-direct::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

/* Hover: kleine glow/opacity (geen underline) */
.okk-acc-btn:hover,
.okk-acc-direct:hover {
    opacity: 0.92;
}

/* Chevron (bootstrap ::after) netjes */
.okk-acc-btn::after {
    filter: invert(1);
    opacity: 0.8;
}
.okk-acc-btn:not(.collapsed)::after {
    opacity: 1;
}

/* Open state: klein accent (OKK green streepje links) */
.okk-acc-btn:not(.collapsed) {
    color: #fff !important;
}
.okk-acc-btn:not(.collapsed)::after {
    transform: rotate(-180deg);
}

/* =========================
   SUBMENU
========================= */
.okk-acc-body {
    padding: 0.4rem 0 1rem 0; /* iets compacter */
}

.okk-acc-sub {
    display: block;
    padding: 0.55rem 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.okk-acc-sub:hover {
    color: #fff;
    opacity: 1;
}

/* Submenu items optioneel: subtiele indent + streepje */
.okk-acc-sub {
    padding-left: 1rem;
    position: relative;
}
.okk-acc-sub::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%);
}

/* ==========================================================================
   OKK'70 • PAGINATION
   Opt-in via .pagination.okk-pagination
   ========================================================================== */
.pagination.okk-pagination {
    --okk-page-bg: #fff;
    --okk-page-fg: var(--okk-dark);
    --okk-page-bd: rgba(39, 56, 51, 0.18);
    --okk-page-hover-bg: rgba(79, 176, 81, 0.1);
    --okk-page-hover-bd: rgba(79, 176, 81, 0.35);
    --okk-page-active-bg: var(--okk-green);
    --okk-page-active-fg: #0b1f17;
    --okk-page-active-bd: var(--okk-green);
    --okk-page-disabled: rgba(39, 56, 51, 0.35);

    gap: 0.35rem; /* ruimte tussen items (Bootstrap 5 ondersteunt gap op flex) */
}

.pagination.okk-pagination .page-link {
    border-radius: 0.6rem; /* los van elkaar, pill-achtig */
    border: 1px solid var(--okk-page-bd);
    background: var(--okk-page-bg);
    color: var(--okk-page-fg);
    font-weight: 600;
    min-width: 42px;
    text-align: center;
    padding: 0.55rem 0.8rem;
    box-shadow: none;
}

.pagination.okk-pagination .page-link:hover {
    background: var(--okk-page-hover-bg);
    border-color: var(--okk-page-hover-bd);
    color: var(--okk-page-fg);
    text-decoration: none;
}

.pagination.okk-pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(79, 176, 81, 0.25);
}

.pagination.okk-pagination .page-item.active .page-link {
    background: var(--okk-page-active-bg);
    border-color: var(--okk-page-active-bd);
    color: var(--okk-page-active-fg);
}

.pagination.okk-pagination .page-item.disabled .page-link {
    color: var(--okk-page-disabled);
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(39, 56, 51, 0.12);
    pointer-events: none;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    position: relative;
    min-height: 300px;
    height: clamp(300px, 42vh, 520px);
}

.hero picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.58)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 55%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    z-index: 2;
    padding: 0 16px;
}

.hero .hero-content,
.hero .hero-content h1,
.hero .hero-content p {
    color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
    .hero:not(.hero--has-video) .hero-content {
        animation: heroSlideTop 0.8s ease-out both;
    }

    .hero:not(.hero--has-video) .hero-content h1 {
        animation: heroSlideTop 0.8s ease-out both;
        animation-delay: 0.05s;
    }

    .hero:not(.hero--has-video) .hero-content p {
        animation: heroSlideTop 0.8s ease-out both;
        animation-delay: 0.15s;
    }

    @keyframes heroSlideTop {
        from {
            transform: translateY(-18px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

.hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 12px;
}

.hero-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 22px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero--compact {
    min-height: 240px;
    height: clamp(240px, 32vh, 320px);
}

@media (max-width: 767.98px) {
    .hero-inner--panel {
        padding: 0.9rem 1rem;
        border-radius: 18px;
    }

    .hero-title {
        font-size: clamp(26px, 8vw, 36px);
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   OKK'70 • AGENDA
   ========================================================================== */
.agenda-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
}

.agenda-head > * {
    white-space: nowrap;
}
.agenda-head .text-end {
    margin-left: auto;
}

.agenda-box {
    background: var(--okk-light);
    color: #fff;
    padding: 1rem;
    border-radius: 6px;
}

.agenda-row {
    display: grid;
    grid-template-columns: 60px 1fr 100px;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.agenda-row a {
    color: #fff;
    text-decoration: underline;
}

@media (min-width: 992px) {
    .col-lg-4.d-flex.flex-column.align-self-stretch {
        min-height: 0;
    }
    .agenda-box {
        min-height: 0;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    .agenda-footer {
        margin-top: auto;
    }
}

/* ==========================================================================
   OKK'70 • 404 (SHEEP)
   ========================================================================== */
.error-content {
    position: relative;
}
.error-content .error {
    color: var(--okk-green);
}

/* Sheep */
.error-content .im-sheep {
    display: inline-block;
    position: relative;
    font-size: 1em;
    margin-bottom: 70px;
}
.error-content .im-sheep * {
    transition: transform 0.3s;
}
.error-content .im-sheep .top {
    position: relative;
    top: 0;
    animation: bob 1s infinite;
}
.error-content .im-sheep:hover .head {
    transform: rotate(0deg);
}
.error-content .im-sheep:hover .head .im-eye {
    width: 1.25em;
    height: 1.25em;
}
.error-content .im-sheep:hover .head .im-eye:before {
    right: 30%;
}
.error-content .im-sheep:hover .top {
    animation-play-state: paused;
}

.error-content .im-sheep .head {
    display: inline-block;
    width: 5em;
    height: 5em;
    border-radius: 100%;
    background: #4e5664;
    vertical-align: middle;
    position: relative;
    top: 1em;
    transform: rotate(30deg);
}
.error-content .im-sheep .head:before {
    content: '';
    display: inline-block;
    width: 80%;
    height: 50%;
    background: #4e5664;
    position: absolute;
    bottom: 0;
    right: -10%;
    border-radius: 50% 40%;
}
.error-content .im-sheep .head:hover .im-ear.one,
.error-content .im-sheep .head:hover .im-ear.two {
    transform: rotate(0deg);
}

.error-content .im-sheep .head .im-eye {
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 100%;
    background: white;
    position: absolute;
    overflow: hidden;
}
.error-content .im-sheep .head .im-eye:before {
    content: '';
    display: inline-block;
    background: black;
    width: 50%;
    height: 50%;
    border-radius: 100%;
    position: absolute;
    right: 10%;
    bottom: 10%;
    transition: all 0.3s;
}
.error-content .im-sheep .head .im-eye.one {
    right: -2%;
    top: 1.7em;
}
.error-content .im-sheep .head .im-eye.two {
    right: 2.5em;
    top: 1.7em;
}

.error-content .im-sheep .head .im-ear {
    background: #4e5664;
    width: 50%;
    height: 30%;
    border-radius: 100%;
    position: absolute;
}
.error-content .im-sheep .head .im-ear.one {
    left: -10%;
    top: 5%;
    transform: rotate(-30deg);
}
.error-content .im-sheep .head .im-ear.two {
    top: 2%;
    right: -5%;
    transform: rotate(20deg);
}

.error-content .im-sheep .body {
    display: inline-block;
    width: 7em;
    height: 7em;
    border-radius: 100%;
    background: var(--okk-green);
    position: relative;
    vertical-align: middle;
    margin-right: -3em;
}

.error-content .im-sheep .im-legs {
    display: inline-block;
    position: absolute;
    top: 80%;
    left: 10%;
    z-index: -1;
}
.error-content .im-sheep .im-legs .im-leg {
    display: inline-block;
    background: #141214;
    width: 0.5em;
    height: 2.5em;
    margin: 0.2em;
}
.error-content .im-sheep::before {
    left: 0;
    content: '';
    display: inline-block;
    position: absolute;
    top: 112%;
    width: 100%;
    height: 18%;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.2);
}

@keyframes bob {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ==========================================================================
   OKK'70 • LIGHTGALLERY OVERLAY
   ========================================================================== */
html.lg-on,
body.lg-on {
    overflow: hidden !important;
}

/* Chrome & Edge: verberg de grijze balk */
html.lg-on::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

/* ==========================================================================
   OKK'70 • CONTENT HELPERS
   ========================================================================== */
.news-content img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   OKK'70 • STANDEN / RANGKLEUREN (NEVOBO)
   ========================================================================== */
/* ▼ Promotie (groen) */
.rank-promotie td {
    position: relative;
    background: #e8f6ec;
}
.rank-promotie td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #1e9e57;
}

/* ▼ Promotiewedstrijden (lichtgroen-lime) */
.rank-promotiewedstrijd td {
    position: relative;
    background: #f0fae8;
}
.rank-promotiewedstrijd td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #8bc34a;
}

/* ▼ Handhaving */
.rank-handhaving td {
    position: relative;
    background: #ffffff;
}
.rank-handhaving td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #bdbdbd;
}

/* ▼ Degradatiewedstrijden (oranje) */
.rank-degradatiewedstrijd td {
    position: relative;
    background: #fff3e0;
}
.rank-degradatiewedstrijd td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #fb8c00;
}

/* ▼ Degradatie (rood) */
.rank-degradatie td {
    position: relative;
    background: #fdecea;
}
.rank-degradatie td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #f44336;
}

.table-okk70 td {
    font-weight: 700;
}

/* ==========================================================================
   OKK'70 • VOLLEYSTARS / INFO CARDS / FAQ ACCORDION
   (pagina-specifiek)
   ========================================================================== */
.info-card {
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    height: 100%;
}
.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.4s ease;
}
.info-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}
.info-card:hover::before {
    background: rgba(0, 0, 0, 0.25);
}
.info-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}
.info-card h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.info-card p {
    font-size: 1rem;
    opacity: 0.9;
}
.info-btn {
    margin-top: 1.5rem;
    background: var(--okk-link);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: background 0.3s ease;
}
.info-btn:hover {
    background: #145c39;
}

.volleystars-section h2 {
    color: var(--okk-link);
}
.volleystars-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 50px 30px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
}
.volleystars-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.volleystars-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.volleystars-card p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ accordion (Vragen) */
#accordionVragen .accordion-button::after {
    display: none !important;
}
#accordionVragen .accordion-button {
    border-radius: 0.5rem !important;
    transition: background-color 0.2s ease-in-out;
}
#accordionVragen .accordion-button:not(.collapsed) {
    background-color: var(--okk-link) !important;
    color: #fff !important;
}
#accordionVragen .accordion-button:hover {
    background-color: #157347 !important;
    color: #fff !important;
}

/* =========================
   OKK: person cards (bestuur / commissies)
========================= */
.okk-section-band {
    background: var(--okk-dark);
    color: #fff;
    border-radius: 18px;
    padding: 18px 18px 8px;
    margin-bottom: 14px;
}
.okk-section-band .okk-band-title {
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
    font-size: 0.95rem;
}
.okk-section-band .okk-band-sub {
    opacity: 0.85;
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
}

/* Accentlijn links (kleur per sectie via inline style of modifier class) */
.okk-section-band {
    position: relative;
}
.okk-section-band::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 6px;
    border-radius: 6px;
    background: var(--okk-green);
}

/* Person card */
.okk-person-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.06);
    padding: 18px;
    height: 100%;
}

/* Avatar */
.okk-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(79, 176, 81, 0.35);
    background: rgba(39, 56, 51, 0.06);
}

/* Naam + badge */
.okk-person-name {
    font-weight: 800;
    margin-bottom: 2px;
}
.okk-person-role {
    font-size: 0.85rem;
}

/* Contact regels */
.okk-contact {
    font-size: 0.95rem;
}
.okk-contact .okk-contact-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}
.okk-contact .okk-contact-row i {
    color: var(--okk-green);
}
.okk-contact a {
    color: var(--okk-link);
    text-decoration: none;
}
.okk-contact a:hover {
    text-decoration: underline;
}

/* Compact badge die goed bij OKK past */
.badge-okk {
    background: rgba(79, 176, 81, 0.16);
    color: #0b1f17;
    border: 1px solid rgba(79, 176, 81, 0.35);
    font-weight: 700;
}

/* OKK: person cards (vertrouwenspersoon) */
.okk-person-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.06);
    color: #212529;
}

.okk-avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(39, 56, 51, 0.12);
}

/* ==========================================================================
   LEGACY / DUPLICATES (bewust onderaan gezet)
   Hier staan dubbele systemen zodat je later veilig kunt opruimen.
   ========================================================================== */

.news-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
}

.news-card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    display: block;
    background: #f1f3f5;
}
.news-meta {
    font-size: 0.85rem;
    color: #6c757d;
}
.news-card.small img {
    height: 180px;
}

.news-card__img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Hoogtes */
.news-card--big .news-card__img {
    height: 420px;
}
.news-card--small .news-card__img {
    height: 180px;
}

@media (max-width: 575.98px) {
    .news-card--big .news-card__img {
        height: 260px;
    }
    .news-card--small .news-card__img {
        height: 190px;
    }
}

/* Fade */
.news-card__fade {
    position: absolute;
    inset: auto 0 0 0;
    height: 70%; /* was 45% */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 35%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}
.news-card__title,
.news-card__sub {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.35);
}
.news-card--small .news-card__fade {
    height: 80%;
}

/* Content */
.news-card__content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
}

.news-card__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.25;
    color: var(--okk-green-prima); /* OKK groen */
    margin-bottom: 15px;
    text-decoration: none;
}

.news-card__sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--okk-bg-light);
    margin: 0 !important;
    opacity: 1; /* jij wil 'm niet faderig */
}

/* Link behavior: geen underline, geen "link-kleur" switch */
a.news-card,
a.news-card:hover,
a.news-card:focus {
    text-decoration: none !important;
    color: inherit; /* alleen voor de anchor zelf, niet voor title/sub */
}

/* Hover: title/sub expliciet gelijk houden */
a.news-card:hover .news-card__title,
a.news-card:focus .news-card__title {
    color: var(--okk-green-prima);
    text-decoration: none;
}

a.news-card:hover .news-card__sub,
a.news-card:focus .news-card__sub {
    color: var(--okk-bg-light);
}

@media (max-width: 575.98px) {
    .news-card__title {
        font-size: 1.15rem;
    }
    .news-card__sub {
        font-size: 0.95rem;
    }
}

@media (hover: hover) {
    .news-card__img {
        transition: transform 0.35s ease;
    }
    .news-card:hover .news-card__img {
        transform: scale(1.03);
    }
}

.volunteer-image {
    max-height: 450px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
}

.volunteer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ==========================================================================
   OKK • TILES SECTION
   ========================================================================== */
.okk-tiles {
    background: #fff; /* of var(--okk-bg-light) als je wil */
}

/* Tile basis */
.okk-tile {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background-image: var(--tile-img);
    background-size: cover;
    background-position: center;
    min-height: 240px;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}

/* Varianten */
.okk-tile--wide {
    min-height: 280px;
}
.okk-tile--tall {
    min-height: 520px;
}

/* Overlay (meer leesbaarheid) */
.okk-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.1) 100%);
}

/* Content */
.okk-tile__content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Kicker (groen label bovenaan) */
.okk-tile__kicker {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--okk-green-prima, var(--okk-green));
    font-size: 1.35rem;
    margin-bottom: 6px;
}

/* Titel */
.okk-tile__title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

/* Sub */
.okk-tile__sub {
    font-family: var(--font-body, 'Open Sans', sans-serif);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    max-width: 52ch;
}

/* Hover effect (optioneel, subtiel) */
@media (hover: hover) {
    .okk-tile {
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
    }
    .okk-tile:hover {
        transform: translateY(-3px);
        box-shadow: 0 1.2rem 2.2rem rgba(0, 0, 0, 0.14);
    }
}

/* Mobile tweaks */
@media (max-width: 575.98px) {
    .okk-tile {
        min-height: 220px;
    }
    .okk-tile--wide {
        min-height: 240px;
    }
    .okk-tile--tall {
        min-height: 320px;
    }
    .okk-tile__kicker {
        font-size: 1.15rem;
    }
    .okk-tile__title {
        font-size: 1.05rem;
    }
    .okk-tile__sub {
        font-size: 0.95rem;
    }
}

/* =========================
   OKK: diverse cms
========================= */
/* cards in team overzicht */
.team-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2; /* exact wat jij gebruikt */
    overflow: hidden;
    background: #f2f2f2;
    border-radius: 0.375rem 0.375rem 0 0;
}

.team-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* cropper preview */
.preview {
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 6px;
    background: #f2f2f2;
}
.preview img {
    max-width: 100%;
}

.cropper-wrapper {
    width: 100%;
    max-height: 70vh; /* voorkomt mega modals */
    overflow: hidden;
}

.was-validated .btn-group:has(input:invalid) + .invalid-feedback {
    display: block;
}

.admin-content-table .content-row {
    cursor: pointer;
}

.admin-content-table .content-row:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.card.border-success {
    box-shadow:
        0 0 0 1px rgba(25, 135, 84, 0.25),
        0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

.album-card {
    overflow: hidden;
}

.album-cover {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f3f3f3;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.album-cover:empty::before {
    content: 'Geen coverfoto';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #888;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #f5f5f5, #e9ecef);
}
/* ==========================================================================
   OKK • NEWS PAGES
   ========================================================================== */

.hover-lift {
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-body {
    font-size: 1.1rem;
    line-height: 1.75;
}
.news-body h2,
.news-body h3 {
    margin-top: 1.75rem;
}

.hover-lift {
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}
.hover-lift:hover {
    transform: translateY(-2px);
}

.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Share icons inline */
.share-icons a,
.share-icons button {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --- Agenda card (tabs) --- */
.agenda-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* linkje naast titel (desktop) */
.agenda-link-top {
    font-weight: 600;
    text-decoration: none;
    color: #2f7d32;
}
.agenda-link-top:hover {
    text-decoration: underline;
}

/* tabs */
.agenda-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}
.agenda-tab {
    flex: 0 0 auto;
    border: 1px solid rgba(47, 125, 50, 0.35);
    background: #fff;
    color: #1f2937;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition:
        transform 0.08s ease,
        background 0.15s ease,
        border-color 0.15s ease;
}
.agenda-tab:hover {
    transform: translateY(-1px);
}
.agenda-tab.is-active {
    background: rgba(47, 125, 50, 0.12);
    border-color: rgba(47, 125, 50, 0.65);
}

.agenda-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 18px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(47, 125, 50, 0.18);
    color: #1f2937;
    font-size: 12px;
}

/* panel header/summary */
.agenda-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}
.agenda-dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: #2f7d32;
    display: inline-block;
}

/* list + scroll (houdt card compact) */
.agenda-list {
    display: grid;
    gap: 10px;
    max-height: 360px; /* tweak: houdt agenda vergelijkbaar met je huidige hoogte */
    overflow: auto;
    padding-right: 4px; /* ruimte voor scrollbar */
}
@media (max-width: 991.98px) {
    .agenda-list {
        max-height: 320px;
    }
}

/* item */
.agenda-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.agenda-item__time {
    font-weight: 800;
    color: #111827;
    font-variant-numeric: tabular-nums;
}
.agenda-item__match {
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.agenda-item__meta {
    color: #6b7280;
    font-size: 13px;
    margin-top: 2px;
}

/* badges */
.badge {
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.badge-home {
    background: rgba(47, 125, 50, 0.14);
    color: #1f5e24;
    border: 1px solid rgba(47, 125, 50, 0.35);
}
.badge-away {
    background: rgba(107, 114, 128, 0.12);
    color: #374151;
    border: 1px solid rgba(107, 114, 128, 0.25);
}

/* empty */
.agenda-empty {
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px dashed rgba(0, 0, 0, 0.14);
    color: #6b7280;
}

/* footer */
.agenda-footer {
    display: flex;
    justify-content: flex-start;
}
.agenda-cta {
    font-weight: 800;
    color: #2f7d32;
    text-decoration: none;
}
.agenda-cta:hover {
    text-decoration: underline;
}

.agenda-cta-mobile {
    font-weight: 800;
    color: #2f7d32;
    text-decoration: none;
}
.agenda-cta-mobile:hover {
    text-decoration: underline;
}

/* =========================
   Wedstrijdcentrum (WC)
   ========================= */

/* WC tokens verplaatst naar boven in :root */

/* Utilities used in WC */
.shadow-soft {
    box-shadow: var(--wc-shadow);
}
.rounded-xxl {
    border-radius: var(--wc-radius);
}

/* =========================
   Legacy “match cards”
   (used in highlight / older partials)
   ========================= */

.match {
    border-left: 6px solid #e9ecef;
    border-radius: var(--wc-radius-sm);
    background: #fff;
}

.match.win {
    border-left-color: var(--okk-link);
}
.match.loss {
    border-left-color: #dc3545;
}
.match.draw {
    border-left-color: #0dcaf0;
}
.match.upcoming {
    border-left-color: #0d6efd;
}

.match .score {
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.meta {
    color: var(--wc-muted);
    font-size: 0.9rem;
}

.wc-arbitrage {
    margin-top: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.95rem;
}

.wc-arb-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.wc-arb-label {
    font-weight: 600;
    color: #555;
}

.wc-arb-name {
    background: #eef4ff;
    color: #1f5fd3;
    padding: 0.1rem 0.45rem;
    border-radius: 0.35rem;
    font-weight: 500;
}

/* =========================
   Ticker (hero)
   ========================= */

.ticker {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
}
.ticker::-webkit-scrollbar {
    height: 8px;
}
.ticker::-webkit-scrollbar-thumb {
    background: #d6d9dd;
    border-radius: 999px;
}
.ticker-card {
    min-width: 280px;
    scroll-snap-align: start;
}

/* =========================
   Stand snapshots
   ========================= */

.stand-snapshot {
    border-left: 6px solid #e9ecef;
    border-radius: var(--wc-radius-sm);
    background: #fff;
}

.fav-btn {
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.fav-btn.active {
    border-color: rgba(13, 110, 253, 0.35);
}
.fav-star {
    width: 1.25rem;
    display: inline-block;
    text-align: center;
}

/* Offcanvas standings sheet */
.offcanvas.offcanvas-bottom.wc-stand-sheet {
    --bs-offcanvas-height: 70vh;
    max-height: 70vh;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.wc-stand-sheet .offcanvas-body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wc-stand-sheet .wc-table-scroll {
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.wc-grab {
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
}

/* =========================
   WC list rows (Agenda & Uitslagen) — Nevobo-ish
   MOBILE FIRST (centered)
   ========================= */

.wc-row {
    background: #fff;
    border-radius: var(--wc-radius);
    padding: 1rem;
}

.wc-row + .wc-row {
    margin-top: 0.75rem;
}

/* date line: centered on mobile */
.wc-date {
    font-size: 0.8rem;
    color: var(--wc-muted);
    text-align: center;
    margin-bottom: 0.4rem;
}

/* 3-col grid: home | mid | away */
.wc-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
}

/* teams */
.wc-team {
    display: flex;
    align-items: center;
    min-width: 0;
}

.wc-team.home {
    justify-content: flex-end;
    text-align: right;
}

.wc-team.away {
    justify-content: flex-start;
    text-align: left;
}

.wc-team .name {
    font-weight: 700;
    line-height: 1.2;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* mid column */
.wc-mid {
    text-align: center;
}

.wc-mid .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-weight: 800;
    line-height: 1;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgb(13, 110, 253);
    color: rgba(255, 255, 255, 0.9);
}

.wc-mid .sub {
    font-size: 0.78rem;
    color: var(--wc-muted);
    margin-top: 0.3rem;
}

/* result colors */
.wc-mid .pill.win {
    color: var(--okk-link);
    background: rgba(25, 135, 84, 0.12);
    border-color: rgba(25, 135, 84, 0.25);
}
.wc-mid .pill.loss {
    background: rgba(220, 53, 69, 0.12);
    border-color: rgba(220, 53, 69, 0.25);
    color: #dc3545;
}
.wc-mid .pill.draw {
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.25);
    color: #b58100;
}

/* meta line under grid: centered on mobile */
.wc-meta {
    margin-top: 0.6rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--wc-muted);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

/* Winner / loser emphasis */
.wc-team.winner .name {
    font-weight: 800;
}
.wc-team.loser .name {
    opacity: 0.85;
}

/* Highlight own team via link in match_html */
.wc-team .name a[href^='/team/'] {
    color: var(--okk-green);
    font-weight: 800;
    text-decoration: none;
}
.wc-team .name a[href^='/team/']:hover {
    text-decoration: underline;
}

/* =========================
   Active filters bar (chips)
   ========================= */

#wcActiveFilters {
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
}

.wc-filterbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.wc-chip {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.85rem;
    line-height: 1;
}

.wc-chip strong {
    font-weight: 700;
}
.wc-chip .bi {
    opacity: 0.8;
}

.wc-chip-reset {
    margin-left: auto;
}
@media (max-width: 575.98px) {
    .wc-chip-reset {
        margin-left: 0;
    }
}

.wc-program-actions,
.wc-results-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.wc-copy-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
}

.wc-copy-link {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.wc-copy-link:hover,
.wc-copy-link:focus {
    background: rgba(25, 135, 84, 0.08);
    text-decoration: none;
}

@media (max-width: 575.98px) {
    .wc-copy-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .wc-copy-link {
        justify-content: center;
        min-width: 220px;
    }
}

/* =========================
   Desktop refinements
   ========================= */

@media (min-width: 992px) {
    .wc-row {
        padding: 1.05rem 1.35rem;
    }

    /* More Nevobo-ish spacing and less “super wide” feel */
    .wc-grid {
        grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
        gap: 0.75rem;
    }

    .wc-date {
        text-align: left;
        margin-bottom: 0.35rem;
        font-size: 0.85rem;
    }

    .wc-meta {
        justify-content: flex-start;
        text-align: left;
        font-size: 0.85rem;
        margin-top: 0.55rem;
    }

    .wc-mid .pill {
        min-width: 72px;
    }
}

/* =========================
   WC Players
   ========================= */

.wc-player-number {
    min-width: 48px;
    height: 48px;
    border-radius: 0.8rem;
    background: var(--okk-green);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-player-pos {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.15rem;
    letter-spacing: 0.02em;
}

.wc-row:hover {
    transform: translateY(-2px);
    transition: 0.15s ease;
}

.table-hover-highlight td {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
}

.standen thead tr th {
    background-color: var(--okk-bg-light);
}
/* =========================
   Masterplan
   ========================= */

.hero-masterplan {
    position: relative;
    min-height: 420px;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-radius: 1.25rem;
}
.hero-masterplan .bg {
    position: absolute;
    inset: 0;
    background: url('/assets/img/pages/2026/02/20260205_143134_2fb2da/hero_1920w.jpg') center/cover no-repeat;
    transform: scale(1.02);
}
.hero-masterplan .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31, 47, 44, 0.92), rgba(31, 47, 44, 0.55));
}
.hero-masterplan .content {
    position: relative;
    z-index: 2;
}
.kicker {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.pill-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 1.25rem;
    background: #fff;
    height: 100%;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}
.pill-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
    border-color: rgba(47, 107, 87, 0.35);
}
.pill-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.pill-nr {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--okk-soft);
    color: var(--okk-link);
    font-weight: 800;
    letter-spacing: 0.02em;
}
.pill-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(31, 47, 44, 0.08);
    color: var(--okk-dark);
    font-size: 1.15rem;
}
.pill-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--okk-dark);
    margin: 0 0 0.35rem 0;
}
.pill-text {
    color: rgba(31, 47, 44, 0.78);
    margin: 0;
}

.badge-cat-a {
    background: rgba(47, 107, 87, 0.14);
    color: #1f2f2c;
    border: 1px solid rgba(47, 107, 87, 0.25);
}
.badge-cat-b {
    background: rgba(31, 47, 44, 0.1);
    color: #1f2f2c;
    border: 1px solid rgba(31, 47, 44, 0.18);
}
.badge-cat-c {
    background: rgba(15, 90, 180, 0.1);
    color: #0f3c78;
    border: 1px solid rgba(15, 90, 180, 0.18);
}

.soft-panel {
    background: rgba(31, 47, 44, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
}

.hero-masterplan .badge-hero {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   spelregels download
   ========================================================================== */

/* downloads row */
#spelregels .okk-download-row {
    min-width: 0;
}

#spelregels .okk-download-row > .flex-grow-1 {
    min-width: 0;
    flex: 1 1 0;
}

#spelregels .okk-download-row .fw-bold {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

#spelregels .okk-download-row small,
#spelregels .okk-download-row .text-muted {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

#spelregels .okk-download-row .btn {
    flex-shrink: 0;
}

/* mobiel: layout herschikken */
@media (max-width: 575.98px) {
    #spelregels .okk-download-row {
        display: grid !important;
        grid-template-columns: 28px minmax(0, 1fr);
        grid-template-areas:
            'icon content'
            'button button';
        align-items: start;
        column-gap: 12px;
        row-gap: 12px;
    }

    #spelregels .okk-download-row > .fs-4,
    #spelregels .okk-download-row > .lh-1 {
        grid-area: icon;
    }

    #spelregels .okk-download-row > .flex-grow-1 {
        grid-area: content;
        width: 100%;
        min-width: 0;
    }

    #spelregels .okk-download-row > .btn {
        grid-area: button;
        width: 100%;
        justify-self: stretch;
    }

    /* meta netjes onder elkaar of wrap */
    #spelregels .okk-download-row .d-flex.align-items-center.gap-2.flex-wrap.mt-1 {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.4rem 0.5rem !important;
    }
}

/* ==========================================================================
   Zaal informatie /route
   ========================================================================== */

.zaal-hero {
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.zaal-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: saturate(0.9) contrast(0.9);
}

.zaal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.zaal-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.65);
}

.zaal-hero .btn-outline-light:hover {
    color: #000;
}

@media (max-width: 991.98px) {
    .zaal-hero {
        min-height: auto;
    }

    .zaal-hero .display-5 {
        font-size: 2.25rem;
    }
}

/* =========================
   GALLERY / ALBUMS
   ========================= */

.gallery-page-header {
    margin-bottom: 2rem;
}

.gallery-page-intro {
    max-width: 720px;
    color: #5f6b7a;
    font-size: 1rem;
    line-height: 1.7;
}

.gallery-slideshow-btn {
    border-radius: 999px;
    padding: 0.7rem 1.15rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(19, 82, 46, 0.14);
}

.gallery-back-btn {
    border-radius: 999px;
    padding: 0.7rem 1.15rem;
    font-weight: 600;
}

/* =========================
   ALBUM CARD
   ========================= */

.gallery-album-card {
    height: 100%;
}

.gallery-album-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 1.15rem;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.gallery-album-card__link:hover,
.gallery-album-card__link:focus {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.12);
    color: inherit;
    text-decoration: none;
}

.gallery-album-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #eef4ef 0%, #dde9df 100%);
}

.gallery-album-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-album-card__link:hover .gallery-album-card__image,
.gallery-album-card__link:focus .gallery-album-card__image {
    transform: scale(1.035);
}

.gallery-album-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 220px;
    color: #2f7d4a;
    font-size: 2.5rem;
    background:
        radial-gradient(circle at top right, rgba(47, 125, 74, 0.12), transparent 35%),
        linear-gradient(135deg, #edf6ef 0%, #dbeadf 100%);
}

.gallery-album-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(12, 18, 24, 0.6), rgba(12, 18, 24, 0));
    pointer-events: none;
}

.gallery-album-card__count {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    color: #1f2a37;
    font-size: 0.86rem;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.gallery-album-card__body {
    padding: 1.2rem 1.2rem 1.25rem;
}

.gallery-album-card__title {
    margin: 0 0 0.55rem;
    color: #18212b;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.gallery-album-card__text {
    color: #657182;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* =========================
   DETAIL HEADER
   ========================= */

.gallery-detail-header__inner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbf9 0%, #f1f7f3 100%);
    border-radius: 1.4rem;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.08);
}

.gallery-detail-header__hero {
    position: relative;
    aspect-ratio: 21 / 7;
    overflow: hidden;
    background: #e8efe9;
}

.gallery-detail-header__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 18, 24, 0.08), rgba(12, 18, 24, 0.22));
}

.gallery-detail-header__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-detail-header__content {
    padding: 1.5rem;
}

.gallery-detail-header__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    background: rgba(47, 125, 74, 0.1);
    color: #25643b;
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-detail-header__description {
    max-width: 860px;
    color: #5f6b7a;
    font-size: 1rem;
    line-height: 1.8;
}

/* =========================
   PHOTO GRID
   ========================= */

.gallery-photo-tile {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-photo-tile__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    background: #eef2f4;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.gallery-photo-tile:hover .gallery-photo-tile__media,
.gallery-photo-tile:focus .gallery-photo-tile__media {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.12);
}

.gallery-photo-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-photo-tile:hover .gallery-photo-tile__image,
.gallery-photo-tile:focus .gallery-photo-tile__image {
    transform: scale(1.03);
}

/* =========================
   EMPTY STATE
   ========================= */

.gallery-empty-state {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #fafcfb 0%, #f3f8f4 100%);
    border-radius: 1.25rem;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.gallery-empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(47, 125, 74, 0.1);
    color: #2f7d4a;
    font-size: 1.8rem;
}

.gallery-empty-state__title {
    margin-bottom: 0.5rem;
    color: #18212b;
    font-size: 1.2rem;
    font-weight: 700;
}

.gallery-empty-state__text {
    color: #657182;
    font-size: 0.97rem;
    line-height: 1.7;
}

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

@media (min-width: 992px) {
    .gallery-detail-header__content {
        padding: 2rem 2.2rem 2.15rem;
    }

    .gallery-album-card__body {
        padding: 1.3rem 1.3rem 1.35rem;
    }
}

@media (max-width: 767.98px) {
    .gallery-page-intro,
    .gallery-detail-header__description {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .gallery-album-card__title {
        font-size: 1rem;
    }

    .gallery-album-card__body {
        padding: 1rem 1rem 1.1rem;
    }

    .gallery-detail-header__content {
        padding: 1.2rem;
    }
}
