.carousel-item img {
  height: 500px; /* ajustá el valor a gusto */
  object-fit: cover; /* mantiene proporción y recorta el exceso */
}


@media (max-width: 768px) {
  .carousel-item img {
    height: 250px;
  }
}

body{
  background-color: #fff9e9; /* color de logo suave */
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}


/*SECCION RESERVA*/
.reserva-section {
  background-color: #99b56b; /* tono verde similar al de tu imagen */
}
.reserva-section h2, 
.reserva-section p {
  color: white;
}
.reserva-section .btn-light {
  color: #5a6d3b;
  background-color: #f5f5f5;
  border: none;
  transition: all 0.2s ease;
}
.reserva-section .btn-light:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
}


/*SECCION SOBRE EL HOTEl*/
.sobre-hotel {
  background-color: #ad964e; /* mostaza navbar */ 
  color: #ffffff;
}

.sobre-hotel .titulo-seccion {
  color: #ffffff; /* tono verde suave */
  font-family: 'Great Vibes', cursive;
  font-size: 4.5rem;
}

.sobre-hotel .descripcion {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: normal;
  max-width: 750px;
  line-height: 1.7;
  font-size: 1.50rem;
}

.sobre-hotel .text-acento {
  color: #000000;
}

@media (max-width: 768px) {
  .sobre-hotel .descripcion {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

.navbar {
  background-color:  #fff9e9; /* color de fondo suave */
}
.navbar .nav-link {
  color: white !important;
  margin-left: 1rem;
  transition: color 0.2s;
}
.navbar .nav-link:hover {
  color: #0c0c0b !important; /* verde suave */
}

/*UBICACION SECCION*/
#ubicacion {
  background-color: #fff9e9; /* color de logo suave */
  color: #ffffff;
}

#ubicacion h2 {
  color: #000000; /* tono negro */
  font-family: 'Great Vibes', cursive;
  font-size: 4.5rem;
}

#ubicacion p{
  color: #000000; /* tono negro */
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  font-size: 1.50rem;
}

/*RESERVA SECCION*/
#reserva{
  background-color: #ad964e; /* mostaza navbar */  
}

#reserva h2{
  font-family: 'Great Vibes', cursive;
  font-size: 3.5rem;
}

#reserva p{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  font-size: 1.50rem;
}

#reserva a{
  font-family: 'playfair display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.50rem;
}

/*Carrousel*/

#hotelCarousel {
  background-color: #fff9e9; /* color de fondo suave */
}

.carousel-item {
  min-height: 400px;
}

.carousel-item .row {
  height: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bloque de texto */
.carousel-text {
  background-color: #fff9e9;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(0, 0, 0);
  padding: 3rem;
}

.carousel-text .text-container {
  max-width: 500px;
}

/* 🎯 Ajuste específico para pantallas grandes */
@media (min-width: 992px) {
  .carousel-item img {
    height: auto; /* 👈 Evita que se estire o recorte en exceso */
    max-height: 600px; /* controla el alto máximo */
    object-fit: contain; /* mantiene la proporción natural */
  }

  .carousel-item .row {
    align-items: center; /* centra verticalmente en PC */
  }

  .carousel-text {
    height: auto;
  }
}

/* RESPONSIVE - móvil */
@media (max-width: 768px) {
  .carousel-item img {
    height: auto;
    object-fit: cover;
  }

  .carousel-text {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .carousel-text h2 {
    font-size: 1.5rem;
  }

  .carousel-text p {
    font-size: 1rem;
  }
}



/* FIN Carrousel */


nav{
  background-color:  #fff9e9; /* color de fondo suave */
}

#tituloHotel{
  font-family: 'playfair display', serif;
  font-style: italic;
  font-weight: 500;
}

.nombreItem{
  font-family: 'playfair display', serif;
  font-style: italic;
  font-weight: 500;
}

.tituloSlide{
  font-family: 'Great Vibes', cursive;
  font-weight: 500;
  font-style:normal;
  font-size: 4rem;
}

.textoSlide{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style:normal;
  font-size: 1.5rem;
}