/* -------------------------------
   Fonts
-------------------------------- */

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


/* -------------------------------
   Root kleuren / basiswaarden
-------------------------------- */

:root {
    --color-white: #ffffff;
    --color-blue: #0259A8;
    --color-light-blue: #5DB7FF;
    --color-dark: #333333;
    --color-silver: #C0C0C0;
    --color-green: #20BA23;

    --color-text: #333333;
    --color-heading: #0259A8;
    --color-background: #ffffff;

    --site-gutter: 22px;
    --hero-gutter: clamp(28px, 6vw, 110px);
}

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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    background: var(--color-background);
    color: var(--color-text);
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}


/* -------------------------------
   Topheader
-------------------------------- */

.topheader {
    width: 100%;
    background: var(--color-dark);
}

.topheader-nav {
    width: 100%;
    min-height: 42px;
    padding: 6px var(--site-gutter);

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.topheader-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;

    transition:
        color 220ms ease,
        transform 220ms ease,
        opacity 220ms ease;
}

.topheader-link-left {
    justify-self: start;
}

.topheader-link-center {
    justify-self: center;
}

.topheader-link-right {
    justify-self: end;
}

.topheader-icon-wrap {
    width: 24px;
    height: 24px;
    border-radius: 999px;

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

    background: rgba(255, 255, 255, 0.08);

    transition:
        background 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

.topheader-icon {
    display: block;
    width: 15px;
    height: 15px;
    object-fit: contain;

    transition:
        transform 220ms ease,
        filter 220ms ease,
        opacity 220ms ease;
}

.topheader-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.topheader-link:hover .topheader-icon-wrap {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
    transform: scale(1.06);
}

.topheader-link:hover .topheader-icon {
    transform: scale(1.08);
}

.topheader-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
    border-radius: 4px;
}


/* -------------------------------
   Mobiel
-------------------------------- */

@media (max-width: 640px) {
    :root {
        --site-gutter: 12px;
    }

    .topheader-nav {
        min-height: 46px;
        padding: 7px 12px;
    }

    .topheader-link {
        gap: 0;
        font-size: 10px;
        letter-spacing: 0;
    }

    .topheader-icon-wrap {
        width: 22px;
        height: 22px;
    }

    .topheader-icon {
        width: 14px;
        height: 14px;
    }
}

/* -------------------------------
   Main navigation
-------------------------------- */

.mainnav {
    position: relative;
    z-index: 10;
    width: 100%;
    background: var(--color-white);
}

.mainnav-inner {
    min-height: 82px;
    padding: 0 var(--site-gutter);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


/* -------------------------------
   Hamburger
-------------------------------- */

.hamburger {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;

    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    transition:
        background 220ms ease,
        transform 220ms ease;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--color-blue);

    transition:
        width 220ms ease,
        transform 220ms ease,
        background 220ms ease;
}

.hamburger span:nth-child(2) {
    width: 18px;
}

.hamburger span:nth-child(3) {
    width: 23px;
}

.hamburger:hover {
    background: rgba(2, 89, 168, 0.08);
    transform: rotate(-4deg) scale(1.04);
}

.hamburger:hover span:nth-child(1) {
    width: 18px;
    transform: translateX(-3px);
}

.hamburger:hover span:nth-child(2) {
    width: 27px;
}

.hamburger:hover span:nth-child(3) {
    width: 18px;
    transform: translateX(3px);
}

.hamburger:focus-visible {
    outline: 2px solid var(--color-blue);
    outline-offset: 4px;
}


/* -------------------------------
   Lid worden button
-------------------------------- */

.mainnav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 22px;
    border-radius: 999px;

    background: var(--color-green);
    color: var(--color-white);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;

    box-shadow: 0 8px 18px rgba(32, 186, 35, 0.22);

    transition:
        background 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

.mainnav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(32, 186, 35, 0.28);
}

.mainnav-button:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: 4px;
}


/* -------------------------------
   Menu overlay
-------------------------------- */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;

    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;

    transition:
        opacity 280ms ease,
        visibility 280ms ease;
}

.menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}


/* -------------------------------
   Uitklapbaar menu
-------------------------------- */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;

    width: 75vw;
    max-width: 420px;
    height: 100vh;
    padding: 34px var(--site-gutter);

    background: var(--color-dark);
    color: var(--color-white);

    transform: translateX(-100%);
    transition: transform 320ms cubic-bezier(.7, 0, .2, 1);

    display: flex;
    flex-direction: column;
}

