/* Page-specific mobile menu overrides */
/* This file ensures mobile menu consistency across all pages */

@media screen and (max-width: 768px) {
    /* Force consistent hamburger styling */
    .navbar .hamburger {
        display: flex !important; /* Override any display: none */
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent !important;
        border: none !important;
        cursor: pointer;
        padding: 0 !important;
        z-index: 1001;
        position: relative !important;
    }

    /* Override any custom nav styles */
    .navbar .nav-links {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        padding-top: 100px !important;
    }
    
    /* Fix mobile icons */
    .navbar .mobile-social-icons {
        display: flex !important;
        position: fixed !important;
        bottom: 4rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    /* Hide any duplicate mobile menus */
    .nav-container .mobile-social-icons:not(.navbar .mobile-social-icons) {
        display: none !important;
    }
    
    /* Fix nav activation */
    .nav-links:not(.active) {
        right: -100% !important;
        pointer-events: none !important;
    }
    
    .nav-links.active {
        right: 0 !important;
        pointer-events: auto !important;
    }
}
