/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8f5e8;
    
    .headerContainer {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
        
        .logo {
            a {
                color: #4CAF50;
                
                &:hover {
                    color: #45a049;
                }
            }
            
            h1 {
                font-size: 1.8rem;
                font-weight: 700;
                font-family: 'Comfortaa', cursive;
            }
        }
        
        .nav {
            .navList {
                display: flex;
                gap: 40px;
                
                li {
                    a {
                        color: #333;
                        font-weight: 500;
                        padding: 8px 16px;
                        border-radius: 20px;
                        transition: all 0.3s ease;
                        
                        &:hover {
                            background-color: #e8f5e8;
                            color: #4CAF50;
                        }
                    }
                }
            }
        }
        
        .mobileMenuToggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            
            span {
                width: 25px;
                height: 3px;
                background-color: #333;
                transition: all 0.3s ease;
                border-radius: 2px;
            }
            
            &.active {
                span:nth-child(1) {
                    transform: rotate(45deg) translate(5px, 5px);
                }
                
                span:nth-child(2) {
                    opacity: 0;
                }
                
                span:nth-child(3) {
                    transform: rotate(-45deg) translate(7px, -6px);
                }
            }
        }
    }
}

/* Mobile Header */
@media (max-width: 768px) {
    .header {
        .headerContainer {
            padding: 0 16px;
            
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .nav {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background-color: white;
                border-bottom: 1px solid #e8f5e8;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                
                &.active {
                    transform: translateY(0);
                    opacity: 1;
                    visibility: visible;
                }
                
                .navList {
                    flex-direction: column;
                    gap: 0;
                    padding: 20px;
                    
                    li {
                        a {
                            display: block;
                            padding: 12px 0;
                            border-bottom: 1px solid #f0f0f0;
                            
                            &:hover {
                                background-color: transparent;
                                color: #4CAF50;
                            }
                        }
                    }
                }
            }
            
            .mobileMenuToggle {
                display: flex;
            }
        }
    }
}