/* Mobile Menu Animation Styles */
.mobile-menu {
    position: fixed !important;
    overflow: hidden;
}

/* Canvas styling for mobile menu background */
#mobile-menu-canvas {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.5;  /* Reduced opacity for darker effect */
}

/* Ensure menu content is above canvas */
.mobile-menu > div {
    position: relative;
    z-index: 1;
}

/* Remove default background when canvas is active */
.mobile-menu.canvas-active {
    background: transparent !important;
}

/* Adjust text contrast for better readability over animation */
.mobile-menu a {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 16px rgba(0, 0, 0, 0.6);
    font-weight: 600;
}

/* Language switcher visibility over animation */
.mobile-menu .flex.items-center.gap-4 a {
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}