/* Basic Styles for Navbar */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* This will hide the list on mobile initially */
#nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

#nav-list li {
    margin: 0 15px;
}

#nav-list li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Active Link Highlight */
#nav-list li a.active {
    color: #4a6fa5; /* Highlight color for active link */
}

/* Hamburger Styles */
.hamburger {
    display: none; /* Hidden by default on desktop */
    font-size: 30px;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    #nav-list {
        display: none; /* Initially hide on mobile */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        right: 0;
        background: #fff;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    #nav-list.active {
        display: flex; /* Show when activated */
    }

    .hamburger {
        display: block; /* Show hamburger menu on mobile */
    }

    #nav-list li {
        margin: 10px 0; /* Space between links */
        padding: 0 15px; /* Padding for better click area */
    }
}