.mobile-menu.is-active {
    transform: translateX(0);
}

.mobile-menu-close {
    align-self: flex-start;

    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);

    font-size: 34px;
    line-height: 1;
    cursor: pointer;

    transition:
        background 220ms ease,
        transform 220ms ease;
}

.mobile-menu-close:hover {
    background: rgba(93, 183, 255, 0.18);
    color: var(--color-light-blue);
    transform: rotate(8deg) scale(1.05);
}

.mobile-menu-list {
    list-style: none;
    margin: 48px 0 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-list a {
    display: block;
    padding: 13px 0;

    color: var(--color-white);
    text-decoration: none;

    font-size: clamp(24px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.1;

    transition:
        color 220ms ease,
        transform 220ms ease;
}

.mobile-menu-list a:hover {
    color: var(--color-light-blue);
    transform: translateX(8px);
}

.mobile-menu-list a:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 4px;
    border-radius: 4px;
}

.mobile-menu-list li:last-child a {
    color: var(--color-green);
}

.mobile-menu-list li:last-child a:hover {
    color: var(--color-light-blue);
}


/* -------------------------------
   Mobiel
-------------------------------- */

@media (max-width: 640px) {
    .mainnav-inner {
        min-height: 72px;
    }

    .mobile-menu {
        width: 82vw;
        padding-top: 24px;
    }

    .mainnav-button {
        min-height: 30px;
        padding: 0 9px;
        font-size: 10px;
    }
}

/* -------------------------------
   Hero
-------------------------------- */

.hero {
    position: relative;
    z-index: 15;
    width: 100%;
    min-height: 560px;

    background: var(--color-blue);
    color: var(--color-white);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 560px;
    padding: 25px var(--hero-gutter) 25px;

    display: grid;
    grid-template-columns: minmax(360px, 48%) minmax(420px, 52%);
    align-items: center;
    gap: 30px;
}


/* -------------------------------
   Hero achtergrond kruisjes
-------------------------------- */

.hero-crosses {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    height: 42%;

    background-image:
        linear-gradient(
            to bottom,
            var(--color-blue) 0%,
            rgba(2, 89, 168, 0.88) 28%,
            rgba(2, 89, 168, 0.35) 64%,
            rgba(2, 89, 168, 0) 100%
        ),
        url("../images/bg_crosses.png");

    background-repeat: repeat;
    background-size: auto, 32px 32px;
    background-position: top left, top left;

    pointer-events: none;
}


/* -------------------------------
   Hero logo
-------------------------------- */

.hero-logo {
    position: absolute;
    top: -65px;
    left: 50%;
    z-index: 30;

    width: 270px;
    height: auto;

    transform: translateX(-50%);
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.12));
}


/* -------------------------------
   Hero content
-------------------------------- */

.hero-content {
    max-width: 560px;
    padding-top: 125px;
    padding-bottom: 125px;
}

.hero-content h1 {
    margin: 0;

    color: var(--color-white);

    font-size: clamp(38px, 5.5vw, 70px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-content p {
    max-width: 480px;
    margin: 20px 0 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 16px;
    line-height: 1.65;
    font-weight: 700;
}


/* -------------------------------
   Hero foto's
-------------------------------- */

.hero-visual {
    position: relative;
    height: 100%;
}

.hero-photo {
    position: absolute;
    overflow: hidden;

    border: 16px solid var(--color-white);
    border-radius: 999px;
    background: var(--color-white);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

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

.hero-photo-large {
    top: 0;
    left: 0;
    height: clamp(80%, 90%, 100%);
    width: auto;
    aspect-ratio: 1 / 1;
}

.hero-photo-medium {
    right: 0;
    bottom: 10%;
    width: 45%;
    height: auto;
}

.hero-photo-small {
    left: 35%;
    bottom: 0;
    width: 30%;
    height: auto;
    border-width: 12px;
}


/* -------------------------------
   Hero responsive
-------------------------------- */

@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 46% 54%;
    }

    .hero-logo {
        width: 205px;
        top: -65px;
    }

    .hero-photo-large {
        top: 0;
        left: 0;
        width: clamp(80%, 90%, 100%);
        height: auto;
        aspect-ratio: 1 / 1;
    }

}

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

    .hero-inner {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 55px;
        padding-left: clamp(24px, 6vw, 48px);
        padding-right: clamp(24px, 6vw, 48px);

        grid-template-columns: 1fr;
        gap: 0px;
    }

    .hero-logo {
        width: 205px;
        top: -65px;
    }

    .hero-content {
        max-width: 560px;
        padding-top: 50px;
        padding-bottom: 25px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 9vw, 58px);
    }

    .hero-visual {
        min-height: 390px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
    }

}

