
    /* =========================
       BASIS
    ========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #f5f5f5;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   NAVIGATIE
========================= */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

    nav {
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 40px;

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

    .nav-links {
        display: flex;
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;

        color: #dce8df;
        text-decoration: none;

        padding: 9px 16px;

        border: 1px solid rgba(140, 255, 79, 0.25);
        border-radius: 6px;

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

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

    .nav-links a:hover {
        color: #8cff4f;
        background: rgba(140, 255, 79, 0.07);
        border-color: rgba(140, 255, 79, 0.6);
        box-shadow: 0 0 14px rgba(140, 255, 79, 0.12);
    }

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

.hero {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
            linear-gradient(
                    rgba(0, 0, 0, 0.35),
                    rgba(0, 0, 0, 0.35)
            ),
            url("/images/bandfoto.jpg");

    background-size: cover;
    background-position: center;
}

.hero-image {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.35),
                    rgba(0, 0, 0, 0.10)
            );
}

.hero-content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 80px 40px;

    text-align: left;
}

.eyebrow {
    margin-bottom: 15px;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 3px;

    color: #aaa;
}

.hero h1 {
    max-width: 900px;

    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    color: #aaa;
}

.hero-text {
    max-width: 600px;

    margin: 35px 0;

    font-size: 1.15rem;
    color: #ccc;
}


/* =========================
   OUDE BAND FOTO
========================= */

.band-photo {
    margin: 60px auto;
    max-width: 1200px;
}

.band-photo img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 16px;
}


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

.intro {
    position: relative;

    max-width: none;
    margin: 0;

    padding: 220px 40px 50px;

    text-align: center;

    overflow: visible;

    background-image:
            linear-gradient(
                    rgba(0, 0, 0, 0.68),
                    rgba(0, 0, 0, 0.82)
            ),
            url("/images/2enjoy-achtergrond.jpg");

    background-size: cover;
    background-position: center center;
}

.intro-logo {
    width: 560px;
    max-width: 90%;
    height: auto;

    display: block;

    margin: 0 auto -180px;

    position: relative;
    z-index: 10;

    transform: translateY(-350px);
}

.intro-content .eyebrow {
    margin: 0 0 12px;
}

.intro-content h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;

    letter-spacing: -2px;

    margin: 0 0 25px;

    background: linear-gradient(
            90deg,
            #8cff4f,
            #00d9c0
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-content > p:not(.eyebrow) {
    max-width: 650px;

    margin: 0 auto 20px;

    color: #bbb;

    font-size: 1.1rem;
}

.intro-content .eyebrow + h2 {
    margin-top: 0;
}


/* =========================
   BUTTON
========================= */

.button {
    display: inline-block;

    padding: 14px 24px;

    background: #8cff4f;
    color: #111;

    font-weight: 700;

    transition:
            transform 0.2s ease,
            background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: #ddd;
}


/* =========================
   ALGEMENE SECTIES
========================= */

.about,
.gigs,
.contact {
    max-width: 1200px;
    margin: 0 auto;

    padding: 120px 40px;
}


/* =========================
   OVER ONS
========================= */

.about {
    position: relative;

    max-width: none;
    margin: 0;

    padding: 140px 40px;

    display: block;

    overflow: hidden;

    background:
            linear-gradient(
                    90deg,
                    #111 0%,
                    #111 15%,
                    rgba(17, 17, 17, 0.98) 28%,
                    rgba(17, 17, 17, 0.88) 40%,
                    rgba(17, 17, 17, 0.65) 53%,
                    rgba(17, 17, 17, 0.38) 66%,
                    rgba(17, 17, 17, 0.16) 80%,
                    rgba(17, 17, 17, 0.05) 100%
            ),
            radial-gradient(
                    circle at 15% 45%,
                    rgba(140, 255, 79, 0.12),
                    transparent 35%
            ),
            radial-gradient(
                    circle at 80% 55%,
                    rgba(0, 217, 192, 0.10),
                    transparent 35%
            ),
            url("/images/feesttent-achtergrond.jpg");

    background-size:
            100% 100%,
            auto,
            auto,
            65% auto;

    background-position:
            center,
            center,
            center,
            right center;

    background-repeat:
            no-repeat,
            no-repeat,
            no-repeat,
            no-repeat;

    background-color: #111;
}


/* Groene gloed links */

.about::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    top: 50%;

    transform: translateY(-50%);

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

    filter: blur(100px);

    border-radius: 50%;

    pointer-events: none;
}


