/* Sélecteur de langue simple pour Hôtel Mandji */
.lang-selector {
    display: inline-block;
    position: relative;
    margin-left: 20px;
    vertical-align: middle;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 160px;
    z-index: 1000;
}

.lang-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: #f8f8f8;
}

.lang-option.active {
    background: #e5ba7c;
    color: #fff;
}

/* Header sticky */
.fixed_header.sticky .lang-btn {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15);
    color: #333;
}

.fixed_header.sticky .lang-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* Mobile responsive */
@media (max-width: 991px) {
    .lang-selector {
        position: fixed;
        top: 15px;
        right: 80px;
        z-index: 1001;
        margin: 0;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* Integration avec le header */
.col-8 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-menu {
    flex: 1;
}