/* ==========================================================================
   Sélecteur de Langue FR/EN — Polylang
   Fichier : css/hr-lang-switcher.css (thème enfant)
   Chargé via wp_enqueue_style
   ========================================================================== */

.hr-lang-container {
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    box-sizing: border-box;
}

.hr-lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    padding: 4px;
}

.hr-lang-switcher a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', -apple-system, sans-serif;
}

.hr-lang-switcher a:hover {
    color: #ffffff;
}

.hr-lang-switcher a.active,
.hr-lang-switcher a.current-lang {
    background: #02c39a;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(2, 195, 154, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hr-lang-container {
        padding: 10px 15px;
        height: 70px;
    }

    .hr-lang-switcher a {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .hr-lang-container {
        padding: 8px 10px;
        height: 70px;
    }

    .hr-lang-switcher a {
        padding: 5px 10px;
        font-size: 11px;
    }
}