.site-header {
    display: flex;
    justify-content: space-between;
    align-items: bottom;
    padding: 1rem;
    background: var(--darkest-green-black);
    border-bottom: 1px solid #ccc;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo:hover{
    background-color: var(--deep-teal);
    outline: 2px solid white;
}

.nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    
}

.nav a {
    text-decoration: none;
    color:#fff;
}
.nav a:hover {
    text-decoration: underline;
    color: var(--title-green);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle .icon {
    font-size: 1.5rem;
    pointer-events: none;
}

.nav-toggle:focus {
    outline: 2px solid #000;
}

/* Responsive */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background: var(--darkest-green-black);
        position: absolute;
        top: 60px;
        right: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        width: 100%;
        font-size: 1.5rem;
        text-align: center;
        padding: 20px;
        z-index: 10;
    }

    .nav ul.open {
        display: flex;
        gap: 20px;
    }

    .nav-toggle {
        display: block;
        height: 31px;
    }
}
