/**
 * MOBILE MENU FIX - VISIBLE & SCROLLABLE
 * Blue background, white text, extends below header
 */

@media (max-width: 768px) {
    /* Mobile menu when active - BLUE BACKGROUND, WHITE TEXT */
    .nav-links.active {
        display: flex !important;
        position: fixed !important;
        top: 60px !important;  /* Below navbar */
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%) !important;  /* Blue gradient */
        flex-direction: column !important;
        padding: 2rem 1.5rem !important;
        gap: 0 !important;
        z-index: 9990 !important;
        overflow-y: auto !important;  /* Allow scrolling */
        box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
    }
    
    /* Menu links - WHITE TEXT */
    .nav-links.active a {
        color: white !important;
        font-size: 1.125rem !important;
        font-weight: 600 !important;
        padding: 1rem 1.5rem !important;
        display: block !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        transition: all 0.3s ease !important;
    }
    
    /* Last link - no border */
    .nav-links.active a:last-child {
        border-bottom: none !important;
    }
    
    /* Hover effect */
    .nav-links.active a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        padding-left: 2rem !important;
    }
    
    /* Sign Up button in menu - WHITE BACKGROUND */
    .nav-links.active a.btn-primary {
        background: white !important;
        color: #0ea5e9 !important;
        border-radius: 50px !important;
        padding: 1rem 2rem !important;
        margin-top: 1rem !important;
        text-align: center !important;
        border: none !important;
        font-weight: 700 !important;
    }
    
    .nav-links.active a.btn-primary:hover {
        background: rgba(255, 255, 255, 0.9) !important;
        transform: scale(1.05) !important;
        padding-left: 2rem !important;
    }
}
