/* navbar top*/

#room-details .room-info h2 {
  font-family: "Itim", cursive;
  font-size: 2rem;
  color: #2b994a;
}
#room-details .room-info ul.list-inline li {
  font-size: 1rem;
  color: #555;
  margin-right: 20px;
}
#room-details .row.mt-4 .col-lg-8 {
  width: 60%;
}
#room-details .row.mt-4 .col-lg-4 {
  width: 40%;
}
#room-details .col-lg-4 img {
  max-width: 75%;
  height: auto;
}
#room-details .col-lg-4.d-flex.flex-column img {
  flex: 1;
  object-fit: cover;
}
#room-details .col-lg-4.d-flex.flex-column img.mb-3 {
  margin-bottom: 1rem;
}
#description-section ul {
  list-style: none;
  padding-left: 0;
}
#description-section ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
#description-section ul li svg {
  margin-right: 10px;
}

.shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Galeria principal de imagenes*/
.gallery-img {
  width: 130px;
  height: 130px;
  transition: all 0.3s ease;
}
.gallery-img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
/* Ajusta el tamaño de las imágenes en pantallas pequeñas */
@media (max-width: 576px) {
  .gallery-img {
    justify-content: center;
    width: 50px;
    height: 50px;
  }
}

/*seccion card muestra */
.package-header {
  text-align: center;
  margin-bottom: 40px;
}
.package-header h1 {
  font-size: 2.5em;
  font-weight: bold;
}
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}
/* Evitar selección de texto en el contenedor del carrusel */
.carousel-container,
.carousel-container * {
  user-select: none; /* Deshabilita la selección de texto */
  -webkit-user-drag: none; /* Deshabilita el arrastre de imágenes en navegadores Webkit */
  -webkit-tap-highlight-color: transparent; /* Elimina el resaltado en dispositivos móviles */
}

.card-container {
  display: flex;
  transition: transform 0.5s ease;
  width: calc(300px * 6);
}
.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin: 0 10px;
}
.card:hover {
  transform: scale(1.05);
}
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.card-content {
  padding: 20px;
}
.card-content h3 {
  margin: 0;
  font-size: 1.3em;
  font-weight: bold;
}
.card-content .location {
  color: #6c757d;
  font-size: 1em;
  margin-bottom: 10px;
}
.card-content .details {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  font-size: 0.9em;
}
.card-content .price {
  font-weight: bold;
  font-size: 1.1em;
}
.reviews {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9em;
}

/* footer*/
.color {
  fill: #2b994a; /* Color azul */
}
.container-fluid1 {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  text-align: center; /* Alinea el texto en el centro */
}
#footer {
  margin-top: 20px;
}
