/*  Opmaak Header & Nav */
header nav {
    display: flex;
    align-items: center;
    padding: 1em 0.25em 1em 0.25em;
    font-family: "ProximaNova-Semibold";
    font-size: 0.85em;
    background-color: var(--achtergrondkleur-3);

    position: sticky;
    top: 0;
    z-index: 100;
}

.hamburgerInhoud {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border-top: 1px solid #f0f0f0;
}

.hamburgerInhoud li {
    width: 100%;
    border-bottom: 1px solid #f9f9f9;
}

.hamburgerInhoud li a {
    display: block;
    padding: 18px 25px;
    text-decoration: none;
    color: var(--tekstkleur-4);
    font-weight: 500;
    font-family: var(--lettertype-3);
    transition: background 0.3s ease;
}

.hamburgerInhoud.active {
    display: flex;
}

@media (min-width: 768px) {
    .hamburgerInhoud {
        display: flex;
        flex-direction: row;
        position: static;
    }

    .hamburger {
        display: none;
    }
}

header nav ul li {
    list-style: none;
    padding: 0em 0.5em 0em 0.5em;
}

header nav a {
    text-decoration: none;
    color: var(--tekstkleur-4);
}

header nav a:first-of-type {
    margin-right: auto;
}

header nav a img {
    height: 2em;
    width: auto;
    min-width: 10em;
    padding: 0em 0em 0em 0.5em;
}

header nav ul {
    display: flex;
}

header button {
    border: none;
    background: none;
}

header button svg {
    height: 1.75em;
    width: 100%;
    fill: var(--tekstkleur-4);
    padding-right: 2vw;
}

@media (min-width: 1024px) {
    header nav .hamburger {
        display: none;
    }

    header nav ul {
        display: flex;
    }
}

header section {
    background-color: green;
}

.navKnop {
    border: 1px solid black;
    padding: 0.5em 0.85em;
    border: 2px solid #1F7D65;
    border-radius: 100px;
    color: #1F7D65;
    margin-right: 0.5em;
}

#blok1 {
    background-image: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 60%), url("../images/afbeelding-header.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75% 75%;

    width: auto;
    height: 25rem;

    padding: 1.25em;

    display: flex;
    flex-direction: column;
    justify-content: end;
}

#blok1 button {
    color: var(--tekstkleur-3);
    padding: .85em;
    background-color: white;
    width: 100%;
    border-radius: 100px;
    border: 2px solid var(--tekstkleur-3);
    font-family: var(--lettertype-3);
    font-size: 16px;
    margin-bottom: 1.5em;
}

#blok1 a {
    color: var(--achtergrondkleur-4);
    text-decoration: none;
    font-family: var(--lettertype-3);
}

#blok1 a img {
    height: auto;
    width: 1em;
}

/* Opmaak van de main nav */
main nav ol {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: var(--lettertype-3);
    font-size: 0.88em;
    margin-left: 0.75em;
}

main nav ol li {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Bron: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/:not */
main nav ol li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1em;
    margin: 0 0.75em;
    background-image: url("../images/functional-images/chevron-right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 1em;
}

main nav ol li a {
    text-decoration: none;
    color: #761234;
}

/* Bron: https://gemini.google.com/share/ebdf00afc044  */
/* Prompt: "Hoe kan ik de laatste van deze nav een andere kleur en dikte geven?" */
main nav ol li a[aria-current="page"] {
    color: var(--tekstkleur-4);
    font-family: var(--lettertype-2);
}

main nav svg {
    height: 1.15em;
    width: auto;
    fill: var(--achtergrondkleur-4);
}