/* BASIS & ACHTERGROND – zelfde vibe als index */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-image: linear-gradient(
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.78)
    ), url('/afbeelding/padelkooi2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

/* HEADER BAR – zelfde stijl als andere pagina's */
.header-bar {
    text-align: center;
    padding: 30px;
    font-size: 42px;
    font-weight: 900;
    color: white;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(14px);
    text-shadow: 0 5px 20px rgba(0,0,0,0.7);
    margin-bottom: 40px;
}

/* TERUGKNOP – hergebruik bestaande stijl */
.back-wrapper {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 50;
}

.back-btn {
    padding: 10px 20px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 12px rgba(255,255,255,0.45);
}

/* PAGE WRAPPER – zelfde als hoofdpagina banners */
.page-wrapper {
    width: min(95%, 1100px);
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* BANNER – 1-op-1 kopie van index-stijl */
.banner {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.35);
    border-radius: 85px;
    border-left: 6px solid #FFD54F;
    box-shadow: 0 10px 35px rgba(0,0,0,0.55);
    backdrop-filter: blur(14px);
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: 0.25s ease;
    position: relative;
}

.banner:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.75);
}

/* Afbeelding links */
.banner-img {
    width: 260px;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 85px 0 0 85px;
    position: relative;
}

/* Cinematic overlay */
.banner-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.15),
        rgba(0,0,0,0)
    );
    border-radius: inherit;
}

/* Titel rechts */
.banner-title {
    font-size: 32px;
    font-weight: 900;
    padding-left: 35px;
    color: white;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

/* SPECIFIEKE AFBEELDINGEN VOOR COMPETITIES */
.banner-img-najaar2026 {
    background-image: url('/afbeelding/najaar2026.png');
    background-position: 25% center; /* eventueel tunen */
}

.banner-img-najaar2026ic {
    background-image: url('/afbeelding/najaar2026ic.png');
    background-position: 25% center; /* eventueel tunen */
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .banner {
        height: 140px;
        border-radius: 70px;
    }

    .banner-img {
        width: 200px;
    }

    .banner-title {
        font-size: 24px;
    }
}
