/* NAVBAR */
#menu a, button {
    font-size: 18px !important;
    font-weight: 600;
}

#menu a {
    color: #3f3f3f;
}

/* FONTS */
.titles1 {
    font-family: 'Josefin Slab', serif;
    font-weight: bolder;
}
.titles2 {
    font-family: Arial, Helvetica, sans-serif;
}
html {
    scroll-behavior: smooth;
}

/* RESERVATIONS */
#birthday {
    background-color: #eaeaea;
    position: relative;
    margin-top: -40px;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
#birthday img {
    position: relative;
    margin-top: -30px;
}
.text-shadow {
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.6);
}
.reserva {
    margin: auto;
    margin-top: 20px;
    width: 80%;
    display: flex;
    justify-content: space-evenly;
}
#boton {
    width: 100%;
    height: 100%;
    background-color: #e9d2d2;
    color: rgb(110, 15, 15);
    border: none;
    padding: 0px;
    display: inline-block;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #504235;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
}
#boton:hover {
    box-shadow: inset 400px 0 0 0 #b12323f4;
    color: white;
}
/* ----------------------------------------- */

/* BEDROOMS */
#bedrooms {
    background-repeat: repeat-x;
    background-size: 75%;
    margin-top: -20px;
}

.card-border {
    border: solid 10px white;
    border-radius: 20px;
    overflow: hidden;
    transition: all ease-out 0.2s;
}
.card-border:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Ajuste de imágenes en las tarjetas */
.card-img-top {
    width: 100%;
    height: auto; /* Mantiene las proporciones de las imágenes */
    object-fit: cover; /* Evita deformaciones */
}

/* Versión móvil: Limita la altura máxima */
@media (max-width: 768px) {
    .card-img-top {
        max-height: 200px; /* Ajusta según la altura deseada */
    }
}
/* ----------------------------------------- */

/* CONTACT */
#contact {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, #c59c83 57%);
    background-repeat: repeat-x;
    background-size: 75%;
    margin-top: -20px;
}

/* Ícono flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 26px;
    bottom: 15px;
    right: 15px;
  }
}