html {
  font-family: "Oswald", sans-serif;
}

body {
  opacity: 1; /* Oculta el contenido al cargar la página */
  transition: opacity 0.3s ease-in-out;
}

.main-content {
  position: relative;
  max-width: 1620px;
}

.header_taproom {
  position: relative;
  height: 400px;
  width: 100%;
  background-image: url(TAPROOM_COLOR.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: grid;
  place-items: center;
}

.srhop_title_taproom {
  width: 40%;
  font-size: 6rem;
  background-color: transparent;
  margin-bottom: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin: auto;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  opacity: 0.6;
}

.srhop_title_welcome {
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 130px;
  font-weight: 700;
  background-image: url(TEXTURE.webp);
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent;
  background-color: #000;
  background-size: 100%;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.content_taproom {
  width: 80%;
  margin: auto;
}

.taproom_img {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: right;
}

.taproomsrhop {
  opacity: 0;
  right: 0;
  height: 450px;
  width: 600px;
}

.info_taproom.one {
  aspect-ratio: 1.33;
}

.content_taproom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.info_taproom {
  display: flex;
  flex-direction: column;
  width: 83.5%;
  opacity: 0;
  background-color: transparent;
}

.info_taproom.two {
  margin-left: 16.5%;
  opacity: 0;
}

.taproom_detalle {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.taproom_detalle_espacios {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
}

.taproom_lists {
  width: 100%;
}

.taproom_lists.areas {
  width: 80%;
}

.taproom_list {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

strong {
  font-family: "Oswald", sans-serif;
}

/* Grid de Ubicación */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1620px;
  margin: auto;
  align-items: start;
}

/* Contenedor responsive del mapa (16:9) */
.map_wrap {
  position: relative;
  width: 100%;
  /* Ajusta el alto con ratio; puedes cambiar a 60% si quieres más alto */
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Iframe rellena el contenedor */
.map_embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ubicacion {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
  font-family: "Oswald", sans-serif;
  font-size: 120px;
  font-weight: 800;
  background-image: url(TEXTURE.webp);
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent;
  background-color: #000;
  background-size: 1250px;
}

.address_detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.address_detail h2 {
  font-size: 2rem;
  font-family: "Oswald", sans-serif;
}

.address_detail p {
  font-family: "Oswald", sans-serif;
}

/* Estilos para móviles */
@media (max-width: 500px) {
  .header_taproom {
    height: 200px; /* Reducir la altura en móvil */
    background-size: cover;
  }

  .srhop_title_taproom {
    font-size: 2.5rem; /* Ajustar el tamaño del título */
    height: auto;
  }

  .srhop_title_welcome {
    font-size: 2rem; /* Ajustar el tamaño del título de bienvenida */
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .content_taproom {
    grid-template-columns: 1fr; /* Cambiar a una sola columna */
    grid-template-rows: auto;
    width: 100%;
  }

  .taproomsrhop {
    width: 100%; /* Imagen ocupa todo el ancho */
    height: auto; /* Ajuste automático de la altura */
    margin-bottom: 20px;
  }

  .info_taproom {
    width: 100%; /* Asegurar que ocupe todo el ancho */
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .info_taproom .taproom_detalle {
    margin-top: 10px;
  }

  .info_taproom.two {
    width: 100%; /* Asegurar que ocupe todo el ancho */
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .info_taproom.two .taproom_detalle {
    margin-top: 0px;
  }

  .taproom_detalle {
    font-size: 1.5rem; /* Reducir tamaño de fuente en móviles */
  }

  .taproom_lists {
    width: 100%;
  }

  .taproom_list {
    font-size: 1rem; /* Ajustar el tamaño de los textos en la lista */
  }

  .location {
    grid-template-columns: 1fr; /* Cambiar a una sola columna */
    padding: 0 10px;
  }

  .ubicacion {
    font-size: 3rem; /* Ajustar tamaño del título de ubicación */
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .address_detail h2 {
    font-size: 1.5rem; /* Ajustar tamaño del texto de la dirección */
  }

  .address_detail p {
    font-size: 1rem; /* Ajustar tamaño del texto de la dirección */
  }

  .mapa_bar {
    width: 100%; /* Asegurarse de que el mapa ocupe el ancho completo */
    height: 300px;
  }

  .taproom_detalle_espacios {
    font-size: 1rem;
  }

  .taproom_list {
    font-size: 0.9rem;
  }
}
