/* Sportfestival Shared Styles */
* {
    scroll-behavior: smooth;
}

.campaign-header {
    width: 100dvw;
    height: 95dvh;
    background-color: #17304E;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    position: relative;
    overflow: hidden;
}

.campaign-header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.campaign-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 48, 78, 0.7);
    z-index: 2;
}

.campaign-header p {
    color: white;
}

.campaign-header-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.campaign-header-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.campaign-header-content p {
    font-size: 1.3rem;
}

.cta-button {
    width: fit-content;
    font-weight: bold;
    color: #17304E;
    background: #FFC224;
    transition: transform 0.2s;
    font-size: 1.2rem;
    padding: 0.875rem 1.75rem;
}

/* Mobile screens */
@media (max-width: 767px) {
    .campaign-header-content h1 {
        font-size: 2.8rem;
    }

    .campaign-header-content p {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

.campaign-header nav {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 4;
}

.campaign-header nav a {
    color: #9ebada;
}

.campaign-header nav a:hover {
    text-decoration: underline;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.cta-button:hover {
    color: #17304E;
    transform: scale(1.1);
}

.secondary.cta-button {
    background: #2E86C8;
    color: white;
}

.secondary.cta-button:hover {
    color: white;
}

main {
    padding-bottom: 6rem;
}

.campaign-content {
    margin-top: 6rem;
}

/* Zorg dat de afstand boven de routes gelijk is aan mb-5 (±3rem) op beide pagina's */
#routes.campaign-content {
    margin-top: 3rem;
}

.campaign-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 20% center;
    border-radius: 1rem;
}

/* Zorg dat image box en info box even hoog zijn */
.campaign-image-wrapper {
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

/* Als de rij stretch gebruikt, laat de infobox dan de volledige kolomhoogte innemen */
.campaign-content-text.h-100 {
    height: 100%;
}

.campaign-content-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #c6d5e7;
    border-radius: 1rem;
    padding: 2rem;
    color: #17304E;
    box-sizing: border-box;
}

.campaign-content-text p {
    color: #17304E;
    margin: 0; /* voorkom dubbele marge met gap */
}

.campaign-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.campaign-benefits-list li {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.campaign-steps-list {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.campaign-steps-list li {
    list-style: auto;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

.campaign-video-section {
    margin-bottom: 2rem;
}

.campaign-video-container {
    background: #C6D5E7;
    border-radius: 1rem;
    overflow: hidden;
    padding: 2rem;
}

.campaign-video-title {
    color: #17304E;
    font-size: 1.5rem;
}

.campaign-video-player {
    width: 100%;
    border-radius: 0.5rem;
    background: #000;
    margin: 1rem auto;
}

.campaign-video-description {
    color: #17304E;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

div>ul {
    padding-left: 1rem;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 1rem;
}

/* in de infobox geen extra ondermarge op lijsten, zodat gap spatiëring bepaalt */
.campaign-content-text > ul {
    margin-bottom: 0;
}

ul ul {
    padding-left: 2rem;
}

li {
    list-style: disc;
    font-family: 'Raleway', sans-serif;
}

/* Routes blauw kader (landscape) */
.routes-box {
    background: #C6D5E7;
    border-radius: 1rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .routes-box {
        padding: 2rem;
    }
}
