/* ========================================
   SÉLECTEUR DE LANGUE - Gueoula.com
   Style Starry Sky (bleu marine + doré)
   ======================================== */

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 8px;
    background: rgba(10, 25, 47, 0.85);
    padding: 8px 12px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.language-switcher a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #a0b4c8;
}

.language-switcher a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.language-switcher a.active {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #0a192f;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.language-switcher .flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        gap: 5px;
    }
    
    .language-switcher a {
        padding: 5px 10px;
        font-size: 13px;
    }
    
    .language-switcher .flag {
        width: 18px;
        height: 12px;
    }
    
    /* Cacher le texte sur mobile, garder juste les drapeaux */
    .language-switcher .lang-text {
        display: none;
    }
}
