/* ============================
   TOKENS
============================ */
:root {
  --dark: #14120f;
  --cream: #f7f4ee;
  --gold: #b6905c;
  --gold-light: #d8bd94;
  --text-dark: #2b2620;
  --text-muted: #6f6a60;
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Quicksand', sans-serif; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

/* ============================
   HERO / PARALLAX HEADER
============================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10,8,6,0.35) 0%, rgba(10,8,6,0.65) 100%),
    /* Reemplazá la url de abajo por una foto real del buffet/club */
    url('https://images.unsplash.com/photo-1600891964092-4316c288032e?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* efecto parallax simple */
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  z-index: 10;
}

.burger {
  width: 28px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.burger span {
  height: 2px;
  background: #fff;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--gold-light); }

.hero-content h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-top: 1.2rem;
}

.hero-tagline {
  margin-top: 0.6rem;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: #fff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============================
   SECTIONS (general)
============================ */
.section {
  padding: 6rem 1.5rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

#horarios {
  padding-top: 10rem;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================
   MENU
============================ */
.menu-card {
  display: block;
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 5rem 2rem;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.55), rgba(20,18,15,0.75));
  z-index: -1;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(43, 38, 32, 0.25);
}

.menu-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.2rem;
  color: var(--gold-light);
}
.menu-card-icon svg {
  width: 100%;
  height: 100%;
}

.menu-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.menu-card p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
}

.menu-card-btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 0.25s ease, color 0.25s ease;
}

.menu-card:hover .menu-card-btn {
  background: var(--gold);
  color: #fff;
}

/* ============================
   HORARIOS / CONTACTO
============================ */
.info {
  background: #fff;
}

.schedule {
  margin-bottom: 3rem;
}
.schedule p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.schedule strong {
  color: var(--text-dark);
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.info-item {
  padding: 0 1rem;
  position: relative;
}
#menu {
  padding-top: 0.5rem;
}

/* Divisores verticales entre columnas, como en el original */
.info-item + .info-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: rgba(43, 38, 32, 0.12);
}

.info-item .icon {
  width: 26px;
  height: 26px;
  margin: 0 auto 0.8rem;
  color: var(--text-muted);
}
.info-item .icon svg {
  width: 100%;
  height: 100%;
}

.info-item h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.info-item p {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Botón circular de WhatsApp debajo del teléfono */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 0.9rem;
  background: #25d366;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-btn svg { width: 22px; height: 22px; }
.whatsapp-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* Redes sociales: cuadrados con borde dorado, como el original */
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.25s ease, color 0.25s ease;
}
.socials a svg {
  width: 18px;
  height: 18px;
}
.socials a:hover {
  background: var(--gold);
  color: #fff;
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .info-item + .info-item::before {
    display: none;
  }
}

/* ============================
   BANNER PEDIDOS
============================ */
.pedidos-banner {
  width: 100%;
  line-height: 0; /* saca el espacio fantasma debajo de la imagen */
}
.pedidos-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================
   FOOTER
============================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.back-top {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.35s ease;
  }
  .nav-links.open { right: 0; }

  .hero { background-attachment: scroll; } /* fixed no funciona bien en mobile */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-down { animation: none; }
}