/* Mobile Navigation Enhancement - Additional Fixes */

/* Ensure mobile toggle is hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile-specific navbar fixes */
@media (max-width: 768px) {

    /* Make hero section navbar solid on mobile */
    .hero-section .hero-nav {
        background: transparent !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
    }

    /* Remove transparency from overlay on mobile nav */
    .hero-section {
        position: relative;
    }

    /* Ensure logo stays visible */
    .nav-logo {
        z-index: 1001;
    }

    /* Logo image sizing */
    .logo-img {
        height: 32px;
    }

    /* Navigation adjustments */
    .nav-content {
        padding: 0.75rem 0 !important;
    }

    /* Menu positioning - below navbar */
    .nav-menu {
        margin-top: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Better menu visibility */
    .nav-menu.active {
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Menu items styling */
    .nav-menu li a {
        color: white !important;
        opacity: 0.95 !important;
    }

    .nav-menu li a:hover {
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.15);
    }
}