/* NAVBAR BASIS (HERSTELDE KLEUR) */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 5%; 
    position: fixed; 
    top: 0; 
    width: 100%; 
    height: var(--navbar-height); 
    z-index: 1000; 
    
    /* De originele zachtgrijze/groene tint */
    background-color: #edfbd2; 
    
    /* Een subtiele schaduw in plaats van een harde lijn geeft meer diepte */
    border-bottom: 1px solid rgba(72, 145, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-container {
    flex-shrink: 0;
}

/* DE LINKS ALS KNOPPEN */
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 0.8rem; 
    align-items: center; 
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links li a { 
    text-decoration: none; 
    color: var(--logo-donker); 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    padding: 0.7rem 1.2rem;
    
    /* We maken de rand iets donkerder zodat hij opvalt op de grijze achtergrond */
    border: 2px solid var(--logo-licht); 
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparant wit voor 'glass' effect */
    
    border-radius: 50px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

/* HOVER EFFECT */
.nav-links li a:hover { 
    background-color: var(--logo-licht); 
    color: var(--white); 
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(151, 215, 0, 0.2);
}

.nav-links li a:focus-visible,
.social-icons-nav a:focus-visible,
.menu-toggle:focus-visible,
.footer-socials a:focus-visible {
    outline: 3px solid rgba(72, 145, 0, 0.35);
    outline-offset: 3px;
}

.main-logo { height: 60px; }

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--logo-donker);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover {
    background-color: var(--white);
    transform: translateY(-1px);
}

/* SOCIAL ICONS IN NAV */
.nav-social-item {
    margin-left: 0.2rem;
}

.social-icons-nav {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(0,0,0,0.05);
}

.social-icons-nav a {
    color: var(--logo-donker);
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-icons-nav a:hover {
    color: var(--logo-licht);
    transform: scale(1.1);
}

/* FOOTER */
.main-footer { background: var(--klassiek-groen); color: var(--white); padding: 4rem 10% 2rem; }
.footer-meta {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.footer-meta-card {
    padding: 1rem;
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-meta-card p {
    margin: 0;
}

.footer-meta-card strong {
    color: var(--logo-licht);
}

.footer-meta-social p {
    margin-bottom: 0.7rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0;
    flex-wrap: wrap;
}

.footer-socials a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: var(--logo-licht);
    transform: translateY(-2px);
}

.footer-bottom { text-align: center; margin-top: 2rem; opacity: 0.5; font-size: 0.8rem; }

@media (max-width: 960px) {
    .navbar {
        padding: 0 1.25rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% - 1px);
        right: 1.25rem;
        left: 1.25rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
        background-color: rgba(237, 251, 210, 0.98);
        border: 1px solid rgba(72, 145, 0, 0.12);
        border-radius: 24px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li,
    .nav-social-item {
        width: 100%;
        margin-left: 0;
    }

    .nav-links li a {
        width: 100%;
        text-align: center;
    }

    .social-icons-nav {
        justify-content: center;
        margin-left: 0;
        padding-left: 0;
        padding-top: 0.5rem;
        border-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .footer-meta {
        grid-template-columns: 1fr;
    }
}
