body {
    font-family: 'Bebas Neue', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
}

#IndexAchtergrondImg {
    width: 100vw;
    object-fit: cover; /* Afbeelding behoud aspect ratio, wordt geclipt indien viewport te groot/klein */
    position: fixed;
}

#AchtergrondImg {
    width: 100vw;
    object-fit: cover;
    position: fixed;
    filter: brightness(90%);
}

#navigatiebalk {
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between; /* Content wordt horizontaal gelijk verdeeld in container */
    /* Plaats de inhoud aan de uiteinden van de navigatiebalk */
    position: relative;
    top: 0;
    width: 100vw;
}

#nav_knoppen {
    margin-right: 1vw;
    display: flex;
    align-items: center;
}

#knop {
    font-size: 1vw;
    color: #fff;
    text-decoration: none;
    padding: .5vw 1vw; /* Padding -> vanbinnen, margin -> vanbuiten */
    margin: 0 .5vw;
    font-weight: bold;
}

#huidige_knop {
    font-size: 1vw;
    color: #fff;
    text-decoration: none;
    padding: .5vw 1vw;
    margin: 0 .5vw;
    font-weight: bold;
    text-decoration: underline;
}

nav a:not(#nav_scheidingsteken):hover {
    text-decoration: underline;
}

#logo {
    margin-left: 1vw;
}

#logo img {
    height: 5vw;
}

@font-face {
    font-family: 'CustomFont';
    src: url('fonts/coolvetica\_rg.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#home {
    display: flex;
    flex-direction: column;
    justify-content: center; /* X-as */
    text-align: center;
    position: relative;
    color: #fff;
}

#slogan {
    position: relative;
    top: 50vh;
    transform: translate(0, -100%);
    font-family: 'CustomFont', sans-serif;
    color: #ffffff;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.4);
}

#slogan h1 {
    text-align: center;
    font-size: 175%;
}

#slogan p {
    text-align: center;
    font-size: 125%;
}

#slogan::before,
#slogan::after {
    content: '';
    display: block;
    width: 400px;
    height: 2px;
    background-color: white;
    margin: 10px auto;
}

footer {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Footer van de index */
#IndexFooter{ 
    position: absolute;
    bottom: 0;
}

/* ABOUT PAGE */
#about_content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    /* Afstand tussen border vd box en te tekst */
    border-radius: 10px;
    width: 70vw;
    margin-bottom: 250px;
    /* Plaats in het midden */
    position: relative;
    left: 50vw;
    transform: translate(-50%, 0px);
    top: 10vh;
    /* tekst */
    color: white;
    font-family: 'CustomFont', sans-serif;
}

#about_content p,h1,h2,h3 {
    text-align: left;
}

#about_content h2 {
    text-align: center;
    font-weight: bold;

}

#about_content h3 {
    font-weight: bold;
}

#about_content h2::before,
#about_content h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: white;
    margin: 10px auto;
}

/* Gallerij */
#gallerij_body {
    background-color: #ffbd77;
}

.gallerij-container .box {
    display: flex;
    flex-direction: row; /* Horizontaal */
    justify-content: space-between;
    margin-left: .125vw;
    margin-right: .125vw;
}

.gallerij-container .box .picture-container {
    display: flex;
    flex-direction: column; /* Verticaal */
    width: calc(100% / 3%);
    margin-left: .25vw;
    margin-right: .25vw;
}

.gallerij-container .box .picture-container picture img {
    width: 100%;
    border-radius: .5vw;
    margin-top: .25vw;
    margin-bottom: .25vw;
}

/* CONTACT PAGINA */
#contact_content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    /* Afstand tussen border vd box en te tekst */
    border-radius: 10px;
    width: 50vw;
    margin-bottom: 250px;
    /* Plaats in het midden */
    position: relative;
    left: 50vw;
    transform: translate(-50%, 0px);
    top: 10vh;
    /* tekst */
    color: white;
    font-family: 'CustomFont', sans-serif;
}

#contact_content h1{
    text-align: center;
}
  
#contactForm label {
    display: block;
    margin-bottom: 8px;
}

#contactForm input,
#contactForm textarea {
    background-color: rgb(230, 230, 230);
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box; /* Width en height properties omvatten content, padding en border, maar niet margin */
}

#contactForm textarea{
    resize: none; /* Gebruiker kan box niet vergroten/verkleinen */
}

#verstuurKnop {
    background-color: #af9b4c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#verstuurKnop:hover {
    background-color: #dac15e;
}
  

/* Viewport kleiner dan afbeelding breedte */
@media only screen and (max-width: 3000px) {
    #AchtergrondImg {
        height: 100vh;
    }

    #IndexAchtergrondImg {
        height: 100vh;
    }

    #navigatiebalk {
        padding: 0px;
    }
}


/* Tablet */
@media only screen and (min-width: 600px) and (max-width: 1023px) {
    #knop {
        font-size: 2vw;
        padding: 1vw 2vw;
        margin: 0 1vw;
    }

    #huidige_knop {
        font-size: 2vw;
        padding: 1vw 2vw;
        margin: 0 1vw;
    }

    #logo img {
        height: 10vw;
    }
}

/* Mobile */
@media only screen and (max-width: 600px) {
    body {
        width: 100vw;
        height: 100vh;
    }

    #navigatiebalk {
        padding: 0px;
    }

    #logo img {
        height: 10vw;
    }

    #knop {
        font-size: 3vw;
        padding: .5vw 1vw;
        margin: 0 .5vw;
    }

    #huidige_knop {
        font-size: 3vw;
        padding: .5vw 1vw;
        margin: 0 .5vw;
    }

    #slogan h1 {
        font-size: 125%;
    }

    #slogan p {
        font-size: 100%;
    }

    #slogan::before,
    #slogan::after {
        width: 75vw;
    }

    /* About Pagina */
    #about_content h2::before,
    #about_content h2::after {
        width: 75%;
    }

    /* Gallerij Pagina */
    .gallerij-container .box {
        flex-direction: column;
        margin-left: 1vw;
        margin-right: 1.3vw;
    }

    .gallerij-container .box .dream {
        width: 100%;
    }

    .gallerij-container .box .dream img {
        margin-top: 1vw;
        margin-bottom: 1vw;
        margin-left: 0vw;
        margin-right: 0vw;
    }

    /* Contact form */
    #contact_content {
        padding: 30px;
        width: 75vw;
        margin-bottom: 250px;
        top: 10vh;
    }
}