/*Menu a scomparsa*/


.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(20, 18, 21, 0.98);
    display: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.menu-overlay.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 1;
}

.menu-left {
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.menu-right {
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.close-menu {
    position: absolute;
    top: 70px;
    right: 70px;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-icon{
    cursor: pointer;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-links {
    list-style: none;
    padding: 0;
    margin-top: 100px;
}

.menu-links li {
    margin-bottom: 40px;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay.active .menu-links li {
    transform: translateX(0);
    opacity: 1;
}

.menu-overlay.active .menu-links li:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-links li:nth-child(2) { transition-delay: 0.2s; }
.menu-overlay.active .menu-links li:nth-child(3) { transition-delay: 0.3s; }

.menu-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 72px;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1;
}

.menu-links .inactive {
    color: rgba(255, 255, 255, 0.2);
}

.menu-logo {
    width: 400px;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    padding-bottom: 50px;
    width: 100%;
   
}

.social-links a {
    color: var(--text);
    font-size: 34px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

.contact-info {
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.9;
    width: 100%;
}

.contact-info p {
    margin: 0;
}

@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.menu-overlay.active {
    animation: menuFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blocco-menu{
    background-color: #222222;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.menu-informations{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.menu-links:hover{
color: var(--text);
}