/* Language Switcher Styles */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    /* Default to white for header */
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
}

.lang-link:hover,
.lang-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ff8c00;
    /* Orange highlight */
}

/* Flag Icons (using simple CSS shapes or emojis if images unavailable, preferably emojis for simplicity or images if I had them) */
/* Since I don't have flag images, I'll use text codes IT | EN | FR or search for flag icons.
   For professional look, maybe just text codes is cleaner if no SVGs.
   Let's stick to text codes IT / EN / FR nicely styled.
*/

.lang-separator {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }

    .lang-link {
        color: #0f172a;
        /* Dark text for mobile menu if it has white bg */
    }
}