/* assets/css/header.css */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    height: 40px;
    width: auto;
}

.menu-toggle {
    display: block;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

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

.nav-menu a {
    padding: 15px 20px;
    text-decoration: none;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    background-color: var(--light);
    color: var(--primary);
}

/* Media Queries */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        box-shadow: none;
        background: transparent;
    }
    
    .nav-menu a {
        border-bottom: none;
        padding: 0 15px;
    }
}