/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
}

.mobile-menu-content {
    padding: 1.5rem;
    padding-top: 3rem;
    color: white;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-section {
    margin-bottom: 1.5rem;
}

.mobile-menu-section h3 {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.375rem;
}

.mobile-menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
}

.mobile-menu-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.375rem 0 0.375rem 0.375rem !important;
    border-radius: 6px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 0.7rem !important;
    transition: background-color 0.2s ease !important;
    background: rgba(255, 255, 255, 0.05) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.mobile-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-item img {
    width: 20px;
    height: 20px;
}

/* Hide desktop menu on mobile */
@media (max-width: 768px) {
    #mainmenu {
        display: none !important;
    }
    
    #menu-btn {
        display: block !important;
        color: #ffffff !important;
        cursor: pointer !important;
        width: 32px !important;
        height: 32px !important;
        padding: 4px !important;
        text-align: center !important;
    }
    
    #menu-btn:before {
        content: "\f0c9" !important;
        font-family: FontAwesome !important;
        font-size: 20px !important;
    }
    
    .menu_side_area {
        display: block !important;
    }
    
    /* Lower header z-index on mobile */
    header {
        z-index: 100 !important;
        height: auto !important;
    }
} 