* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: url('../images/canopy.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
    background-size: cover;
    color: #2e2e2e;
    padding: 0;
    line-height: 1.6;
}

/* Eventueel extra: optionele overlay als tekst niet goed leesbaar is */
/*
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
}
*/

nav {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-bottom: 2px solid #dce4dc;
    text-align: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #356859;
    font-weight: 600;
}

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

.header {
    text-align: center;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: white; /* behoud leesbaarheid */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

section {
    padding: 30px;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #666;
}

footer a {
    color: #356859;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
