/* Botellas principales */
.beer_move {
  aspect-ratio: 175/384;
  height: 650px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
  background-color: transparent;
  z-index: 100;
  transition: transform 0.1s ease-in-out;
  margin-top: 50px;
}

.beer_move_back {
  aspect-ratio: 175/384;
  height: 650px;
  position: fixed;
  top: 51%;
  left: 51%;
  transform: translate(-50%, -50%) rotate(20deg) scale(0.99);
  background-color: transparent;
  z-index: 99;
  filter: blur(30px);
  opacity: 1;
  transition: transform 0.1s ease-in-out;
  margin-top: 50px;
}

/* Nombre de la cerveza */
.beer_name {
  font-family: "Oswald", sans-serif;
  font-size: 200px;
  font-weight: 700;
  background-image: url(IMG/TEXTURE.webp);
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent;
  background-color: #1a9348;
  background-size: 1250px;
  text-align: center;
  margin-top: 100px;
  width: 80%;
  margin: auto;
}

.landing_message {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 970px;
  margin: auto;
}

/* Información de la cerveza */
.alc,
.ibu,
.ml {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid;
  width: 100%;
}

.line {
  height: 2px;
  width: 100%;
  border-bottom: 2px solid;
}

.info_beer {
  display: grid;
  width: 80%;
  grid-template-columns: 1fr 3fr;
  margin-bottom: 10px;
}

.udm {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Mensaje de la cerveza */
.message_cerveza {
  display: flex;
  justify-content: right;
  align-items: center;
}

.message_cerveza p {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  text-transform: uppercase;
  width: 85%;
  text-align: right;
}

/* Estructura y transiciones de las secciones principales */
.main-content-one,
.main-content-two,
.main-content-three,
.main-content-four {
  position: absolute;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.main-content-one.active,
.main-content-two.active,
.main-content-three.active,
.main-content-four.active {
  opacity: 1;
  transform: translateX(0);
}

/* Flechas de navegación */
.navigation-arrows {
  position: fixed;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.arrow {
  font-size: 2rem;
  cursor: pointer;
  pointer-events: auto;
}

body.le-grisette-bg {
  background: rgba(255, 162, 213, 1) 47%;
}

body.tropical-rain-bg {
  background-color: #63a69e;
}

body.summer-wave-bg {
  background-color: #87ceeb;
}

body.northern-champagne-bg {
  background-color: #b5e48c;
}

/* Splash Screen Styles */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden; /* Evita el scroll */
}

.splash-image {
  width: 150px; /* Ajusta el tamaño de la imagen si es necesario */
  animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Estilos Responsivos */
@media (max-width: 500px) {
  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Evita el scroll */
  }

  .beer_move {
    height: 450px;
    top: 40%;
    margin-top: 50px;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .beer_move_back {
    height: 450px;
    top: 40%;
    margin-top: 50px;
    transform: translate(-50%, -50%) rotate(00deg) scale(0.99);
  }

  .beer_name {
    margin-top: 20px;
    font-size: 60px;
    line-height: 0.9;
    background-image: none;
    color: #602f3b;
  }

  .main-content-two .beer_name,
  .main-content-two .message_cerveza p {
    color: #163329;
  }

  .main-content-three .beer_name,
  .main-content-three .message_cerveza p {
    color: #1b3565;
  }

  .main-content-four .beer_name {
    font-size: 45px;
    color: #3d5b58;
  }

  .main-content-four .message_cerveza p {
    color: #3d5b58;
  }

  .main-content-four img {
    top: 37%;
  }

  .message_cerveza {
    margin-top: 60px;
    text-align: center;
  }

  .message_cerveza p {
    margin-top: 80px;
    width: 100%;
    font-size: 20px;
    color: #602f3b;
    text-align: center;
  }

  .info_cerveza {
    width: 80%;
    margin: auto;
  }

  .landing_message {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .udm {
    font-size: 3rem;
  }

  .line,
  .alc,
  .ibu,
  .ml {
    width: 50%;
  }
}
