* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  min-height: 100dvh;
  background: blue;
  display: block;
  align-items: center;
  justify-content: center;
  font-family: Oswald;
}

.cabecera{ 
  align-items: center;
  justify-items: center;
  width: 90%;
  vertical-align: middle;
  margin-left: 3%;
}
.logo{
  width: 20%;
  display: inline-block;

  @media screen and (min-width: 600px){ width: 15%; }
  @media screen and (min-width: 900px){ width: 10%; }
}

.botones{
  align-items: center;
  text-align: center;
  width: 70%;
  vertical-align: top;
  display: inline-block;
  font-family: Oswald;
  @media screen and (min-width: 600px){ width: 75%;}
  @media screen and (min-width: 900px){ width: 80%;}
}

.fotoslider{
  margin-left: 18%;
  width: 70%;
  display: block;
}

/* ===== Slider ===== */
.slider-container {
  width: min(100%, 800px);
  border: 3px solid #fff;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out; /*Q tan lento o rapido pasa de imagen a imagen*/
}

.slide {
  min-width: 100%;
  aspect-ratio: 16 / 9; /*Relacion de aspecto de las  imagenes*/
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Botones ===== */
.buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 15px;
}

button {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 0;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ===== Dots ===== */
.dots-container {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.4s;
}

.dot.active {
  background: tomato;
}

.rooms{
  background: rgb(185, 160, 75);
  margin: 3%;
  padding: 1%;
  width: 90%;
  display: block;
}

.roomstitulo{
  margin-left: 3%;
  width: 100%;
  display: inline-block;
  color: black;
  font-size: 50px;
  text-align: center;
  font-family: Oswald;
}

.roomssubtitulo{
  margin-left: 3%;
  width: 90%;
  display: inline-block;
  color: black;
  font-size: 20px;
  text-align: center;
  font-family: Oswald;
}

.roomsimagen{
  padding: 1%;
  margin-left: 5%;
  width: 25%;
  display: inline-block;
  color: black;
  font-size: 36px;
  text-align: center;
  border: 3px solid blue;
}

.roomssubtitulo2{
  margin-left: 3%;
  width: 90%;
  display: inline-block;
  color: black;
  font-size: 18px;
  text-align: center;
  font-family: Oswald;
}

.amenities{
  background-image: url('110.jpg');
  margin: 3%;
  padding: 1%;
  width: 90%;
  display: block;
}

.ametitulo{
  margin-left: 3%;
  width: 100%;
  display: inline-block;
  color: rgb(248, 246, 246);
  font-size: 60px;
  text-align: center;
  font-family: Oswald;
}

.amesubtitulo{
  margin-left: 3%;
  width: 90%;
  display: inline-block;
  color: rgb(250, 247, 247);
  font-size: 20px;
  text-align: center;
  font-family: Oswald;
}

.ameimagen{
  padding: 1%;
  margin-left: 2%;
  width: 30%;
  display: inline-block;
  color: black;
  font-size: 36px;
  text-align: center;
  border: 3px solid blue;
}

.amesubtitulo2{
  margin-left: 3%;
  width: 90%;
  display: inline-block;
  color: rgb(247, 245, 245);
  font-size: 18px;
  text-align: center;
  font-family: Oswald;
}

.eachameniti{
  border: 3px white solid;
  margin: 3%;
  padding: 1%;
  width: 25%;
  display: block;
  display: inline-block;
  color: white;
}

.todo{
  border: 3px solid white;
  margin: 3%;
  padding: 1%;
  width: 90%;
  display: block;
}

.todotitulo{
  margin-left: 3%;
  width: 100%;
  display: inline-block;
  color: rgb(253, 252, 252);
  font-size: 50px;
  text-align: center;
  font-family: Oswald;
}

.todosubtitulo{
  margin-left: 3%;
  width: 90%;
  display: inline-block;
  color: rgb(252, 250, 250);
  font-size: 20px;
  text-align: center;
  font-family: Oswald;
}

.todoimagen{
  padding: 1%;
  margin-left: 5%;
  width: 18%;
  display: inline-block;
  color: black;
  font-size: 36px;
  text-align: center;
  border: 3px solid rgb(253, 253, 255);
}

.todosubtitulo2{
  margin-left: 3%;
  width: 90%;
  display: inline-block;
  color: rgb(252, 250, 250);
  font-size: 18px;
  text-align: center;
  font-family: Oswald;
}

.reserve{
  background: rgb(247, 248, 245);
  margin-left: 5%;
  padding: 1%;
  width: 90%;
  display: block;
}

.boton-animado {
  background-color: #2cebf1;
  color: #0c08e9;
  margin: 1%;
  vertical-align: top;
  border: 3px black solid;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  width: 40%;
  display: inline-block;
  @media screen and (min-width: 600px){ width: 45%; font-size: 14px;}
  @media screen and (min-width: 900px){ width: 22%; font-size: 15px;}
}

.boton-animado:hover {
  background-color: #f7f3f3;
  transform: scale(1.1);
}

.boton-animado:active {
  transform: scale(0.9);
}

.boton-animado::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.2;
  transition: all 0.3s ease-in-out;
}

.boton-animado:hover::before {
  left: 0;
}

.boton-animado::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.boton-animado:active::after {
  width: 100px;
  height: 100px;
  opacity: 0;
}

.barraabajo{
  background: black;
  color: white;
  padding: 1%;
  text-align: center;
  width: 100%;
}
