/* Basic styling for hamburger menu */
.hamburger-menu {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    padding: 0;
    box-sizing: border-box;
}
.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}
.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    background-color: #333;
    z-index: 10;
}
.nav-menu.active {
    display: flex;
}
.nav-menu a {
    padding: 15px;
    color: white;
    text-decoration: none;
    text-align: center;
    border-bottom: 1px solid #555;
}
.nav-menu a:hover {
    background-color: #555;
}