@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --second-color: rgb(14, 14, 15);
  --second-alpha-color: rgba(14, 14, 15, 0.75);

  --bg-color: rgb(51, 51, 51);
  --link-color: rgba(255, 255, 255, 0.55);
  --first-color: rgba(255, 255, 255, 0.75);
}
body {
  font-family: Poppins, Montserrat, Courier, monospace;
  color: antiquewhite;
  font-size: 20px;
}
h2 {
  color: gold;
}
a {
  color: var(--link-color);
  transition: all 0.3s ease-out;
}
a:hover {
  color: var(--first-color);
}
/* ********** Mis Estilos ********** */
.bg-gradient-blue-green {
  background-color: var(--bg-color);
  background-image: linear-gradient(
    135deg,
    rgba(49, 50, 51, 0.91),
    rgba(30, 31, 32, 0.97) 79%
  );
}
.d-item {
  height: 500px;
}
.d-img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}
.habitacion {
  border-radius: 8px;
  box-shadow: 0 0 30px gold;
}
.subtitulo {
  background-color: rgb(49, 50, 51);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 60px;
  z-index: 1;
}
.inicial {
  background-color: gold;
  width: 30px;
  border: 2px solid aliceblue;
  border-radius: 6px;
  padding: 3px;
  margin: 0 50px;
}
.mapa {
  border-radius: 8px;
  box-shadow: 0 0 30px gold;
}
.encuentranos {
  margin: 5rem 0;
  padding: 5rem 0;
}
.whatsapp {
  object-fit: cover;
  max-width: 40px;
  height: auto;
  cursor: pointer;
  position: fixed;
  bottom: 50%;
  right: 4%;
}
/* ********** Estilos de Bootstrap ********** */
.bg-dark {
  background-color: var(--second-color) !important;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: antiquewhite;
  text-align: center;
}
.navbar-brand {
  color: gold;
}
.navbar-brand:hover,
.navbar-brand:focus {
  color: antiquewhite;
}
