/* Header Styles - Scoped and Minimal */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}
.logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2e8b57;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.main-nav {
    display: flex;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-list a {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.3s ease;
}
.nav-list a:hover, .nav-list a:focus {
    color: #2e8b57;
    outline: 2px solid #2e8b57;
    outline-offset: 2px;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.25rem;
}
.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}
/* Mobile Styles */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding-top: 5rem;
        z-index: 999;
    }
    .main-nav.open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.open .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}