/* Language Selector Styles */
.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.language-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.language-btn i {
    font-size: 16px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #fea450;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 25px;
    color: white;
}

.language-option.active {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.language-option.active:hover {
    background: rgba(255, 255, 255, 0.4);
}

.flag-icon {
    font-size: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 10px;
    }
    
    .language-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .language-dropdown {
        min-width: 120px;
    }
}

/* Style uniforme pour toutes les pages - en blanc */
.header_area .language-btn {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.header_area .language-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
}

/* Style pour le header scrollé - reste en blanc */
.header_area.sticky .language-btn {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.header_area.sticky .language-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
}

