/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #004400;
}

.nav-links {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 100;
}

.nav-links button{
    padding: 8px 14px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 510;
    font-size: 16px;
}

.nav-links a:hover{
    color: #4CAF50;
}






/* Hamburger Button */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    background: none;
    border: none;
}


@media (max-width: 768px) {
    .hamburger {
    display: block;
    }

    .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px;
    border-top: 1px solid #eee;
    }

    .nav-links.active {
    display: flex;
    }

    .nav-actions {
    display: none; /* hide actions in top bar */
    }

}