/* ------- Reset standaard browser styling ------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

/* ------- Dit zorgt ervoor dat de Montserrat font werkt ------- */
.montserrat-rogue {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight(400 700);
    font-style: normal;
}

/* ------- Basis instellingen van de website ------- */
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ------- Header bovenaan de pagina ------- */
header {
    color: #000;
    position: sticky;
    top: 0;
}

/* ------- Main content van de pagina ------- */
main {
    padding: 20px;
    flex: 1;
}

/* ------- Algemene kleur voor H2 titels ------- */
h2 {
    color: #C49F4A;
}

/* ------- Footer onderaan de pagina ------- */
footer {
    background-color: #F36A22;
    color: #000;
    padding: 10px;
    text-align: center;
    border-top: #000 solid 2px;
}

/* ------- Navbar ------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #F36A22;
    color: #000;
    text-align: center;
    border-bottom: #000 solid 5px;
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative;
}

/* ------- Linker deel van de navbar ------- */
.left-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ------- FIFA WK logo ------- */
.left-logo {
    height: 70px;
}

/* ------- Titel naast het logo ------- */
.logo-text {
    font-size: 28px;
    font-weight: bold;
}

/* ------- Midden KNVB logo ------- */
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* ------- Grootte van het KNVB logo ------- */
.logo-center img {
    height: 70px;
}

/* ------- Navigatie links ------- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

/* ------- Styling van de navbar links ------- */
.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
}

/* ------- Hover effect op navbar links ------- */
.nav-links a:hover {
    color: rgb(88, 88, 88);
}

/* ------- Actieve pagina link ------- */
.nav-links a.active {
    font-weight: bold;
    text-decoration: underline;
}