/*

1. Add your custom Css styles below
2. Place the this code in your template:

 <link href="css/custom.css" rel="stylesheet">

*/

/* ── Language Switcher ───────────────────────────────────────────────── */
#lang-switcher {
    float: right;
    margin-right: 12px;
    line-height: 80px; /* match header height */
}

#lang-switcher > a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

#lang-switcher > a i {
    font-size: 14px;
}

/* dark header becomes light on sticky */
#header.sticky-active #lang-switcher > a,
#header.sticky-active #lang-switcher > a i {
    color: #3c4043;
}

#lang-switcher .p-dropdown-content {
    min-width: 130px;
    right: 0;
    left: auto;
}

#lang-switcher .p-dropdown-content li {
    list-style: none;
    padding: 6px 0;
}

#lang-switcher .p-dropdown-content li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #3c4043;
    white-space: nowrap;
    transition: color 0.2s;
}

#lang-switcher .p-dropdown-content li a:hover {
    color: #2250fc;
}

/* mobile: keep it visible alongside hamburger */
@media (max-width: 991.98px) {
    #lang-switcher {
        line-height: 60px;
        margin-right: 8px;
    }
}