/* Inhoud boven de achtergrond */

.about > div {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 50px;
}

.about > div:last-child {
    max-width: 700px;
}


/* Koppen */

.about h2,
.gigs h2,
.contact h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1;

    letter-spacing: -2px;
}

.about h2 {
    background: linear-gradient(
            90deg,
            #8cff4f,
            #00d9c0
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about p:not(.eyebrow) {
    margin-bottom: 20px;

    color: #bbb;

    font-size: 1.05rem;
    line-height: 1.8;
}


/* =========================
   ON STAGE
========================= */

.members {
    max-width: 1200px;
    margin: 0 auto;

    padding: 50px 40px 120px;
}

.section-heading {
    max-width: 600px;

    margin-bottom: 50px;
}

.section-heading h2 {
    margin-bottom: 15px;
}

.section-heading > p {
    opacity: 0.7;
}


/* =========================
   BAND GALLERY
========================= */

.member-grid {
    display: grid;

    grid-template-columns: repeat(12, 1fr);

    gap: 16px;
}


/* =========================
   FOTO'S
========================= */

.member {
    position: relative;

    height: 300px;

    overflow: hidden;

    border-radius: 14px;

    background: #222;
}

.member img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* Donkere onderkant */

.member::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            transparent 55%
    );

    pointer-events: none;
}


/* =========================
   BOVENSTE RIJ
   3 GELIJKE FOTO'S
========================= */

.member:nth-child(1) {
    grid-column: span 4;
}

.member:nth-child(2) {
    grid-column: span 4;
}

.member:nth-child(3) {
    grid-column: span 4;
}


/* =========================
   ONDERSTE RIJ
   4 GELIJKE FOTO'S
========================= */

.member:nth-child(4) {
    grid-column: span 3;
}

.member:nth-child(5) {
    grid-column: span 3;
}

.member:nth-child(6) {
    grid-column: span 3;
}

.member:nth-child(7) {
    grid-column: span 3;
}


/* =========================
   NAMEN
========================= */

.member-info {
    position: absolute;

    left: 18px;
    bottom: 18px;

    z-index: 2;
}

.member-info h3 {
    margin: 0 0 3px;

    font-size: 1.2rem;
}

.member-info p {
    margin: 0;

    font-size: 0.9rem;

    color: #ddd;
}


/* =========================
   HOVER
========================= */

.member:hover img {
    transform: scale(1.04);
}


/* =========================
   FOTO POSITIE
========================= */

.foto-links {
    object-position: 10% center;
}


/* =========================
   REPERTOIRE / SETLIST
========================= */

.setlist {
    position: relative;

    width: 100%;
    min-height: 700px;

    padding: 110px 40px;

    overflow: hidden;

    background-color: #111;

    background-image:
            linear-gradient(
                    90deg,
                    rgba(17, 17, 17, 0.98) 0%,
                    rgba(17, 17, 17, 0.92) 25%,
                    rgba(17, 17, 17, 0.72) 45%,
                    rgba(17, 17, 17, 0.42) 65%,
                    rgba(17, 17, 17, 0.18) 82%,
                    rgba(17, 17, 17, 0.08) 100%
            ),
            url("/images/gitaar-achtergrond.jpg");

    background-repeat:
            no-repeat,
            no-repeat;

    background-position:
            center,
            right center;

    background-size:
            100% 100%,
            cover;
}


/* Groene gloed */

.setlist::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    top: 50%;

    transform: translateY(-50%);

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

    filter: blur(110px);

    border-radius: 50%;

    pointer-events: none;
}


/* Inhoud */

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

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* Kop */

.setlist .section-heading {
    max-width: 750px;

    margin-bottom: 45px;
}