@media (max-width: 640px) {
    .hero-inner {
        padding-top: 95px;
        padding-bottom: 42px;
    }

    .hero-logo {
        width: 180px;
        top: -52px;
    }
    
    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-visual {
        min-height: 300px;
        max-width: 390px;
    }

    .hero-photo {
        border-width: 10px;
    }

}

@media (max-width: 430px) {
    .hero-visual {
        min-height: 260px;
    }

}

/* -------------------------------
   Page hero - gewone pagina's
-------------------------------- */

.page-hero {
    position: relative;
    z-index: 15;

    width: 100%;
    height: 260px;

    background: var(--color-blue);
    overflow: visible;
}

.page-hero-crosses {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    height: 65%;

    background-image:
        linear-gradient(
            to bottom,
            var(--color-blue) 0%,
            rgba(2, 89, 168, 0.88) 28%,
            rgba(2, 89, 168, 0.35) 64%,
            rgba(2, 89, 168, 0) 100%
        ),
        url("../images/bg_crosses.png");

    background-repeat: repeat;
    background-size: auto, 32px 32px;
    background-position: top left, top left;

    pointer-events: none;
}

.page-hero-logo {
    position: absolute;
    top: -95px;
    left: 50%;
    z-index: 30;

    width: 270px;
    height: auto;

    transform: translateX(-50%);
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.12));
}

@media (max-width: 1100px) {
    .page-hero {
        height: 235px;
    }

    .page-hero-logo {
        width: 235px;
        top: -82px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        height: 190px;
    }

    .page-hero-logo {
        width: 180px;
        top: -62px;
    }
}

/* -------------------------------
   Club intro / snelle links
-------------------------------- */

.club-intro-section {
    width: 100%;
    padding: 54px var(--site-gutter);
    background: var(--color-white);
}

.club-intro-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px clamp(28px, 7vw, 150px);

    background: #F2F5F7;
}


/* -------------------------------
   Bovenste introblok
-------------------------------- */

.club-intro-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(32px, 5vw, 70px);
}

.club-intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.club-intro-image {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 3 / 4;
    background: var(--color-silver);
}

.club-intro-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-intro-content {
    max-width: 430px;
}

.club-intro-content h2 {
    margin: 0;

    color: var(--color-blue);

    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.club-intro-content p {
    margin: 24px 0 0;

    color: var(--color-blue);

    font-size: 17px;
    line-height: 1.65;
    font-weight: 700;
}

.club-intro-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--color-blue);
    text-decoration: none;
    font-weight: 800;
}

.club-intro-content a::after {
    content: "→";
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    transition: transform 220ms ease;
}

.club-intro-content a:hover::after {
    transform: translateX(5px);
}


/* -------------------------------
   Divider
-------------------------------- */

.club-intro-divider {
    width: 100%;
    height: 2px;
    margin: 70px 0 58px;

    background: rgba(2, 89, 168, 0.55);
}


/* -------------------------------
   Quick links
-------------------------------- */

.quick-links {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 44px;
}

.quick-link-card {
    position: relative;
    overflow: hidden;

    min-height: 96px;
    border-radius: 18px;

    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;

    background: #D8EAF8;
    color: var(--color-blue);
    text-decoration: none;

    box-shadow: 0 10px 24px rgba(2, 89, 168, 0.08);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.quick-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(2, 89, 168, 0.16);
    background: #C9E2F5;
}

.quick-link-icon {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-blue);
}

.quick-link-icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: -24px;
    width: 48px;
    height: 100%;

    background: var(--color-blue);
    transform: skewX(-14deg);
    transform-origin: top right;
}

.quick-link-icon img {
    position: relative;
    z-index: 2;

    width: 46px;
    height: 46px;
    object-fit: contain;

    filter: brightness(0) invert(1);
}

.quick-link-text {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 2px;

    padding: 0 24px 0 32px;
}

