/* ===== HEADER ===== */

.site-header {
    background: #fff;
    border-bottom: 3px solid #ecbd00;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.header-logo img {
    height: 55px;
}

/* NAV */
.nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav ul li {
    position: relative;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

/* UNDERLINE */
.nav a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background: #0c7459;
    transition: 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    top: 40px;
    left: 0;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* DESKTOP */
@media (min-width: 769px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* MOBILE */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        font-size: 22px;
        cursor: pointer;
    }

    .nav {
        position: absolute;
        top: 65px;
        left: 10px;
        width: 200px;
        background: white;
        display: none;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }

    .dropdown-menu {
        display: none !important;
        position: relative;
        box-shadow: none;
        margin-top: 5px;
        border-left: 2px solid #ecbd00;
    }

    .dropdown.active > .dropdown-menu {
        display: block !important;
    }

    .dropdown:hover > .dropdown-menu {
        display: none !important;
    }
}

/* ===== FOOTER ===== */

.footer {
    padding: 10px;
    text-align: center;
    font-size: 13px;
    color: white;
    background: #0c7459;
    border-top: 4px solid #ecbd00;
}