html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #ded9d9;
    color: #272525;
}



nav {
    background-color: hsl(107, 84%, 24%);
    padding: 8px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex: 1;
}

nav a {
    background-color: #247651;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    background-color: #1c5d40;
    color: #e6bb0f;
    transform: scale(1.05);
}



main {
    max-width: 1400px;
    margin: 140px auto 40px;
    padding: 25px;
    background: white;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    border-radius: 12px;
}



h1 {
    color: hsl(107, 84%, 24%);
    font-size: 2.5rem;
    border-left: 10px solid hsl(107, 84%, 24%);
    padding-left: 15px;
    margin-bottom: 30px;
}

h2 {
    color: hsl(107, 84%, 24%);
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-top: 40px;
}



img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    transition: 0.3s;
}

img:hover {
    transform: scale(1.02);
}



video {
    width: 100%;
    max-width: 850px;
    display: block;
    margin: 25px auto;
    border-radius: 15px;
    box-shadow: 0 0 12px rgba(0,0,0,0.25);
}



footer {
    background-color: hsl(107, 84%, 24%);
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 0.9rem;
}



ul.bolletje_weg {
    list-style-type: none;
    padding-left: 0;
}



.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup:target {
    display: flex;
}

.popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.popup .close {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

nav a.active {
    background-color: #e6bb0f;
    color: #1c5d40;
    transform: scale(1.05);
}




@media (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        width: 100%;
    }

    nav a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .nav-logo {
        height: 40px;
        margin-bottom: 8px;
    }

    main {
        margin-top: 180px;
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    video {
        max-width: 100%;
    }
}
