/*
SÉLECTEUR DE LANGUE - FOOTER
Designer: Erando Ciko
https://erinformatique.com
*/

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 8px 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.language-switcher:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 94, 0, 0.5);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 15px;
}

.lang-btn:hover {
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.2), rgba(0, 178, 255, 0.2));
    color: #fff;
    transform: scale(1.05);
}

.lang-btn.active {
    background: linear-gradient(135deg, #FF5E00, #00B2FF);
    color: #fff;
}

.flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.lang-text {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    font-size: 11px;
    font-weight: 700;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .language-switcher {
        padding: 6px 10px;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .flag {
        width: 18px;
        height: 12px;
    }
    
    .lang-text {
        font-size: 10px;
    }
}