/* Navigation Section */
.nav-container {
    background-color: #057c85;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin-right: 20px;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
}

nav ul li a:hover, nav ul li .active {
    background-color: #ff6666;
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #ff6666;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hide menu button on larger screens */
.menu-toggle {
    display: none;
}

/* Show menu button only on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show button on small screens */
        background-color: #057c85;
        color: white;
        padding: 10px 15px;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }

    .menu-toggle:active {
        background-color: #ff6666 !important;
    }

    /* Hide the nav menu by default */
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #057c85;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50px; /* Adjust based on your header height */
        left: 0;
        z-index: 1000;
    }

    /* Show menu when toggled */
    nav ul.nav-open {
        display: flex;
    }

    .menu-toggle {
        background-color: #057c85;
        color: white;
        padding: 10px 15px;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }
}

/* Keep nav visible on larger screens */
@media (min-width: 769px) {
    nav ul {
        display: flex !important;
    }
}


