/* Стили для мобильного меню */
.mobile-menu-toggle {
    display: none;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu .nav-links {
    display: flex !important;
    flex-direction: column;
    padding: 1rem;
    list-style: none;
    margin: 0;
    gap: 0;
}

.mobile-menu .nav-links li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu .nav-links a {
    display: block;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-menu .nav-links a:hover {
    background-color: #f8f9fa;
    color: #667eea;
}

/* Медиа-запросы для мобильного меню */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .nav-links {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu {
        top: 70px;
    }
} 