/* ============================================================
   Elegant Theme — Language Switcher
   Header'da yer alan dil değiştirici linkler. Sticky header'da
   konum tepkisi ve responsive offset'ler.
   ============================================================ */
.language-switcher {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    transition: 0.3s;
}

.language-switcher-link {
    display: inline-block;
    width: 20px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.language-switcher-link:hover {
    color: #ffffff;
    font-weight: 600;
    opacity: .7;
}

.language-switcher-link.active {
    color: #ffffff;
    font-weight: 600;
}

.header--fixed .language-switcher {
    top: 20px;
}

@media (max-width: 1400px) {
    .language-switcher {
        top: 0;
        right: 0;
    }
}

@media (max-width: 1200px) {
    .language-switcher {
        top: 40px;
        right: 75px;
    }
}

@media (max-width: 576px) {
    .language-switcher {
        top: 28px;
        right: 75px;
    }
}
