/* Styles pour les carrousels d'hôtel */
.hotel-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hotel-carousel-slides {
    position: relative;
    width: 100%;
}

.hotel-carousel-slide {
    width: 100%;
    box-sizing: border-box;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hotel-carousel-slide.active {
    display: block;
    opacity: 1;
}

.hotel-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: background 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hotel-carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.hotel-carousel-btn.hotel-carousel-prev {
    left: 10px;
}

.hotel-carousel-btn.hotel-carousel-next {
    right: 10px;
}

.hotel-carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hotel-carousel-indicator {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hotel-carousel-indicator.active {
    background: rgba(255, 255, 255, 1);
}