.quick-link-text strong {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.quick-link-text small {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}


/* -------------------------------
   Quick links responsive
-------------------------------- */

@media (max-width: 980px) {
    .club-intro-inner {
        padding: 54px clamp(22px, 5vw, 60px);
    }

    .club-intro-top {
        grid-template-columns: 1fr;
    }

    .club-intro-content {
        max-width: 680px;
    }

    .club-intro-divider {
        margin: 52px 0 44px;
    }
}

@media (max-width: 760px) {
    .quick-links {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .quick-link-card {
        max-width: 460px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .club-intro-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .club-intro-inner {
        padding: 34px 18px;
    }

    .club-intro-images {
        gap: 14px;
    }

    .club-intro-image {
        border-radius: 14px;
    }

    .club-intro-content p {
        font-size: 15px;
    }

    .quick-link-card {
        min-height: 82px;
        grid-template-columns: 82px 1fr;
        border-radius: 15px;
    }

    .quick-link-text {
        padding-left: 24px;
        padding-right: 16px;
    }

    .quick-link-icon img {
        width: 36px;
        height: 36px;
    }

    .quick-link-icon::after {
        right: -20px;
        width: 40px;
    }

    .quick-link-text strong {
        font-size: 18px;
    }

    .quick-link-text small {
        font-size: 12px;
    }
}

/* -------------------------------
   Gallery section
-------------------------------- */

.gallery-section {
    width: 100%;
    background: var(--color-blue);
    color: var(--color-white);
}

.gallery-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px var(--site-gutter) 80px;
}

.gallery-title {
    margin: 0 0 52px;

    color: var(--color-white);

    text-align: center;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.gallery-title span {
    color: var(--color-silver);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 56px);
}

.gallery-image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, 0.12);
}

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

    transition:
        transform 420ms ease,
        filter 420ms ease;
}

.gallery-image:hover img {
    transform: scale(1.045);
    filter: brightness(1.05);
}


/* -------------------------------
   Gallery responsive
-------------------------------- */

@media (max-width: 820px) {
    .gallery-inner {
        padding-top: 56px;
        padding-bottom: 62px;
    }

    .gallery-title {
        margin-bottom: 36px;
    }

    .gallery-grid {
        gap: 18px;
    }
}

@media (max-width: 680px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .gallery-image {
        aspect-ratio: 16 / 9;
    }
}

/* -------------------------------
   Sponsors
-------------------------------- */

.sponsors-section {
    width: 100%;
    padding: 68px var(--site-gutter);
    background: var(--color-white);
    overflow: hidden;
}

.sponsors-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sponsors-marquee::before,
.sponsors-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;

    width: clamp(40px, 8vw, 120px);
    pointer-events: none;
}

.sponsors-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), rgba(255,255,255,0));
}

.sponsors-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), rgba(255,255,255,0));
}

.sponsors-track {
    display: flex;
    align-items: center;
    gap: 34px;

    width: max-content;

    animation: sponsorsTicker 34s linear infinite;
}

.sponsors-marquee:hover .sponsors-track {
    animation-play-state: paused;
}

.sponsor-card {
    flex: 0 0 auto;

    width: clamp(240px, 28vw, 420px);
    aspect-ratio: 2.6 / 1;

    padding: 18px 28px;
    border: 2px solid rgba(2, 89, 168, 0.55);

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-white);
    text-decoration: none;

    transition:
        border-color 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

.sponsor-card:hover {
    border-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(2, 89, 168, 0.10);
}

.sponsor-card img {
    display: block;
    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;
}

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

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


/* -------------------------------
   Sponsors responsive
-------------------------------- */

@media (max-width: 760px) {
    .sponsors-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .sponsors-track {
        gap: 20px;
        animation-duration: 28s;
    }

    .sponsor-card {
        width: 250px;
        padding: 14px 22px;
    }

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

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

/* -------------------------------
   Footer
-------------------------------- */

.site-footer {
    width: 100%;
    background: #F2F5F7;
    color: var(--color-blue);
}

.site-footer-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px var(--site-gutter) 72px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(48px, 8vw, 120px);
}

