/* Mobile Menu Debug Styles - Force mobile menu to work */

@media screen and (max-width: 768px) {
    /* Force hamburger to show */
    #nav-toggle {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        justify-content: center !important;
        align-items: center !important;
        cursor: pointer !important;
        z-index: 1001 !important;
    }

    /* Force menu to hide by default */
    #nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 80px !important;
        flex-direction: column !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3) !important;
        padding: 2rem 0 !important;
        z-index: 999 !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    /* Force menu to show when active */
    #nav-menu.active {
        left: 0 !important;
        transform: translateX(0) !important;
    }

    /* Style menu links */
    #nav-menu .nav-link {
        color: #f2f2f2 !important;
        display: block !important;
        margin: 1.5rem 0 !important;
        font-size: 1.2rem !important;
        padding: 1rem 2rem !important;
        border-bottom: 1px solid rgba(242, 242, 242, 0.1) !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
    }

    #nav-menu .nav-link:hover {
        color: #f97416 !important;
        background: rgba(249, 116, 22, 0.1) !important;
    }

    /* Hide CTA button on mobile */
    .nav-cta {
        display: none !important;
    }
}

/* Hamburger animation */
.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0 !important;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
}
