/* Hamburger Menu Overlay */
.crush-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(16, 19, 34, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.crush-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.crush-menu-link {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.crush-menu-link:hover,
.crush-menu-link:focus {
    color: #1337ec;
}

.crush-menu-link.current {
    color: #1337ec;
}

.crush-menu-close {
    transition: background-color 0.2s ease;
}

.crush-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.crush-menu-toggle {
    transition: opacity 0.2s ease;
}

.crush-menu-toggle:hover {
    opacity: 0.7;
}
