/* === ALGEMENE PAGINA-STYLING === */

body.Gyvano {
    background-color: rgb(225, 225, 0);
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #222;
}

/* === NAVIGATIE === */

nav {
    height: 70px;
    background-color: white;
    box-shadow: 0 6px 5px -2px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 100;
}

#logo {
    height: 50px;
    margin-right: 10px;
}

.nav-buttons {
    background-color: white;
    color: #006241;
    cursor: pointer;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform .15s ease, background-color .15s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.nav-buttons:hover {
    background-color: #e7f5ec;
    transform: translateY(-3px);
}

.nav-buttons:hover{
    background-color: rgb(225, 225, 225);
}
.dropdown-items{
    display: none;
    position: absolute;
    z-index: 1;
    margin-top: 110px;
    width: auto;
    border-radius: 5px;
}
.dropdown-items a:hover{
    background-color: rgb(225, 225, 225);
}
.dropdown-items a{
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;  
    color: rgb(0, 98, 65);
    text-decoration: none;
    display: block;
    font-size: 17px;
    display: flex;
    height: 35px;
}
.dropdown{
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown:hover .dropdown-items{
    display: block;
    background-color: white;
    box-shadow: 0 4px 2px -2px rgba(0,0,0,.1);
    border: 2px solid rgba(0, 0, 0, 0.15);
  }

/* === TITEL === */

.h1 {
    background-color: #006241;
    color: white;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    padding: 14px 0;
    width: 82%;
    margin: 28px auto;
    border-radius: 40px;
    letter-spacing: .4px;
}

/* === CONTENT CONTAINER === */

.content-box {
    background-color: #006241;
    width: 78%;
    margin: 0 auto 40px auto;
    padding: 36px;
    border-radius: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    font-size: 16px;
    line-height: 1.7;
}

.content-box h2 {
    color: #fff;
    margin-top: 20px;
    font-size: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.15);
    padding-bottom: 6px;
}

.content-box ul {
    margin-left: 18px;
    text-align: left;
}

.content-box li {
    margin-bottom: 8px;
}

/* === SLB SECTIE (FOTO + INFO) === */

.slb-section {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-top: 12px;
}

.slb-foto {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid rgba(255,255,255,0.08);
    background-color: #fff;
}

/* === OUDERAVONDEN BOX === */

.ouderavonden-box {
    background-color: white;
    color: #222;
    padding: 18px 22px;
    border-radius: 16px;
    margin-top: 22px;
}

.ouderavonden-box h3 {
    margin-top: 0;
    font-size: 18px;
    color: #006241;
}

.ouderavonden-box ul {
    margin-left: 18px;
}

/* === FOOTER === */

.footer {
    text-align: center;
    background-color: #006241;
    color: white;
    padding: 16px;
    font-size: 14px;
}

/* === RESPONSIVE === */

@media (max-width: 900px) {

    .h1, .content-box {
        width: 94%;
    }

    .slb-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .slb-foto {
        width: 190px;
        height: auto;
    }

    nav {
        flex-wrap: wrap;
        padding: 10px;
        justify-content: center;
        gap: 6px;
    }

    .nav-buttons {
        padding: 8px 12px;
        font-size: 13px;
    }
}
