/* Verbeterde stijl met active class en focus */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfaf6;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #6f4e37;
    color: white;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #8b5e3c;
    transition: background 0.3s ease, transform 0.2s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #a97457;
    transform: scale(1.05);
}

nav ul li a:focus {
    outline: 2px solid #fff;
}

/* Main Content */
main {
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 40px;
}

h2 {
    border-left: 6px solid #8b5e3c;
    padding-left: 10px;
    margin-bottom: 15px;
    color: #6f4e37;
}

p {
    font-size: 1.05rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

figure {
    margin: 20px auto;
    text-align: center;
}

figcaption {
    margin-top: 8px;
    font-style: italic;
    color: #555;
}

video {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #6f4e37;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    margin-top: 50px;
    border-top: 4px solid #a97457;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 8px;
    }

    main {
        width: 95%;
        padding: 20px;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
    }
}

/* Afbeeldingen in de galerij overzichtelijker maken */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery figure {
    flex: 1 1 250px;
    max-width: 300px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
