/* ============================= */
/* HEADER / NAVBAR */
/* ============================= */

nav {
    background: #0a4f3c;
    padding: 3px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    height: 70px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

nav ul li a:hover {
    color: #d4edda;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* RESPONSIVE NAVBAR */
@media (max-width: 768px) {

    nav {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        width: 100%;
        flex-direction: column;
        background: #0a4f3c;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    nav ul.active {
        max-height: 400px;
        padding: 10px 0;
    }

    nav ul li {
        text-align: center;
        padding: 10px 0;
    }
}



/* ===================================================== */
/* ====================== RESPONSIVE =================== */
/* ===================================================== */

@media (max-width: 768px) {

    /* NAVBAR */
    nav {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        width: 100%;
        flex-direction: column;
        background: #0a4f3c;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s;
    }

    nav ul.active {
        max-height: 400px;
        padding: 10px 0;
    }

    nav ul li {
        text-align: center;
        padding: 10px 0;
    }

   
}