/* Contenedor principal */
.hotel-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* Título */
.hotel-gallery-container h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #2c2c2c;
  font-family: "Playfair Display", serif; /* elegante para hotel */
}

/* Imagen principal */
.hotel-gallery-main {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hotel-gallery-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Miniaturas */
.hotel-gallery-thumbs {
  margin-top: 15px;
  display: none; /* solo en desktop */
}

.hotel-gallery-thumbs .swiper-slide {
  height: 100px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hotel-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.hotel-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Desktop: mostrar miniaturas */
@media (min-width: 769px) {
  .hotel-gallery-thumbs {
    display: block;
  }
}