/* Super simple mobile menu */
@media (max-width: 991px) {
    /* Hide desktop navigation */
    .nav-left, .nav-right {
        display: none !important;
    }
    
    /* Logo positioning - left aligned with vertical centering */
    .logo {
        position: fixed !important;
        top: 20px !important; /* Centered in the nav background (70px height) */
        left: 15px !important;
        z-index: 1000 !important;
        padding: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    /* Full-width navigation background with Apple-like blur effect */
    .nav-background {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 70px !important; /* Increased height for equal padding */
        background-color: rgba(0, 0, 0, 0.5) !important; /* Semi-transparent background */
        backdrop-filter: blur(20px) !important; /* Strong blur for Apple-like effect */
        -webkit-backdrop-filter: blur(20px) !important;
        z-index: 999 !important;
        opacity: 0 !important; /* Hidden by default */
        transition: opacity 0.3s ease !important;
    }
    
    /* Show background when scrolled */
    .scrolled .nav-background {
        opacity: 1 !important;
    }
    
    .logo img {
        max-height: 35px !important;
        width: auto !important;
    }
    
    /* Hamburger menu - more visible and clickable - STICKY */
    .hamburger-menu {
        display: block !important;
        position: fixed !important;
        top: 20px !important; /* Centered in the nav background (70px height) */
        right: 15px !important;
        width: 30px !important;
        height: 25px !important;
        cursor: pointer !important;
        z-index: 1000 !important;
        background-color: rgba(0, 0, 0, 0.3) !important; /* More transparent to match Apple style */
        border-radius: 8px !important; /* Slightly more rounded corners */
        padding: 10px !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Add stronger background to hamburger when scrolling - Apple style */
    .scrolled .hamburger-menu {
        background-color: rgba(30, 30, 30, 0.6) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Hamburger menu spans - the three lines */
    .hamburger-menu span {
        display: block !important;
        position: absolute !important;
        height: 2px !important;
        width: 100% !important;
        background: white !important;
        border-radius: 2px !important;
        opacity: 1 !important;
        left: 0 !important;
        transform: rotate(0deg) !important;
        transition: .25s ease-in-out !important;
    }
    
    /* Position the three lines */
    .hamburger-menu span:nth-child(1) {
        top: 0px !important;
    }
    
    .hamburger-menu span:nth-child(2) {
        top: 10px !important;
    }
    
    .hamburger-menu span:nth-child(3) {
        top: 20px !important;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        top: 10px !important;
        transform: rotate(135deg) !important;
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0 !important;
        left: -60px !important;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        top: 10px !important;
        transform: rotate(-135deg) !important;
    }
    
    /* Mobile menu overlay - fullscreen with blur background */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); /* Dark background */
        backdrop-filter: blur(10px); /* Apple-style blur */
        -webkit-backdrop-filter: blur(10px); /* For Safari */
        z-index: 1000;
    }
    
    /* Show the mobile menu when active */
    .mobile-menu-overlay.active {
        display: flex;
    }
    
    .mobile-menu-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
        font-size: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        background: none;
        border: none;
        transition: all 0.3s ease;
        z-index: 1002;
    }
    
    .mobile-menu-close:hover {
        transform: scale(1.1);
    }
    
    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        width: 100%;
        height: 70%;
    }
    
    .mobile-menu-link {
        color: white;
        text-decoration: none;
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.2s ease;
    }
    
    .mobile-menu-link:hover {
        color: #f0f0f0;
        transform: scale(1.05);
    }

}