.site-footer h2 {
    margin: 0 0 34px;

    color: var(--color-blue);

    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.footer-contact {
    max-width: 430px;
}

.footer-address-block {
    margin: 0 0 30px;

    display: flex;
    flex-direction: column;

    color: rgba(2, 89, 168, 0.78);

    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.footer-address-block strong {
    color: var(--color-blue);
    font-weight: 800;
}

.footer-address-block a {
    color: rgba(2, 89, 168, 0.78);
    text-decoration: none;
    font-weight: 700;

    transition:
        color 220ms ease,
        text-decoration-color 220ms ease;
}

.footer-address-block a:hover {
    color: var(--color-blue);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}


/* -------------------------------
   Footer rechterkolom
-------------------------------- */

.footer-side {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.footer-knzb-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;

    text-decoration: none;
}

.footer-knzb-logo img {
    display: block;
    width: min(210px, 52vw);
    height: auto;
}

.footer-socials h2 {
    margin-bottom: 28px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 74px;
    height: 74px;
    border-radius: 999px;

    text-decoration: none;

    transition:
        transform 220ms ease,
        opacity 220ms ease,
        filter 220ms ease;
}

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.04);
    opacity: 0.86;
}

.footer-social-link img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* -------------------------------
   Footer onderregel
-------------------------------- */

.site-footer-bottom {
    width: 100%;
}

