/* ===================================
   MOBILE MENU STYLES
   =================================== */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-gold, #D4AF37);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10000;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item,
.mobile-btn-mentor {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #f5f5f5;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.mobile-nav-item:hover,
.mobile-btn-mentor:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.mobile-nav-item:active,
.mobile-btn-mentor:active {
    transform: translateX(5px) scale(0.98);
}

.mobile-nav-item.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
    color: #D4AF37;
}

.mobile-btn-mentor {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(196, 157, 46, 0.2) 100%);
    border-color: #D4AF37;
    color: #D4AF37;
    font-weight: 600;
}

.mobile-btn-mentor:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(196, 157, 46, 0.3) 100%);
}

.mobile-nav-item svg,
.mobile-btn-mentor svg {
    flex-shrink: 0;
}

/* Show mobile menu toggle on small screens */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block !important;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* ===================================
   CRITICAL FIXES
   =================================== */

/* Ensure icons don't block clicks */
.mobile-menu-toggle svg {
    pointer-events: none;
}

/* Ensure mobile menu is clickable */
.mobile-menu,
.mobile-menu * {
    pointer-events: auto;
}