/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Evitar el desplazamiento horizontal */
html,
body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
  background-color: #000000;
}

:root {
  --color-negro: #1a1a1a;
  --color-rojo: #b22222;
  --color-marron: #8b4513;
  --color-dorado: #d4a373; /* opcional para acentos */
  --color-crema: #f5f0e1; /* texto secundario o fondos suaves */
}

/* Intro ----------------- */

.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: introFadeOut 1.5s ease forwards;
  animation-delay: 3s;
  text-align: center;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-logo {
  width: 40%;
  opacity: 0;
  transform: scale(0.5);
  animation: introZoomIn 1.5s ease forwards, introZoomOut 1.5s ease forwards 3s;
}

.intro-title {
  font-size: 4.5rem;
  color: #ce9824d8;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: titleFadeIn 1.5s ease forwards, titleFadeOut 1.5s ease forwards 3s;
}

/* Animaciones */
@keyframes introZoomIn {
  to {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes introZoomOut {
  0% {
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

@keyframes titleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleFadeOut {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes introFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 480px) {
  .intro-logo {
    width: 70%;
  }
  .intro-title {
    font-size: 2.5rem;
  }
}

/* Header fijo */
/* Header básico */
/* Header */
header {
  background: linear-gradient(90deg, #4b4b4b, #000000);
  padding: 6px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header h1 {
  display: none;
  margin-left: 10px;
  color: #d4a373;
  font-size: 20px;
  font-weight: bold;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.logo img {
  width: 50px;
}

/* Nav */
nav {
  transition: max-height 0.4s ease;
  /* overflow solo se usa en mobile */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul li a {
  text-decoration: none;
  color: #f5f0e1;
  font-size: 16px;
  position: relative; /* necesario para ::after */
  transition: color 0.3s ease;
  padding-bottom: 4px;
  display: inline-block; /* importante para que ::after se vea */
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #d4a373;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #d4a373;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hamburguesa */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: #f5f0e1;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* Párrafos en blanco */
p {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    justify-content: space-between;
    height: 70px;
  }

  header h1 {
    display: contents;
    color: #fff;
    font-size: 30px;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #4b4b4b, #000000);
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
  }

  .menu-icon {
    display: flex;
  }

  /* Mostrar menú cuando está activo */
  #menu-toggle:checked + .menu-icon + .logo + nav {
    max-height: 650px; /* ajustable según cantidad de links */
  }
  .logo {
    margin: 0px;
  }
}

/* Sección principal pantalla completa ---------------------*/
.principal {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.65)),
    url(/static/img/7.jpg); /* puedes cambiar la imagen por comida venezolana */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.principal h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.principal p {
  max-width: 600px;
  margin-bottom: 30px;
  color: #ffffff; /* párrafos en blanco */
  font-size: 22px;
}

.principal .logo-home {
  margin: 50px;
}
.principal .logo-home img {
  width: 25%;
}

.buttons {
  display: flex;
  gap: 20px;
}

/* Botones principales */
.btn {
  background: #b22222; /* rojo vino rústico */
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: #f15d5d; /* marrón cálido al pasar el mouse */
}

/* Botón secundario */
.btn-secondary {
  background: transparent;
  border: 1px solid #b22222; /* borde rojo */
  color: #fff;
}

.btn-secondary:hover {
  background: #b22222; /* rojo vino */
  color: #ffffff;
}

/* Sección principal pantalla completa ---------------------*/

/* horario  181818----------------------- */
.horario-happyhour {
  background: linear-gradient(90deg, #000000, #d4a373);
  color: #f5f0e1; /* texto crema/blanco */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Georgia", serif;
  border-top: 2px solid #d4a373; /* marrón rústico */
  border-bottom: 2px solid #d4a373;
}

.horario-happyhour h2 {
  font-size: 2rem;
  color: #ffffff; /* dorado suave */
  margin-bottom: 10px;
  border-bottom: 1px solid #d4a373;
  padding-bottom: 5px;
}

.horario-happyhour p {
  font-size: 1.2rem;
  margin: 0 0 20px 0;
  color: #ffffff; /* párrafos en blanco */
}

.contenedor-horario,
.contenedor-happyhour {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  max-width: 600px;
}

/* Estilo para la sección de dirección dentro de un cuadro */
.direccion-cuadro {
  text-align: center;
  background-color: #1a1a1a; /* negro rústico */
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #8b4513; /* borde marrón */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  width: 100%;
  max-width: 600px;
}

.direccion-info p {
  font-size: 1.2rem;
  color: #ffffff; /* texto en blanco */
  margin: 0;
}

/* Estilo del botón "Ver Menú" */
.boton-reservar {
  display: inline-block;
  background-color: #b22222; /* rojo vino */
  color: #fff;
  padding: 12px 25px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 15px;
  transition: background-color 0.3s, transform 0.3s;
}

.boton-reservar:hover {
  background-color: #f15d5d; /* dorado al pasar mouse */
  transform: scale(1.1);
}

/* galeria -------------------------------------------- */

.galeria {
  height: 100vh;
  background-color: #1e1e1e;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #d4a373;
}
.galeria-titulo {
  position: absolute;
  top: 3%;
  text-align: center;
  width: 100%;
  z-index: 3;
}

.galeria-titulo h2 {
  color: #d4a373;
  font-size: 2.5rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.carousel-container {
  width: 80%;
  height: 80%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  margin: auto;
}

.carousel-slide {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
  width: 50%; /* 2 imágenes en desktop */
  height: 100%;
  object-fit: cover;
  flex: 0 0 50%;
  filter: brightness(0.8);
}

/* Botones */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .galeria {
    height: 500px;
  }
  .carousel-container {
    width: 95%;
    height: auto; /* contenedor se ajusta a la imagen */
  }

  .carousel-slide {
    flex-direction: row; /* importante: mantener fila */
    height: auto;
  }

  .carousel-slide img {
    width: 100%;
    height: auto; /* mantiene proporción completa */
    flex: 0 0 100%; /* 1 imagen por slide */
    object-fit: contain;
  }

  .galeria-titulo h2 {
    font-size: 2rem;
  }
}

/* Botones */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #e0c097;
  border: none;
  font-size: 30px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 2;
  border-radius: 5px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* eventos --------------------------------------- */
/* Sección de Eventos */
/* 🔥 Sección de Eventos */
/* 🔥 Sección de Eventos */
/* 🔥 Sección de Eventos */
.eventos-section {
  padding: 60px 20px;
  background: linear-gradient(90deg, #000000, #d4a373); /* negro elegante */
  color: #f5f5f1; /* texto crema/blanco */
  font-family: "Poppins", sans-serif;
  border-bottom: 1px solid #8b4513; /* marrón rústico */
}

.titulo-eventos {
  text-align: center;
  font-size: 2.5rem;
  color: #d4a373; /* dorado suave */
  margin-bottom: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 20px 0;
}

/* Línea central dorada */
.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: #d4a373; /* dorado */
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  z-index: 1;
}

/* Emoji cabecera */
.timeline::before {
  content: "🐷";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  z-index: 3;
}

/* Emoji cola */
.timeline-end::after {
  content: "🐷";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  z-index: 3;
}

/* Timeline items */
.timeline-item {
  padding: 20px 30px;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 50px;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 50px;
}

.timeline-content {
  padding: 20px;
  background: #1a1a1a; /* negro rústico */
  border: 2px solid #d4a373; /* dorado suave */
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 15px rgba(212, 163, 115, 0.6); /* sombra dorada */
  transition: transform 0.3s ease;
  z-index: 2;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #d4a373; /* dorado suave */
}

.timeline-content p {
  font-size: 1rem;
  color: #f5f0e1; /* texto crema/blanco */
  margin: 0;
}

.timeline-icon {
  position: absolute;
  top: 20px;
  right: -25px;
  background: #b22222; /* rojo vino */
  color: #fff; /* icono blanco */
  font-size: 1.6rem;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(178, 34, 34, 0.6);
  z-index: 3;
}

.timeline-item:nth-child(even) .timeline-icon {
  left: -25px;
  right: auto;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .titulo-eventos {
    font-size: 24px;
  }
  .timeline::before,
  .timeline-end::after {
    font-size: 1.6rem;
  }
  .timeline::before {
    top: -31px;
  }
  .timeline-end::after {
    bottom: -27px;
  }

  .timeline-item {
    width: 90%;
    padding: 15px;
    margin-bottom: 30px;
  }

  .timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 30px;
  }

  .timeline-item:nth-child(even) {
    left: 10%;
    padding-left: 30px;
  }

  .timeline-content {
    padding: 15px;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .timeline-icon {
    font-size: 1.4rem;
    padding: 8px;
    top: 15px;
  }
}

/* pedidos  ------------------------------------------------------ */

/* Sección principal */
.pedido {
  background: linear-gradient(90deg, #000000, #d4a373);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #d4a373;
}

.pedido-contenedor {
  max-width: 600px;
  width: 100%;
  background: rgb(24 24 24);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  text-align: center;
  backdrop-filter: blur(8px);
}

/* Títulos */
.pedido h1 {
  color: #ffb347;
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.pedido p {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Formulario */
.pedido-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  text-align: left;
}

.input-group label {
  display: block;
  font-weight: 600;
  color: #ffb347;
  margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #a52a2a;
  border-radius: 8px;
  background-color: #1c1c1c;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #ff4141;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 65, 65, 0.5);
}

/* Botón */
.pedido button {
  background-color: #a52a2a;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.pedido button i {
  margin-right: 8px;
  font-size: 1.3rem;
  vertical-align: middle;
}

.pedido button:hover {
  background-color: #ff4141;
  transform: scale(1.03);
}

/* 📱 Responsive - Mobile */
@media (max-width: 768px) {
  .pedido {
    padding: 60px 15px;
  }

  .pedido-contenedor {
    padding: 25px;
    border-radius: 15px;
  }

  .pedido h1 {
    font-size: 1.9rem;
  }

  .pedido p {
    font-size: 0.95rem;
  }

  .pedido button {
    font-size: 1rem;
    padding: 12px;
  }
}

/* plataformas  -*---------------------------*/
.plataformas {
  padding: 80px 20px;
  background: linear-gradient(90deg, #000000, #ff4141);
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.plataformas h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.plataformas p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #f5f5f5;
}

.logos-plataformas {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.plataforma {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #000000; /* fondo blanco */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.plataforma img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.3s, filter 0.3s;
}

.plataforma:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.plataforma:hover img {
  filter: brightness(1.2);
}

/* Mobile */
@media (max-width: 768px) {
  .plataforma {
    width: 110px;
    height: 110px;
  }

  .plataforma img {
    width: 70%;
    height: 70%;
  }

  .plataformas h2 {
    font-size: 2rem;
  }

  .plataformas p {
    font-size: 1rem;
  }

  .logos-plataformas {
    gap: 20px;
  }
}
/* direccion --------------------------------------- */
.direccion {
  background-color: #000000;
  color: #f2e9dc;
  padding: 40px 20px;
  text-align: center;
  font-family: "Georgia", serif;
}

.direccion h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.direccion p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

/* footer------------------------------------ */
.footer-confesionario {
  background-color: #070707;
  color: #f2e9dc;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 2px solid #8b5e3c;
  font-family: "Georgia", serif;
}
.footer-confesionario img {
  width: 10%;
  margin: 25px 0px;
}

.footer-links {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #d4a373;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.footer-redes a {
  color: #d4a373;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: transform 0.3s, color 0.3s ease;
  text-decoration: none;
}

.footer-redes a:hover {
  color: #ffffff;
}

.footer-redes i {
  font-size: 2rem;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-redes a:hover i {
  color: #ffffff;
}

/* Media Queries para Responsividad */

@media (max-width: 768px) {
  .footer-links a {
    font-size: 1rem; /* Reducir tamaño de fuente en pantallas medianas */
    margin: 0 8px;
  }

  .footer-redes a {
    font-size: 1.5rem; /* Ajustar tamaño de los íconos */
  }
}

@media (max-width: 480px) {
  .principal .logo-home img {
    width: 100%;
  }
  .footer-confesionario img {
    width: 50%;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-links a {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .footer-redes {
    align-items: center;
  }

  .footer-redes a {
    font-size: 1.5rem; /* Ajustar tamaño de los íconos para pantallas más pequeñas */
  }
}

/* video --------------------- */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa toda la pantalla en alto */
  max-height: 715px; /* límite en pantallas grandes */
  overflow: hidden;
  background-color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #d4a373;
}

.promo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* sin filter */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 15%);
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  color: #d4a373;
  text-align: center;
  max-width: 80%;
  animation: fadeInUp 2s ease-out;
}

.video-content h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: 600;
}

.video-content p {
  font-size: 1.3rem;
  color: #f0e3d0;
}

/* Animación suave al aparecer el texto */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .video-section {
    max-height: none;
  }
}

/* boton reseñas --------------------- */

.btn-reseñas-container {
  text-align: center;
  margin-top: 30px;
}

.btn-reseñas {
  display: inline-block;
  background: linear-gradient(90deg, #ff4141, #d4a373); /* rojo a dorado */
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px; /* más redondeado */
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-reseñas:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  filter: brightness(1.1);
  color: #ffffff;
}
