.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    z-index: 100;
    background: transparent;
}
.nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
    }

.logo-link {
    text-decoration: none;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #10131a;
}

.logo-icon {
    height: 30px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navigation {
    display: flex;
    gap: 52px;
    align-items: center;
}

.navigation a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.navigation a:hover {
    opacity: 0.6;
}


/*============ LOGO =============*/
.nav-logo-link {
    text-decoration: none;
    position: absolute;
    top: 24px;
    left: 40px;
    z-index: 10;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    opacity: 0;
    user-select: none;
    pointer-events: none;
}

.navigation.active .nav-logo {
    pointer-events: auto;
    animation: logoAppear 3s ease-out 0.5s forwards;
}



@keyframes logoAppear {
    0% {
        opacity: 0;
        filter: blur(20px);
        -webkit-filter: blur(20px);
        transform: scale(0.8);
    }
    10% {
        opacity: 0.5;
        filter: blur(10px);
        -webkit-filter: blur(10px);
    }
    40% {
        opacity: 1;
        filter: blur(0px);
        -webkit-filter: blur(0px);
        transform: scale(1);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        -webkit-filter: blur(0px);
        transform: scale(1);
    }
}
/*==================================*/

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.lang-option {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    transition: color 0.2s;
}

.lang-option.active {
    color: var(--text-primary);
    font-weight: 600;
}

.lang-option:not(.active):hover {
    color: var(--text-primary);
}

.lang-divider {
    font-size: 13px;
    color: #ccc;
    user-select: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}