.site-footer-bottom-inner {
    width: calc(100% - (var(--site-gutter) * 2));
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px var(--site-gutter) 20px;

    border-top: 1px solid rgba(2, 89, 168, 0.16);

    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 14px;

    color: rgba(2, 89, 168, 0.72);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.footer-copyright {
    display: inline-flex;
    align-items: center;
}

.footer-legal-nav {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-legal-nav::before {
    content: "-";
    margin: 0 14px 0 0;
    color: rgba(2, 89, 168, 0.45);
}

.footer-legal-nav a {
    display: inline-flex;
    align-items: center;

    color: rgba(2, 89, 168, 0.72);
    text-decoration: none;

    transition:
        color 220ms ease,
        text-decoration-color 220ms ease;
}

.footer-legal-nav a:hover {
    color: var(--color-blue);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.footer-legal-nav a + a::before {
    content: "-";
    margin: 0 14px;
    color: rgba(2, 89, 168, 0.45);
}

/* -------------------------------
   Footer responsive
-------------------------------- */

@media (max-width: 820px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 48px;
        padding-bottom: 54px;
    }

    .footer-side {
        gap: 42px;
    }
}

@media (max-width: 560px) {
    .site-footer-inner {
        padding-top: 40px;
        padding-bottom: 44px;
        gap: 0;
    }

    .site-footer h2 {
        margin-bottom: 24px;
    }

    .footer-address-block {
        margin-bottom: 24px;
        font-size: 15px;
    }

    .footer-social-links {
        gap: 16px;
    }

    .footer-social-link {
        width: 58px;
        height: 58px;
    }

    .footer-knzb-logo img {
        width: 170px;
    }

    .site-footer-bottom-inner {
        padding-top: 18px;
        padding-bottom: 22px;
        font-size: 13px;
        justify-content: flex-start;
    }

    .footer-legal-nav::before {
        display: none;
    }

    .footer-legal-nav {
        width: 100%;
    }
}
/* -------------------------------
   Content page
-------------------------------- */

.content-page {
    position: relative;
    z-index: 5;

    background: var(--color-white);
    color: var(--color-dark);

    padding: clamp(58px, 7vw, 96px) var(--site-gutter) clamp(72px, 8vw, 120px);
}

.content-page-inner {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.content-page h1 {
    max-width: 760px;
    margin: 0;

    color: var(--color-blue);

    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.content-subtitle {
    max-width: 720px;
    margin: 18px 0 0;

    color: var(--color-dark);

    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.content-subtitle p {
    margin: 0;
}

.content-text {
    max-width: 720px;
    margin-topppp: clamp(34px, 4vw, 52px);
    margin-top: 1.45em;

    color: rgba(51, 51, 51, 0.9);

    font-size: clamp(17px, 1.25vw, 19px);
    line-height: 1.82;
    font-weight: 400;
}

.content-text > *:first-child {
    margin-top: 0;
}

.content-text > *:last-child {
    margin-bottom: 0;
}

.content-text p {
    margin: 0 0 1.45em;
}

.content-text h2 {
    margin: 2.2em 0 0.65em;

    color: var(--color-blue);

    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.content-text h3 {
    margin: 2em 0 0.6em;

    color: var(--color-dark);

    font-size: clamp(21px, 2vw, 27px);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.content-text ul,
.content-text ol {
    margin: 0 0 1.6em 1.2em;
    padding: 0;
}

.content-text li {
    margin-bottom: 0.45em;
    padding-left: 0.15em;
}

.content-text a {
    color: var(--color-blue);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.content-text a:hover {
    color: var(--color-green);
}

.content-text strong,
.content-text b {
    color: var(--color-dark);
    font-weight: 800;
}

.content-page h1::after {
    content: "";
    display: block;

    width: 76px;
    height: 6px;
    margin-top: 22px;

    background: var(--color-green);
    border-radius: 999px;

    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    animation: h1-line-grow 0.75s ease-out 0.25s forwards;
}

@keyframes h1-line-grow {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@media (max-width: 860px) {
    .content-page {
        padding-top: 52px;
        padding-bottom: 78px;
    }

    .content-page-inner {
        max-width: 680px;
    }

    .content-text {
        line-height: 1.75;
    }
}

@media (max-width: 640px) {
    .content-page {
        padding-left: clamp(24px, 6vw, 48px);
        padding-right: clamp(24px, 6vw, 48px);
        padding-top: 44px;
        padding-bottom: 64px;
    }

    .content-page h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .content-subtitle {
        margin-top: 14px;
        font-size: clamp(19px, 5.2vw, 24px);
        line-height: 1.38;
    }

    .content-text {
        margin-top: 32px;
        font-size: 16px;
        line-height: 1.72;
    }

    .content-text h2 {
        font-size: clamp(25px, 7vw, 34px);
    }
}

/* -------------------------------
   Buttons / CTA
-------------------------------- */

.button,
.button_neg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;
    padding: 13px 24px;

    border-radius: 999px;

    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none !important;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button {
    background: var(--color-green);
    color: var(--color-white) !important;
    border: 2px solid var(--color-green);

    box-shadow: 0 10px 22px rgba(32, 186, 35, 0.22);
}

.button:hover {
    background: var(--color-blue);
    color: var(--color-white) !important;
    border-color: var(--color-blue);

    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(2, 89, 168, 0.22);
}

.button_neg {
    background: var(--color-white);
    color: var(--color-green) !important;
    border: 2px solid var(--color-green);

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.button_neg:hover {
    background: var(--color-green);
    color: var(--color-white) !important;
    border-color: var(--color-green);

    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(32, 186, 35, 0.18);
}

.content-text .button,
.content-text .button_neg {
    margin-top: 8px;
    text-decoration: none !important;
}

.content-text p:has(.button),
.content-text p:has(.button_neg) {
    margin-top: 2em;
}

/* -------------------------------
   Sitemap
-------------------------------- */

.sitemap-block {
    margin-top: clamp(36px, 5vw, 64px);

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 56px);
}

.sitemap-group {
    padding-top: 24px;
    border-top: 1px solid rgba(2, 89, 168, 0.16);
}

.sitemap-group h2 {
    margin: 0 0 18px;

    color: var(--color-blue);

    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.sitemap-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.sitemap-list li {
    margin: 0;
    padding: 0;
}

.sitemap-list li + li {
    margin-top: 10px;
}

.sitemap-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: rgba(2, 89, 168, 0.78);
    text-decoration: none;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;

    transition:
        color 220ms ease,
        transform 220ms ease;
}

.sitemap-list a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-green);
    flex: 0 0 auto;
}

.sitemap-list a:hover {
    color: var(--color-blue);
    transform: translateX(4px);
}

@media (max-width: 700px) {
    .sitemap-block {
        grid-template-columns: 1fr;
    }

    .sitemap-list a {
        font-size: 16px;
    }
}

/* -------------------------------
   Trainingstijden
-------------------------------- */

.training-times {
    width: calc(100% + (var(--site-gutter) * 2));
    margin: clamp(48px, 6vw, 82px) calc(var(--site-gutter) * -1) 0;
    padding: clamp(42px, 6vw, 74px) var(--site-gutter);

    background:
        radial-gradient(circle at top left, rgba(93, 183, 255, 0.24), transparent 34%),
        linear-gradient(180deg, #F2F5F7 0%, #ffffff 100%);
}

.training-times-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.training-switch {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    margin: 0 0 28px;

    border: 1px solid rgba(2, 89, 168, 0.18);
    border-radius: 999px;

    background: var(--color-white);
    box-shadow: 0 12px 28px rgba(2, 89, 168, 0.08);
}

.training-switch-button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: transparent;

    color: var(--color-blue);

    padding: 11px 22px;

    font: inherit;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;

    cursor: pointer;

    transition:
        background-color 220ms ease,
        color 220ms ease,
        transform 220ms ease;
}

.training-switch-button:hover {
    transform: translateY(-1px);
}

.training-switch-button.is-active {
    background: var(--color-green);
    color: var(--color-white);
}

.training-view {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.training-view.is-active {
    display: grid;
}

.training-day {
    position: relative;
    overflow: hidden;

    border-radius: 22px;
    background: var(--color-white);
    border: 1px solid rgba(2, 89, 168, 0.12);

    box-shadow: 0 14px 34px rgba(2, 89, 168, 0.08);
}

.training-day::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;

    width: 7px;

    background: linear-gradient(
        180deg,
        var(--color-blue) 0%,
        var(--color-green) 100%
    );
}

.training-day h3 {
    margin: 0;
    padding: 22px 24px 16px 31px;

    color: var(--color-blue);

    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.training-day ul {
    list-style: none;
    margin: 0;
    padding: 0 24px 22px 31px;
}

.training-day li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    padding: 14px 0;
    border-top: 1px solid rgba(2, 89, 168, 0.11);

    color: rgba(51, 51, 51, 0.92);

    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
}

.training-day li em {
    display: inline-block;

    color: rgba(51, 51, 51, 0.62);

    font-size: 0.92em;
    font-style: normal;
    font-weight: 600;
}

.training-day li strong {
    flex: 0 0 auto;

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

    min-width: 124px;
    padding: 7px 11px;
    border-radius: 999px;

    background: rgba(32, 186, 35, 0.11);
    color: var(--color-green);

    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
}

.training-notes {
    margin-top: 22px;
    padding: 22px 24px;

    border-radius: 20px;

    background: var(--color-blue);
    color: rgba(255, 255, 255, 0.88);
}

.training-notes p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.training-notes p + p {
    margin-top: 8px;
}

.training-notes strong {
    color: var(--color-white);
    font-weight: 900;
}


/* -------------------------------
   Trainingstijden responsive
-------------------------------- */

@media (max-width: 920px) {
    .training-view.is-active {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .training-times {
        margin-top: 42px;
        padding-top: 34px;
        padding-bottom: 44px;
    }

    .training-switch {
        width: 100%;
    }

    .training-switch-button {
        flex: 1;
        padding-inline: 12px;
        font-size: 14px;
    }

    .training-day {
        border-radius: 18px;
    }

    .training-day h3 {
        padding: 20px 20px 14px 28px;
        font-size: 22px;
    }

    .training-day ul {
        padding: 0 20px 20px 28px;
    }

    .training-day li {
        display: block;
        font-size: 15px;
    }

    .training-day li strong {
        margin-top: 9px;
        min-width: 0;
    }

    .training-notes {
        border-radius: 18px;
        padding: 20px;
    }

    .training-notes p {
        font-size: 14px;
    }
}

/* -------------------------------
   Contributie
-------------------------------- */

.contribution-section {
    width: calc(100% + (var(--site-gutter) * 2));
    margin: clamp(48px, 6vw, 82px) calc(var(--site-gutter) * -1) 0;
    padding: clamp(42px, 6vw, 74px) var(--site-gutter);

    background:
        radial-gradient(circle at top right, rgba(32, 186, 35, 0.16), transparent 34%),
        linear-gradient(180deg, #F2F5F7 0%, #ffffff 100%);
}

.contribution-inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.contribution-intro {
    max-width: 760px;
    margin: 0 0 24px;

    color: rgba(51, 51, 51, 0.9);

    font-size: clamp(17px, 1.25vw, 19px);
    line-height: 1.75;
    font-weight: 600;
}

.contribution-intro p {
    margin: 0;
}


/* -------------------------------
   Tabel
-------------------------------- */

.contribution-table-wrap {
    overflow: hidden;

    border-radius: 24px;
    background: var(--color-white);
    border: 1px solid rgba(2, 89, 168, 0.12);

    box-shadow: 0 16px 38px rgba(2, 89, 168, 0.08);
}

.contribution-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
}

.contribution-table caption {
    padding: 22px 26px;

    background: var(--color-blue);
    color: var(--color-white);

    text-align: left;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.contribution-table th,
.contribution-table td {
    padding: 17px 22px;
    border-bottom: 1px solid rgba(2, 89, 168, 0.1);

    text-align: left;
    vertical-align: middle;
}

.contribution-table thead th {
    background: rgba(2, 89, 168, 0.06);
    color: var(--color-blue);

    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contribution-table tbody th {
    color: var(--color-dark);

    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.contribution-table tbody td {
    color: var(--color-blue);

    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    white-space: nowrap;
}

.contribution-table tbody tr:nth-child(even) {
    background: rgba(2, 89, 168, 0.035);
}

.contribution-table tbody tr:hover {
    background: rgba(32, 186, 35, 0.08);
}

.contribution-table tbody tr:last-child th,
.contribution-table tbody tr:last-child td {
    border-bottom: 0;
}


/* -------------------------------
   Tekstblok onder tabel
-------------------------------- */

.contribution-info {
    margin-top: 28px;
    padding: clamp(28px, 4vw, 42px);

    border-radius: 24px;

    background: var(--color-white);
    border: 1px solid rgba(2, 89, 168, 0.12);

    box-shadow: 0 16px 38px rgba(2, 89, 168, 0.07);
}

.contribution-info h2 {
    margin: 0 0 18px;

    color: var(--color-blue);

    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.contribution-info p {
    max-width: 860px;
    margin: 0 0 1.25em;

    color: rgba(51, 51, 51, 0.9);

    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.72;
}

.contribution-info p:last-child {
    margin-bottom: 0;
}

.contribution-info strong {
    color: var(--color-blue);
    font-weight: 900;
}


/* -------------------------------
   Highlight dagstartvergunning
-------------------------------- */

.contribution-highlight {
    margin-top: 28px;
    padding: 24px 26px;

    border-radius: 20px;

    background: var(--color-blue);
    color: var(--color-white);
}

.contribution-highlight h3 {
    margin: 0 0 10px;

    color: var(--color-white);

    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.contribution-highlight p {
    margin: 0 0 0.9em;
    color: rgba(255, 255, 255, 0.88);
}

.contribution-highlight p:last-child {
    margin-bottom: 0;
}

.contribution-highlight strong {
    color: var(--color-white);
}


/* -------------------------------
   Contributie responsive
-------------------------------- */

@media (max-width: 760px) {
    .contribution-section {
        margin-top: 42px;
        padding-top: 34px;
        padding-bottom: 44px;
    }

    .contribution-table-wrap {
        overflow-x: auto;
        border-radius: 20px;
    }

    .contribution-table {
        min-width: 620px;
    }

    .contribution-table caption {
        position: sticky;
        left: 0;
    }

    .contribution-table th,
    .contribution-table td {
        padding: 15px 18px;
    }

    .contribution-info {
        border-radius: 20px;
    }

    .contribution-highlight {
        border-radius: 18px;
        padding: 22px;
    }
}

@media (max-width: 520px) {
    .contribution-intro {
        font-size: 16px;
        line-height: 1.65;
    }

    .contribution-table {
        min-width: 560px;
    }

    .contribution-table caption {
        padding: 20px;
        font-size: 22px;
    }

    .contribution-table th,
    .contribution-table td {
        padding: 14px 16px;
        font-size: 15px;
    }

    .contribution-info p {
        font-size: 15px;
        line-height: 1.68;
    }
}

/* Lid worden formulier */

.join-form-section {
    margin-top: 40px;
    padding: 34px;
    border-radius: 28px;
    background: #f4fbfa;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.join-form-intro {
    max-width: 760px;
    margin-bottom: 28px;
}

.join-form-intro h2 {
    margin: 0 0 12px;
}

.join-form-intro p {
    margin: 0;
}

.join-form {
    display: grid;
    gap: 20px;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid-3 {
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
}

.join-form label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

.join-form label span {
    color: #113b47;
}

.join-form input,
.join-form select,
.join-form textarea {
    width: 100%;
    border: 1px solid rgba(17, 59, 71, 0.16);
    border-radius: 16px;
    padding: 13px 15px;
    font: inherit;
    color: #113b47;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
    border-color: #02a88a;
    box-shadow: 0 0 0 4px rgba(2, 168, 138, 0.12);
}

.join-form textarea {
    resize: vertical;
    min-height: 130px;
}

.form-note {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(17, 59, 71, 0.72);
}

.form-errors,
.form-success {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 18px;
}

.form-errors {
    background: #fff3f0;
    color: #9a2d16;
}

.form-errors p,
.form-success p {
    margin: 0;
}

.form-errors p + p {
    margin-top: 6px;
}

.form-success {
    background: #ecfbf2;
    color: #164b2f;
}

.form-success h2 {
    margin: 0 0 8px;
}

.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 760px) {
    .join-form-section {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }
}