@import url(https://db.onlinewebfonts.com/c/8cdc989cc8f409da800b3d388d6d8f9e?family=Kapsalon+Brush+DEMO+Regular);

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
}

.fondo-sitio {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}
/*===========================================================================*/

/* NAV */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.logo {
  height: 40px;
}

/* HAMBURGUESA */
.hamburger {
  width: 30px;
  cursor: pointer;
  display: none;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* animación */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/*===========================================================================*/

/*contenido todos los titulos y eso de aca cambias todos 
los tamaños de letras de los titulos lo otro esta en cada lista mira los comentarios THOMASSSSSSSSS*/

.tituloPrincipal {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
  color: #fff;
  margin-top: 2rem;
  font-size: large;
}



.tituloSecciones {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
  color: #fff;
  margin: 2rem 1rem;
  font-size: 27px;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Línea superior */
.tituloSecciones::before {
  content: "";
  position: absolute;
  top: 0; /* arriba del título */
  left: 0;
  width: 100%;
  height: 2px; /* grosor de la línea */
  background-color: #c59d5f; /* dorado */
}

/* Línea inferior */
.tituloSecciones::after {
  content: "";
  position: absolute;
  bottom: 0; /* abajo del título */
  left: 0;
  width: 100%;
  height: 2px; /* grosor de la línea */
  background-color: #c59d5f; /* dorado */
}

.subtitulos {
  color: #c59d5f; /* dorado */
  margin-bottom: 2rem;
  margin-top: 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid #c59d5f;
  padding-bottom: 5px;
  letter-spacing: 1px;
  text-align: center;
  font-size: 25px;

}

/*===========================================================================*/

/*========================
  CAROUSEL TRAGOS DE AUTOR
=========================*/

/* Contenedor principal */
.carousel-container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center; /* centra el carousel en la página */
  padding: 0 10px;
  margin-bottom: 10rem;
}

/* Track que contiene las cards */
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* deslizar suave en iOS */
  padding: 20px 0;
  scroll-snap-type: x mandatory; /* para que haga snap al deslizar */
}

/* Cards */
.card {
  flex: 0 0 90%;       /* Mobile: casi toda la pantalla */
  max-width: 360px;    /* ancho promedio de celular */
  aspect-ratio: 9/16;  /* proporción típica de celular (ancho:alto) */
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* texto-top arriba, texto-bottom abajo */
  overflow: hidden;
  padding: 20px;
  scroll-snap-align: start;
}

/* Overlay oscuro */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  border-radius: 20px;
  z-index: 1;
}

/* Textos */
.texto-top {
  font-family: 'KapsalonBrush';
  font-size: 45px;
  color: #fff;
  transform: rotate(-10deg);
  text-align: center;
  z-index: 2;
  margin-top: 1.5rem;
  position: relative;
  display: inline-block;

  letter-spacing: -0.2px; /* más juntas, sin empastarse */
}

.texto-top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );
  border-radius: 10px;
}


.texto-bottom {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  z-index: 2;
  margin-bottom: -15rem;
  position: relative;
  display: inline-block;
  
}

/* subrayado custom */
.texto-bottom::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1.5px;
  background: linear-gradient(
    to right,
    transparent,
    #fff,
    transparent
  );
  opacity: 100;
}


.precioAutor {
  font-weight: bold;
  color: #fff;
  font-size: 25px;
  text-align: center;
  margin-top: 2rem;
}

/* Imágenes de cada card */
.card-1 { background-image: url("/Imgs/oraculo_rosa.jpg")}
.card-2 { background-image: url("/Imgs/aurora-tropical.jpg"); }
.card-3 { background-image: url("/Imgs/amanecer-rojo.jpg"); }
.card-4 { background-image: url("/Imgs/portal-holdmoser.jpg"); }
.card-5 { background-image: url("/Imgs/ritual-de-luna.jpg");}

/* Botones de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 3;
  padding: 0 12px;
  border-radius: 5px;
  transition: background 0.3s;
}
.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/*========================
  MEDIA QUERIES
=========================*/

/* Tablet: mostrar 2-3 cards visibles */
@media (min-width: 768px) {
  .card {
    flex: 0 0 45%;   /* menos ancho para mostrar varias cards */
    max-width: 320px;
    aspect-ratio: auto; /* altura automática proporcional al contenido */
    min-height: 500px;
  }

  .carousel-track {
    gap: 30px;
    padding: 30px 0;
  }
}

/* Desktop: mostrar 3-4 cards visibles */
@media (min-width: 1024px) {
  .card {
    flex: 0 0 30%;
    max-width: 350px;
    min-height: 580px;
  }

  .carousel-track {
    gap: 40px;
    padding: 40px 0;
  }
}

/*===========================================================================*/

/*========================
        GINTONERIA
=========================*/

/* ==============================
   GINTONERÍA MÍSTICA – BASE
================================ */

