/**
 * Transparent menu items styling
 * Overrides the default styles with transparent glassmorphic styles
 */

/* Override mobile menu item colors for solid backgrounds */
#mobile-menu a {
    color: #1f2937 !important; /* Dark text */
    background-color: #f9fafb !important; /* Solid light background */
    border: 1px solid #e5e7eb !important;
    margin: 6px 15px !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

#mobile-menu a:hover {
    background-color: #eef2ff !important; /* Light indigo background */
    border-color: #c7d2fe !important; /* Light indigo border */
}

/* Style icons in the mobile menu */
#mobile-menu a i {
    color: #4f46e5 !important; /* Indigo-600 */
    font-size: 1rem !important;
}

/* Menu title removed */

/* Add a stylish border to the menu */
#mobile-menu.right-aligned {
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Special styling for social media links in mobile menu */
#mobile-menu .social-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
}

#mobile-menu .social-links a {
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    margin: 0 10px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#mobile-menu .social-links a:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

#mobile-menu .social-links a i {
    font-size: 1.5rem !important;
}
