/* Reset standaard browser styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Algemene pagina styling */
body {
    background: #efefef;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Hoofd container */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 40px auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

/* Hero sectie */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url("../photos/arena.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Donkere overlay over afbeelding */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Content in hero */
.overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

/* Grote titel */
.overlay h1 {
    max-width: 1000px;
    margin-bottom: 25px;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
}

/* Datum tekst */
.overlay p {
    margin-bottom: 35px;
    font-size: 24px;
}

/* Hero knop */
.hero-btn {
    width: fit-content;
    display: inline-block;
    padding: 18px 34px;
    background: black;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: 0.3s;
}

/* Hover effect knop */
.hero-btn:hover {
    background: #222;
}

/* Info sectie */
.info-section {
    padding: 40px 70px;
    background: white;
}

/* Ruimte tussen informatie blokken */
.info-section section {
    margin-top: 45px;
}

/* Geen marge boven eerste blok */
.info-section section:first-child {
    margin-top: 0;
}

/* Titels in info sectie */
.info-section h1 {
    padding-bottom: 10px;
    font-size: 38px;
    color: black;
}

/* Paragrafen */
.info-section p {
    max-width: 1000px;
    font-size: 18px;
    line-height: 1.7;
}

/* Lijsten */
.info-section ul {
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* List items */
.info-section li {
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive styling */
@media (max-width: 900px) {

    /* Padding hero aanpassen */
    .overlay {
        padding: 0 30px;
    }

    /* Titel kleiner maken */
    .overlay h1 {
        font-size: 48px;
    }

    /* Tekst kleiner maken */
    .overlay p {
        font-size: 20px;
    }

    /* Kleinere knop */
    .hero-btn {
        padding: 16px 28px;
        font-size: 18px;
    }

    /* Minder padding info sectie */
    .info-section {
        padding: 60px 30px;
    }

    /* Kleinere titels */
    .info-section h1 {
        font-size: 32px;
    }

    /* Kleinere tekst */
    .info-section p,
    .info-section li {
        font-size: 17px;
    }
}