/* Simple Mobile Menu CSS - 100% Working */

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, #6A4CC3, #2B5BCF);
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Show mobile button */
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    /* Hide desktop nav links by default */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        
        /* Hidden by default */
        display: none;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    /* Show menu when active */
    .nav-links.mobile-active {
        display: flex !important;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Mobile nav links styling */
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 15px;
        margin: 5px 0;
        border-radius: 8px;
        font-size: 16px;
        color: #333;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, #6A4CC3, #2B5BCF);
        color: white;
    }
    
    /* CTA button in mobile menu */
    .nav-cta {
        width: 100%;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
    
    .nav-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Desktop - Keep original layout */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
}
