/* RESPONSIVE FIXES - INDEPENDENT DESKTOP/MOBILE SOLUTIONS */

/* Desktop navbar - original white text */
@media (min-width: 992px) {
    .nav-link {
        color: white !important;
    }
    
    .nav-link:hover {
        color: #ffc107 !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    .nav-link.active {
        color: #ffc107 !important;
        background-color: rgba(255, 255, 255, 0.2) !important;
    }
}

/* Mobile navbar - visible text with background */
@media (max-width: 991px) {
    .responsive-menu {
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 1rem !important;
        border-radius: 0.5rem !important;
        margin-top: 0.5rem !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    }
    
    .responsive-menu .nav-link {
        color: #333 !important;
        background-color: transparent !important;
    }
    
    .responsive-menu .nav-link:hover,
    .responsive-menu .nav-link.active {
        color: #007bff !important;
        background-color: rgba(0, 123, 255, 0.1) !important;
    }
}
