.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    position: relative;
    z-index: 1000;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-harvest-green);
    text-decoration: none;
    text-transform: uppercase;
}

.navbar .logo img {
    width: 180px;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar nav ul li a {
    color: var(--primary-harvest-green);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar nav ul li a:hover,
.navbar nav ul li a:focus {
    color: var(--primary-harvest-green);
    outline: none;
}

/* Dropdown menu */
.navbar nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 6px;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
}

.navbar nav ul li:hover ul,
.navbar nav ul li:focus-within ul {
    display: block;
}

.navbar nav ul li ul li a {
    display: block;
    padding: 10px 20px;
}

/* Mobile toggle */
.navbar .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.navbar .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-forest-green);
    border-radius: 2px;
}