/* BASIS STYLING*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f4f2;
    color: #333;
}

/* NAVIGATIE */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: bold;
    color: #2e7d32;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover animatie */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #2e7d32;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #2e7d32;
}

.nav-links a:hover::after {
    width: 100%;
}

/*HEADER*/

header {
    background: linear-gradient(120deg, #2e7d32, #66bb6a);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.sectie-A {
    margin: 0;
}

/*HOOFD LAYOUT */
main {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

section {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 40px;
}

ul {
    line-height: 1.6;
    padding-left: 0;
    list-style-position: inside;
}
li {
    margin-bottom: 10px;
}
/*VIDEO*/

.video-A {
    text-align: center;
	margin: auto;
}

/*FOOTER*/

footer {
    text-align: center;
    padding: 20px;
    background: #2e7d32;
    color: white;
}