/* =========================================
   BASIS
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* =========================================
   ACHTERGROND (CINEMATIC DONKER)
========================================= */
body.home {
    min-height: 100vh;
    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;
}

/* =========================================
   TOP NAV
========================================= */
.top-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 15px;
    position: fixed;
    top: 0;
    z-index: 10;
}

.btn-uitslagen {
    background: rgba(255,255,255,0.12);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.45);
    transition: 0.3s ease;
}

.btn-uitslagen:hover {
    transform: translateY(-3px);
}

/* =========================================
   TITEL
========================================= */
.header-title {
    text-align: center;
    margin-top: 90px;
    font-size: 46px;
    font-weight: 900;
    color: white;
    text-shadow: 0 5px 20px rgba(0,0,0,0.7);
}

/* =========================================
   BANNERS (CINEMATIC CAPSULE)
========================================= */
.page-wrapper {
    width: min(95%, 1100px);
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Banner container */
.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;
}

/* Hover effect */
.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);
}

/* =========================================
   BOTTOM NAV
========================================= */
.bottom-nav-container {
    width: min(95%, 1100px);
    margin: 40px auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-button {
    padding: 12px 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);
    box-shadow: 0 4px 15px rgba(0,0,0,0.45);
    transition: 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-3px);
}

/* =========================================
   PAPPAS INSIDE
========================================= */
.pappas-inside-wrapper {
    text-align: center;
    margin: 40px 0;
}

.pappas-inside-hex {
    display: inline-block;
    padding: 22px 70px;
    color: white;
    font-weight: 900;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;

    clip-path: polygon(
        25% 0%, 75% 0%,
        100% 50%,
        75% 100%, 25% 100%,
        0% 50%
    );

    background: linear-gradient(135deg, #003366, #7EC8FF);
    border: 3px solid white;

    box-shadow:
        0 6px 20px rgba(0,51,102,0.45),
        0 0 18px rgba(255,255,255,0.45),
        inset 0 0 14px rgba(255,255,255,0.25);

    transition: 0.3s ease;
}

.pappas-inside-hex:hover {
    transform: translateY(-6px);
    box-shadow:
        0 10px 26px rgba(0,51,102,0.55),
        0 0 26px rgba(255,255,255,0.65),
        inset 0 0 18px rgba(255,255,255,0.35);
}

/* =========================================
   TERUGKNOP
========================================= */
.back-btn-fixed {
    position: sticky;
    bottom: 20px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    color: white;
    padding: 10px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.45);
    transition: 0.3s ease;
}

.back-btn-fixed:hover {
    transform: translateY(-3px);
}

/* =========================================
   MOBIEL
========================================= */
@media (max-width: 850px) {

    .banner {
        height: 140px;
        border-radius: 70px;
    }

    .banner-img {
        width: 180px;
    }

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