.setlist .section-heading h2 {
    margin-bottom: 20px;

    background: linear-gradient(
            90deg,
            #8cff4f,
            #00d9c0
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.setlist .section-heading > p {
    max-width: 650px;

    color: #ccc;

    font-size: 1.05rem;
}


/* =========================
   SETLIST KOLOMMEN
========================= */

.setlist-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0 60px;

    width: 100%;
    max-width: 1100px;
}

.setlist-column {
    width: 100%;
}


/* =========================
   NUMMERS
========================= */

.song {
    display: flex;
    align-items: baseline;

    gap: 18px;

    padding: 13px 16px;

    margin-bottom: 7px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 8px;

    background: rgba(0, 0, 0, 0.38);

    backdrop-filter: blur(4px);

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

.song:hover {
    background: rgba(0, 0, 0, 0.58);

    border-color: rgba(140, 255, 79, 0.40);

    transform: translateX(4px);
}


/* Artiest */

.song .artist {
    flex: 0 0 190px;

    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.3px;
}


/* Nummer */

.song .title {
    color: #f5f5f5;

    font-size: 1rem;

    transition: color 0.2s ease;
}

.song:hover .title {
    color: #fff;
}

/* =========================
   OPTREDENS
========================= */

.gigs {
    position: relative;

    max-width: none;
    margin: 0;

    padding: 120px 40px;

    overflow: hidden;

    border-top: 1px solid #333;

    background-image:
            linear-gradient(
                    rgba(17, 17, 17, 0.82),
                    rgba(17, 17, 17, 0.92)
            ),
            url("/images/piano-achtergrond.jpg");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;
}


/* Inhoud boven de achtergrond */

.gigs > * {
    position: relative;
    z-index: 2;
}


/* Kop */

.gigs .section-heading {
    max-width: 1200px;

    margin: 0 auto 50px;
}


/* Optredens lijst */

.gig-list {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* Optreden */

.gig {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 24px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 12px;

    background: rgba(10, 10, 10, 0.72);

    backdrop-filter: blur(5px);

    transition:
            transform 0.25s ease,
            border-color 0.25s ease,
            background 0.25s ease;
}

.gig:hover {
    transform: translateY(-3px);

    border-color: rgba(140, 255, 79, 0.45);

    background: rgba(10, 10, 10, 0.82);
}


/* Datum */

.gig-date {
    min-width: 70px;

    text-align: center;
}

.gig-date strong {
    display: block;

    font-size: 2rem;
}

.gig-date span {
    font-size: 0.8rem;

    opacity: 0.7;
}


/* Informatie */

.gig-info h3 {
    margin: 0 0 5px;
}

.gig-info p {
    margin: 0;

    opacity: 0.7;
}


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

.contact {
    text-align: center;
}

.contact > p:not(.eyebrow) {
    max-width: 550px;

    margin: 25px auto 35px;

    color: #aaa;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 40px;

    border-top: 1px solid #333;

    text-align: center;

    color: #666;
}


/* =========================
   MOBIEL
========================= */

@media (max-width: 700px) {

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

    .intro {
        margin-top: 0;

        padding: 160px 20px 40px;
    }

    .intro-logo {
        width: 340px;
        max-width: 95%;

        margin: 0 auto -120px;

        transform: translateY(-190px);
    }


    /* =====================
       NAVIGATIE
    ===================== */

    nav {
        padding: 25px 20px;
    }

    .nav-links {
        gap: 12px;

        flex-wrap: wrap;

        justify-content: flex-end;
    }

    .nav-links a {
        font-size: 0.78rem;
    }


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

    .hero {
        min-height: 650px;

        background-position: center;
    }

    .hero-content {
        padding: 130px 20px 80px;

        text-align: center;
    }

    .hero h1 {
        letter-spacing: -2px;
    }


    /* =====================
       ALGEMENE SECTIES
    ===================== */

    .about,
    .gigs,
    .contact {
        padding: 80px 20px;
    }


    /* =====================
       OVER ONS
    ===================== */

    .about {
        display: block;

        background-size:
                100% 100%,
                auto,
                auto,
                75% auto;

        background-position:
                center,
                center,
                center,
                right center;
    }

    .about > div:first-child {
        margin-bottom: 40px;
    }

    .about > div:last-child {
        max-width: none;
    }


    /* =====================
       ON STAGE
    ===================== */

    .members {
        padding: 40px 20px 80px;
    }

    .section-heading {
        margin-bottom: 35px;
    }


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

    .member-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .member {
        height: 220px;
    }

    .member:nth-child(1),
    .member:nth-child(2),
    .member:nth-child(3),
    .member:nth-child(4),
    .member:nth-child(5),
    .member:nth-child(6),
    .member:nth-child(7) {
        grid-column: span 1;
    }

    .member:nth-child(7) {
        grid-column: 1 / 3;
    }


    /* =====================
       NAMEN
    ===================== */

    .member-info {
        left: 14px;
        bottom: 14px;
    }

    .member-info h3 {
        font-size: 1rem;
    }

    .member-info p {
        font-size: 0.8rem;
    }


    /* =====================
       REPERTOIRE
    ===================== */

    .setlist {
        min-height: auto;

        padding: 80px 20px;

        background-image:
                linear-gradient(
                        180deg,
                        rgba(17, 17, 17, 0.97) 0%,
                        rgba(17, 17, 17, 0.88) 42%,
                        rgba(17, 17, 17, 0.60) 72%,
                        rgba(17, 17, 17, 0.30) 100%
                ),
                url("/images/feesttent-achtergrond.jpg");

        background-repeat:
                no-repeat,
                no-repeat;

        background-size:
                100% 100%,
                cover;

        background-position:
                center,
                center;
    }

    .setlist .section-heading {
        margin-bottom: 35px;
    }

    .setlist-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .song {
        display: block;

        padding: 13px 15px;

        margin-bottom: 7px;
    }

    .song .artist {
        display: block;

        min-width: 0;

        margin-bottom: 2px;
    }

    .song .title {
        display: block;

        font-size: 1rem;
    }


    /* =====================
       OPTREDENS
    ===================== */

    .gigs {
        padding: 80px 20px;

        background-attachment: scroll;
    }

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

    .gig {
        padding: 20px;
    }
}

    /* =========================
   YOUTUBE / VIDEO'S
   ========================= */

    .videos {
        position: relative;
        width: 100%;
        padding: 100px 0;
        overflow: hidden;
    }

    /* Volledige achtergrond */
    .videos::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
                linear-gradient(
                        90deg,
                        rgba(17, 17, 17, 0.96),
                        rgba(17, 17, 17, 0.78),
                        rgba(17, 17, 17, 0.94)
                ),
                url("/images/impressie-2.jpg");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        filter: blur(4px);
        transform: scale(1.05);

        opacity: 0.55;

        z-index: 0;
    }


    /* Inhoud blijft netjes gecentreerd */
    .videos .section-heading,
    .videos .video-grid,
    .videos .youtube-button {
        position: relative;
        z-index: 1;

        width: calc(100% - 80px);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }


    /* Titel */

    .videos .section-heading {
        margin-bottom: 45px;
    }

    .videos .section-heading h2 {
        margin-bottom: 18px;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        line-height: 1;
        letter-spacing: -2px;

        background: linear-gradient(90deg, #8cff4f, #00d9c0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .videos .section-heading > p:not(.eyebrow) {
        max-width: 620px;
        color: #aaa;
        font-size: 1.05rem;
        line-height: 1.7;
    }


    /* Video's */

    .video-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .video-item {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 14px;
        background: #111;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);

        transition: transform 0.3s ease;
    }

    .video-item:hover {
        transform: translateY(-5px);
    }

    .video-item iframe {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        border: 0;
    }


    /* YouTube knop */

    .youtube-button {
        margin-top: 35px;
        text-align: center;
    }


    /* TABLET */

    @media (max-width: 900px) {

        .videos {
            padding: 90px 0;
        }

        .videos .section-heading,
        .videos .video-grid,
        .videos .youtube-button {
            width: calc(100% - 60px);
        }

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


    /* MOBIEL */

    @media (max-width: 700px) {

        .videos {
            padding: 80px 0;
        }

        .videos .section-heading,
        .videos .video-grid,
        .videos .youtube-button {
            width: calc(100% - 40px);
        }

        .video-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .video-item {
            border-radius: 10px;
        }
    }
           /* =========================================================
              BOEKEN / CONTACT
              ========================================================= */

       .contact {
           position: relative;

           width: 100%;
           max-width: none;

           min-height: 850px;

           margin: 0;
           padding: 120px 0;

           overflow: hidden;

           background: #111;

           text-align: left;
       }


    /* =========================================================
       GROTE ACHTERGROND
       ========================================================= */

    .contact-background {
        position: absolute;

        top: -30px;
        right: -30px;
        bottom: -30px;
        left: -30px;

        z-index: 0;

        background-image:
                linear-gradient(
                        90deg,
                        rgba(10, 10, 10, 0.96) 0%,
                        rgba(10, 10, 10, 0.86) 25%,
                        rgba(10, 10, 10, 0.65) 50%,
                        rgba(10, 10, 10, 0.45) 70%,
                        rgba(10, 10, 10, 0.75) 100%
                ),
                url("/images/impressie-3.jpg");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;

        transform: scale(1.03);

        filter: blur(1px);

        opacity: 0.95;
    }


    /* =========================================================
       EXTRA DONKERE OVERGANG
       ========================================================= */

    .contact::before {
        content: "";

        position: absolute;
        inset: 0;

        z-index: 1;

        background:
                linear-gradient(
                        180deg,
                        rgba(17, 17, 17, 0.85) 0%,
                        rgba(17, 17, 17, 0.20) 18%,
                        rgba(17, 17, 17, 0.20) 80%,
                        rgba(17, 17, 17, 0.90) 100%
                );

        pointer-events: none;
    }


    /* =========================================================
       SUBTIELE TURQUOISE GLOW
       ========================================================= */

    .contact::after {
        content: "";

        position: absolute;
        inset: 0;

        z-index: 1;

        background:
                radial-gradient(
                        ellipse at 75% 50%,
                        rgba(0, 217, 192, 0.10),
                        transparent 45%
                );

        pointer-events: none;
    }


    /* =========================================================
       INHOUD
       ========================================================= */

    .contact-inner {
        position: relative;

        z-index: 2;

        width: calc(100% - 80px);
        max-width: 1200px;

        margin: 0 auto;

        display: grid;

        grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

        gap: 80px;

        align-items: center;
    }


    /* =========================================================
       LINKERKANT
       ========================================================= */

    .contact-intro {
        max-width: 520px;
    }


    .contact-intro .eyebrow {
        margin-bottom: 15px;
    }


    .contact-intro h2 {
        margin: 0 0 25px;

        color: #fff;

        font-size: clamp(3rem, 5vw, 5rem);

        line-height: 0.98;

        letter-spacing: -3px;
    }


    .contact-intro h2 span {
        background:
                linear-gradient(
                        90deg,
                        #8cff4f,
                        #00d9c0
                );

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


    .contact-text {
        max-width: 500px;

        margin: 0 0 45px;

        color: #aaa;

        font-size: 1.05rem;

        line-height: 1.75;
    }


    /* =========================================================
       HIGHLIGHTS
       ========================================================= */

    .contact-highlights {
        display: flex;

        flex-direction: column;

        gap: 25px;
    }


    .contact-highlight {
        padding-left: 22px;

        border-left:
                2px solid rgba(140, 255, 79, 0.65);
    }


    .contact-highlight strong {
        display: block;

        margin-bottom: 5px;

        color: #fff;

        font-size: 0.82rem;

        letter-spacing: 1.5px;
    }


    .contact-highlight span {
        color: #999;

        font-size: 0.95rem;

        line-height: 1.5;
    }


    /* =========================================================
       FORMULIER KAART
       ========================================================= */

    .booking-card {
        width: 100%;

        padding: 45px;

        background:
                rgba(18, 18, 18, 0.84);

        border:
                1px solid rgba(255, 255, 255, 0.10);

        border-radius: 18px;

        box-shadow:
                0 30px 80px rgba(0, 0, 0, 0.50),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);

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


    /* =========================================================
       FORMULIER HEADER
       ========================================================= */

    .booking-header {
        margin-bottom: 30px;
    }


    .booking-header h3 {
        margin: 0 0 10px;

        color: #fff;

        font-size: clamp(1.8rem, 3vw, 2.5rem);

        line-height: 1.1;

        letter-spacing: -1px;
    }


    .booking-header p:not(.eyebrow) {
        margin: 0;

        color: #999;

        line-height: 1.6;
    }


    /* =========================================================
       FORMULIER
       ========================================================= */

    .booking-form {
        display: flex;

        flex-direction: column;

        gap: 20px;
    }


    /* Twee kolommen */

    .form-row {
        display: grid;

        grid-template-columns:
        repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    /* Form group */

    .form-group {
        display: flex;

        flex-direction: column;

        gap: 8px;
    }


    .form-group label {
        color: #ddd;

        font-size: 0.85rem;

        font-weight: 500;
    }


    /* =========================================================
       INPUTS
       ========================================================= */

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;

        padding: 14px 15px;

        border:
                1px solid rgba(255, 255, 255, 0.10);

        border-radius: 8px;

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

        color: #fff;

        font-family: inherit;

        font-size: 0.95rem;

        outline: none;

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


    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #666;
    }


    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color:
                rgba(0, 217, 192, 0.65);

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

        box-shadow:
                0 0 0 3px rgba(0, 217, 192, 0.08);
    }


    /* Tekstveld */

    .form-group textarea {
        min-height: 130px;

        resize: vertical;
    }


    /* =========================================================
       SELECT
       ========================================================= */

    .form-group select {
        appearance: none;

        cursor: pointer;

        background-image:
                linear-gradient(
                        45deg,
                        transparent 50%,
                        #777 50%
                ),
                linear-gradient(
                        135deg,
                        #777 50%,
                        transparent 50%
                );

        background-position:
                calc(100% - 18px) 19px,
                calc(100% - 13px) 19px;

        background-size:
                5px 5px,
                5px 5px;

        background-repeat: no-repeat;
    }


    .form-group select option {
        background: #181818;

        color: #fff;
    }


    /* =========================================================
       CHECKBOX
       ========================================================= */

    .form-checkbox {
        display: flex;

        align-items: flex-start;

        gap: 10px;

        margin-top: 2px;
    }


    .form-checkbox input {
        flex-shrink: 0;

        width: 17px;
        height: 17px;

        margin-top: 2px;

        accent-color: #00d9c0;

        cursor: pointer;
    }


    .form-checkbox label {
        color: #888;

        font-size: 0.8rem;

        line-height: 1.5;

        cursor: pointer;
    }


    /* =========================================================
       BOEKINGSKNOP
       ========================================================= */

    .booking-button {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 12px;

        margin-top: 5px;

        cursor: pointer;
    }


    .booking-button span {
        font-size: 1.2rem;

        transition:
                transform 0.25s ease;
    }


    .booking-button:hover span {
        transform: translateX(4px);
    }


    /* =========================================================
       KLEINE TEKST
       ========================================================= */

    .form-note {
        margin: -5px 0 0;

        color: #666;

        font-size: 0.75rem;

        text-align: center;
    }


    /* =========================================================
       HONEYPOT
       ========================================================= */

    .form-honeypot {
        position: absolute;

        left: -9999px;

        width: 1px;
        height: 1px;

        overflow: hidden;
    }


    /* =========================
   Booking success message
   ========================= */

    .booking-success {
        padding: 3rem;
        border: 1px solid rgba(80, 220, 180, 0.25);
        border-radius: 1.25rem;
        background: rgba(10, 25, 22, 0.65);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        text-align: center;
    }

    .booking-success .eyebrow {
        margin-bottom: 0.75rem;
    }

    .booking-success h3 {
        margin: 0 0 1rem;
    }

    .booking-success p:last-child {
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .booking-reset {
        margin-top: 2rem;
        padding: 0.9rem 1.5rem;
        border: 1px solid rgba(80, 220, 180, 0.35);
        border-radius: 999px;
        background: rgba(10, 25, 22, 0.7);
        color: #ffffff;
        font: inherit;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .booking-reset:hover {
        border-color: rgba(80, 220, 180, 0.7);
        background: rgba(20, 55, 48, 0.85);
        transform: translateY(-1px);
    }

    /* =========================================================
       TABLET
       ========================================================= */

    @media (max-width: 950px) {

        .contact {
            min-height: auto;

            padding: 90px 0;
        }


        .contact-inner {
            width: calc(100% - 60px);

            grid-template-columns: 1fr;

            gap: 55px;
        }


        .contact-intro {
            max-width: 700px;
        }


        .contact-highlights {
            display: grid;

            grid-template-columns:
            repeat(3, minmax(0, 1fr));

            gap: 20px;
        }


        .booking-card {
            max-width: 800px;

            margin: 0 auto;
        }

    }


    /* =========================================================
       MOBIEL
       ========================================================= */

    @media (max-width: 700px) {

        .contact {
            padding: 75px 0;
        }


        .contact-inner {
            width: calc(100% - 40px);

            gap: 40px;
        }


        .contact-intro h2 {
            font-size:
                    clamp(2.8rem, 12vw, 4rem);

            letter-spacing: -2px;
        }


        .contact-text {
            font-size: 1rem;

            margin-bottom: 35px;
        }


        .contact-highlights {
            display: flex;

            flex-direction: column;

            gap: 20px;
        }


        .booking-card {
            padding: 28px 22px;

            border-radius: 14px;
        }


        .booking-header h3 {
            font-size: 1.8rem;
        }


        .form-row {
            grid-template-columns: 1fr;

            gap: 20px;
        }


        .form-group input,
        .form-group select,
        .form-group textarea {
            font-size: 16px;
        }


        .contact-background {
            background-position: center center;
        }

    }

    /* =========================
       PARTNERS
    ========================= */

    .partners {
        position: relative;
        width: 100%;
        padding: 100px 40px;
        background:
                linear-gradient(
                        180deg,
                        rgba(5, 10, 9, 0.98),
                        rgba(8, 18, 16, 0.96)
                );
        overflow: hidden;
    }

    .partners::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        top: -250px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 255, 180, 0.035);
        filter: blur(100px);
        border-radius: 50%;
        pointer-events: none;
    }

    .partners .section-heading {
        position: relative;
        z-index: 2;
        max-width: 750px;
        margin: 0 auto 60px;
        text-align: center;
    }

    .partners .section-heading h2 {
        margin-bottom: 18px;
    }

    .partners .section-heading > p:last-child {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Partner logo's */

    .partners-grid {
        position: relative;
        z-index: 2;

        max-width: 1100px;
        margin: 0 auto;

        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        align-items: stretch;
    }

    /* PARTNER BLOKKEN */

    .partner {
        min-height: 180px;

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

        padding: 20px 30px;

        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;

        text-decoration: none;

        overflow: hidden;

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

    .partner img {
        display: block;

        width: 100%;
        height: 140px;

        object-fit: contain;

        filter: grayscale(100%);
        opacity: 0.75;

        transition:
                filter 0.3s ease,
                opacity 0.3s ease,
                transform 0.3s ease;
    }

    .partner:hover {
        transform: translateY(-5px);

        background: rgba(255, 255, 255, 0.055);
        border-color: rgba(0, 255, 180, 0.25);

        box-shadow:
                0 12px 35px rgba(0, 0, 0, 0.25);
    }

    .partner:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.04);
    }

    .partner:hover {
        transform: translateY(-5px);

        background: rgba(255, 255, 255, 0.055);
        border-color: rgba(0, 255, 180, 0.25);

        box-shadow:
                0 12px 35px rgba(0, 0, 0, 0.25);
    }

    .partner:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.04);
    }


    /* =========================
       PARTNERS - TABLET
    ========================= */

    @media (max-width: 900px) {

        .partners {
            padding: 85px 30px;
        }

        .partners-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

    }


    /* =========================
       PARTNERS - MOBIEL
    ========================= */

    @media (max-width: 600px) {

        .partners {
            padding: 70px 20px;
        }

        .partners .section-heading {
            margin-bottom: 40px;
        }

        .partners-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .partner {
            min-height: 125px;
            padding: 25px 30px;
        }

        .partner img {
            max-width: 170px;
            max-height: 65px;
        }

    }

    /* =========================
   FOOTER
========================= */

    footer {
        position: relative;
        padding: 70px 40px 30px;

        background:
                linear-gradient(
                        180deg,
                        #050908 0%,
                        #030605 100%
                );

        border-top: 1px solid rgba(255, 255, 255, 0.06);
        text-align: center;
    }

    .footer-social {
        max-width: 700px;
        margin: 0 auto 55px;
    }

    .footer-social .eyebrow {
        margin-bottom: 25px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    .social-link {
        display: flex;
        align-items: center;
        gap: 12px;

        min-width: 170px;
        padding: 14px 22px;

        color: #fff;
        text-decoration: none;

        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;

        transition:
                transform 0.3s ease,
                border-color 0.3s ease,
                background 0.3s ease;
    }

    .social-link:hover {
        transform: translateY(-3px);

        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(0, 220, 170, 0.3);
    }

    .social-icon {
        width: 34px;
        height: 34px;

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

        border-radius: 50%;

        background: rgba(0, 220, 170, 0.1);
        color: #00dca8;

        font-size: 20px;
        font-weight: 700;
    }

    .social-link span:last-child {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.04em;
    }

    .footer-bottom {
        padding-top: 25px;

        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-bottom p {
        margin: 0;

        color: rgba(255, 255, 255, 0.4);
        font-size: 13px;
    }


    /* MOBIEL */

    @media (max-width: 600px) {

        footer {
            padding: 60px 20px 25px;
        }

        .social-links {
            flex-direction: column;
            align-items: center;
        }

        .social-link {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }

    }
