/* Simple Mobile Menu - Guaranteed to Work */

@media (max-width: 768px) {
    /* Hide desktop navigation on mobile */
    header nav {
        display: none !important;
    }
    
    /* Show hamburger button */
    .mobile-menu-btn {
        display: block !important;
    }
    
    /* Mobile Menu Sidebar */
    .mobile-menu-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 9999;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    }
    
    .mobile-menu-sidebar.active {
        right: 0;
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        background: #e94e4e;
        color: white;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-header h3 {
        margin: 0;
        font-size: 1.2rem;
        color: white;
        font-weight: 600;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px 10px;
    }
    
    /* Mobile Menu Links */
    .mobile-menu-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu-links li {
        border-bottom: 1px solid #eee;
    }
    
    .mobile-menu-links a {
        display: block;
        padding: 15px 20px;
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
    }
    
    .mobile-menu-links a:active {
        background: #f8f9fa;
    }
    
    /* Submenu */
    .mobile-submenu {
        display: none;
        background: #f8f9fa;
        padding: 0;
        list-style: none;
    }
    
    .mobile-submenu.active {
        display: block;
    }
    
    .mobile-submenu a {
        padding: 12px 20px 12px 40px;
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        float: right;
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-toggle.active {
        transform: rotate(180deg);
    }
    
    /* Overlay - Removed (no dark filter) */
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Desktop - hide mobile menu elements */
@media (min-width: 769px) {
    .mobile-menu-sidebar,
    .mobile-menu-overlay {
        display: none !important;
    }
}
