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

/* Basis opmaak */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff; /* Achtergrondkleur wit */
    color: #333;
}

/* Header */
header {
    background: #35424a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hoofdsectie */
main {
    padding: 20px;
}

/* Secties */
section {
    margin: 20px 0;
    padding: 20px;
    background: #fff; 
    border-radius: 5px;
}

/* Afbeeldingen */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background: #35424a;
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Scroll to top button */
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #35424a;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none; /* Verberg de knop standaard */
}

#scrollToTop:hover {
    background-color: #2c3e50;
}
.foto-galerij {
    display: flex; /* Flexbox inschakelen */
    justify-content: space-between; /* Zorgt voor ruimte tussen de foto's */
    flex-wrap: wrap; /* Zorgt ervoor dat foto's op de volgende regel gaan als er niet genoeg ruimte is */
}

.foto-galerij img {
    max-width: 23%; /* Zorgt ervoor dat de afbeeldingen niet te groot worden */
    height: auto; /* Houdt de verhouding van de afbeeldingen */
    margin-bottom: 20px; /* Voeg wat ruimte onder de afbeeldingen toe */
}

/* Media query voor mobiele apparaten */
@media (max-width: 768px) { /* Pas de waarde aan als je een andere breakpoint wilt */
    .foto-galerij {
        flex-direction: column; /* Maakt de afbeeldingen verticaal */
        align-items: center; /* Centreert de afbeeldingen */
    }
    
    .foto-galerij img {
        max-width: 90%; /* Zorg ervoor dat ze niet te groot zijn op mobiel */
    }
}
