/* Custom styles for mobile menu */

/* Glass effect for mobile menu */
.menu-dropdown {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.menu-dropdown__inner {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
}

.screen--start {
    background: transparent !important;
}

/* Close button styling */
.screen__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.screen__close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.screen__close .icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Menu items styling for better visibility */
.screen__item {
    margin-bottom: 15px;
}

.screen__link {
    color: #fff !important;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.screen__link:hover {
    color: #fff !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

/* Ensure menu dropdown is properly positioned */
.menu-dropdown--active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .screen__close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    .screen__close .icon {
        width: 18px;
        height: 18px;
    }
} 