/* Mobile Navigation - Hamburger Menu */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #E31E24;
    cursor: pointer;
    padding: 10px;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

body.header-sticky {
    padding-top: 120px; /* Prevent content jump */
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #1a1a1a;
        transition: left 0.3s ease;
        z-index: 2000;
        overflow-y: auto;
        padding-top: 60px;
    }
    
    .main-nav.active {
        left: 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    }
    
    .main-nav .container {
        flex-direction: column;
        padding: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 18px 25px;
        color: white !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        justify-content: flex-start;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: #E31E24;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1999;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .nav-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #E31E24;
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
    }
}