.gintoneria {
  position: relative;
  width: 100%;
  padding: 120px 8% 120px;
  color: #fff;
  isolation: isolate;

  /* Fondo propio + degradé arriba y abajo */
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.65) 15%,
      rgba(0,0,0,0.25) 50%,
      rgba(0,0,0,0.65) 85%,
      rgba(0,0,0,1) 100%
    ),
    url("Imgs/fondoGin2.png?v=1") center / cover no-repeat;
}

/* transición suave compartida con secciones vecinas */
.gintoneria::before,
.gintoneria::after {
  content: "";
  position: absolute;
  left: -20%;
  width: 120%;
  height: 120px;
  pointer-events: none;
  z-index: -1;
}

.gintoneria::before {
  top: -120px;
  background: linear-gradient(to bottom, transparent, #000);
}

.gintoneria::after {
  bottom: -120px;
  background: linear-gradient(to top, transparent, #000);
}

/* ==============================
   TÍTULOS
================================ */

.gintoneria h2 {
  text-align: center;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.gintoneria h3 {
  text-align: center;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 60px;
  font-weight: 400;
}

/* ==============================
   LISTA
================================ */

.c5-carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: auto;
}

/* VENTANA */
.c5-carousel-track-container {
  overflow: hidden;
  width: 100%;
}

/* PISTA */
.c5-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* SLIDE */
.c5-carousel-slide {
  min-width: 100%;
  position: relative;
}

/* IMAGEN */
.c5-carousel-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

/* OVERLAY INFO */
.c5-carousel-info {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;      /* CENTRADO REAL */
  text-align: center;

  padding: 1.2rem;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.7)
  );
  color: #fff;
}

/* TITULO ARRIBA */
.c5-carousel-info h3 {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  width: 100%;
  text-align: center;
  display: block;
}

/* SUBRAYADO */
.c5-carousel-info h3::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  margin: 0.3rem auto 0;
}


/* EMPUJA TODO LO DE ABAJO */
.c5-carousel-info p:first-of-type {
  margin-top: auto;
}

/* DESCRIPCIONES */
.c5-carousel-info p {
  font-size: 1rem;
  margin: 0.25rem 0;
  line-height: 1.2;
}

/* PRECIO */
.c5-price {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 0.4rem;
}

/* BOTONES */
.c5-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  z-index: 10;
}

.c5-prev { left: 12px; }
.c5-next { right: 12px; }



/*========================
  GIN NACIONES E IMPORTADOS TRAGOS CLASICOS Y TODO LO QUE 
  VIENDE ESPUES ESTA ES LA UNICA LISTA QUE ES IGUAL PARA TODOS YA QUE ES IGUAL A LA DE 1111
=========================*/

.descripcion {
  font-size: 18px;
  color: #ccc;
  margin-top: 3px;
}

.listaGin {
  margin-bottom: 20px;
  border: 2px solid #c59d5f; /* borde dorado suave */
  border-radius: 15px;
  margin: 1rem;
}

.listaGin h3 {
  color: #c59d5f; /* dorado */
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 2px solid #c59d5f;
  padding-bottom: 5px;
  letter-spacing: 1px;
  text-align: center;
  font-size: 20px;
}

.lista-bebidas {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-bebidas li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.lista-bebidas li:last-child {
  border-bottom: none;
}

.nombre {
  font-weight: bold;
  color: #fff;
  margin-left: 1rem;
  font-size: 17px;
}

.precio {
  font-weight: bold;
  color: #fff;
  margin-right: 1rem;
  font-size: 18px;
}

.nombreLimonada {
  font-weight: bold;
  color: #fff;
  margin-left: 1rem;
  font-size: 17 px;

}

.gin2 {
  margin-top: 10rem;
}

/*========================
  RESPONSIVE
=========================*/

/* Mobile: mantener paralelos pero ajustando tamaño */
@media (max-width: 767px) {
  .lista-imagen-texto li {
    gap: 10px;
  }

  .lista-imagen-texto .texto,
  .lista-imagen-texto .imagen {
    flex: 1 1 45%; /* ambos ocupan menos de la mitad */
  }

  .lista-imagen-texto .texto h3 {
    font-size: 18px;
  }

  .lista-imagen-texto .texto p {
    font-size: 15px; /* descripciones más grandes en mobile */
  }
}

/*===========================================================================*/

/*========================
      MOBILE NAV
=========================*/

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* FIX transiciones sin scroll */
.gintoneria::before,
.gintoneria::after {
  left: 0;
  width: 100%;
}

/* FIX DEFINITIVO Safari – fondo pixelado */
@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll;
    background-size: cover;
    image-rendering: auto;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #fff;
  color: #000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-left: 20px;
}

/* IZQUIERDA */
.footer-left p {
  font-size: 15px;
  opacity: 0.8;
  margin: 0;
}

/* DERECHA ICONOS */
.footer-right {
  display: flex;

}

/* ICONOS */
.footer-right img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* HOVER */
.footer-right a:hover img {
  opacity: 0.8;
}

/* DESKTOP */
@media (min-width: 768px) {
  .footer-right img {
    width: 36px;
    height: 36px;
  }
}