

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: hsl(0 0% 4%);
      color: hsl(45 10% 90%);
      min-height: 100vh;
    }
    h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; border: none; background: none; }

    /* ========== CONTAINER ========== */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

    /* ========== SCROLLBAR ========== */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: hsl(0 0% 4%); }
    ::-webkit-scrollbar-thumb { background: hsl(43 89% 50% / 0.5); border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: hsl(43 89% 50% / 0.7); }

    /* ========== NAVBAR ========== */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      background: hsl(0 0% 4%);
      transition: all 0.3s;
    }
    .navbar.scrolled {
      background: hsl(0 0% 4% / 0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 20px hsl(0 0% 0% / 0.5);
    }
    .navbar-logo { display: flex; justify-content: center; padding: 0.75rem 0; }
    .navbar-logo img { height: 3rem; width: auto; }
    .navbar-menu {
      display: none; /* hidden on mobile */
      justify-content: center; align-items: center; gap: 0.25rem;
      padding-bottom: 0.75rem; flex-wrap: wrap;
    }
    .navbar-menu a {
      padding: 0.5rem 1rem;
      font-size: 0.75rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.05em;
      color: hsl(45 10% 90% / 0.9);
      border: 1px solid hsl(43 30% 20% / 0.5);
      border-radius: 0.25rem;
      transition: color 0.3s, border-color 0.3s;
    }
    .navbar-menu a:hover {
      color: hsl(43 89% 50%);
      border-color: hsl(43 89% 50% / 0.5);
    }
    .mobile-toggle { display: flex; justify-content: center; padding-bottom: 0.5rem; }
    .mobile-toggle button { padding: 0.5rem; color: hsl(45 10% 90%); }
    .mobile-toggle svg { width: 24px; height: 24px; }
    .mobile-menu {
      display: none;
      background: hsl(0 0% 4%);
      border-top: 1px solid hsl(43 30% 20%);
      padding: 1rem;
    }
    .mobile-menu.open { display: flex; flex-direction: column; gap: 0.5rem; }
    .mobile-menu a {
      text-align: center; padding: 0.75rem;
      color: hsl(45 10% 90% / 0.8);
      text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.875rem;
      border-bottom: 1px solid hsl(43 30% 20% / 0.3);
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: hsl(43 89% 50%); }

    @media (min-width: 1024px) {
      .navbar-menu { display: flex; }
      .mobile-toggle { display: none; }
      .navbar-logo img { height: 3.5rem; }
    }

    /* ========== CAROUSEL (shared) ========== */
    .carousel {
      position: relative; overflow: hidden; border-radius: 0.5rem;
    }
    .carousel.no-round { border-radius: 0; }
    .carousel-img {
      width: 100%; height: 100%; object-fit: cover;
      position: absolute; top: 0; left: 0;
      opacity: 0; transition: opacity 0.5s;
    }
    .carousel-img.active { opacity: 1; }
    .carousel-dots {
      position: absolute; bottom: 1rem;
      left: 50%; transform: translateX(-50%);
      display: flex; gap: 0.5rem;
    }
    .dot {
      width: 0.625rem; height: 0.625rem; border-radius: 50%;
      background: hsl(0 0% 100% / 0.4);
      transition: background 0.3s; cursor: pointer; border: none;
    }
    .dot.active { background: white; }
    .dot:hover { background: hsl(0 0% 100% / 0.7); }

    /* ========== HERO ========== */
    .hero { padding-top: 7rem; width: 100%; }
    .hero .carousel { width: 100%; height: 500px; }
    @media (min-width: 768px) { .hero { padding-top: 8rem; } }
    @media (min-width: 1024px) { .hero { padding-top: 9rem; } }

    /* ========== SECTIONS (Restaurant, Promociones) ========== */
    .section { padding: 3rem 0; }
    .section .carousel-wide { aspect-ratio: 16 / 7; }
    @media (min-width: 768px) { .section .carousel-wide { aspect-ratio: 21 / 9; } }
    .section-text { text-align: center; max-width: 56rem; margin: 0 auto; }
    .section-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
    @media (min-width: 768px) { .section-title { font-size: 1.875rem; } }
    .section-desc {
      color: hsl(45 10% 90% / 0.7); font-size: 0.875rem; line-height: 1.6;
    }
    @media (min-width: 768px) { .section-desc { font-size: 1rem; } }

    /* ========== EVENTOS ========== */
    .eventos-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1rem; margin-bottom: 1.5rem;
    }
    @media (min-width: 768px) { .eventos-grid { grid-template-columns: repeat(4, 1fr); } }
    .eventos-grid .carousel { aspect-ratio: 1 / 1; }

    /* ========== JUEGOS & DEPORTES ========== */
    .juegos-grid {
      display: grid; grid-template-columns: 1fr; gap: 2rem;
    }
    @media (min-width: 768px) { .juegos-grid { grid-template-columns: repeat(2, 1fr); } }
    .juegos-grid .carousel { aspect-ratio: 16 / 9; margin-bottom: 1rem; }
    .juegos-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
    @media (min-width: 768px) { .juegos-title { font-size: 1.5rem; } }
    .juegos-text { color: hsl(45 10% 90% / 0.7); font-size: 0.875rem; line-height: 1.6; }

    /* ========== FOOTER ========== */
    .site-footer {
      padding: 2.5rem 0;
      border-top: 1px solid hsl(43 30% 20% / 0.3);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1fr; gap: 2rem;
      align-items: start;
    }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
    .footer-social { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
    .footer-social a {
      width: 2rem; height: 2rem; border-radius: 50%;
      background: hsl(0 0% 15%);
      display: flex; align-items: center; justify-content: center;
      color: hsl(45 10% 90%);
      transition: color 0.3s;
    }
    .footer-social a:hover { color: hsl(43 89% 50%); }
    .footer-social svg { width: 1rem; height: 1rem; }
    .footer-center { text-align: center; }
    .footer-center img { height: 3.5rem; width: auto; margin: 0 auto 1rem; }
    .footer-center p { color: hsl(0 0% 60%); font-size: 0.75rem; }
    .footer-right { text-align: right; }
    .footer-right p { color: hsl(45 10% 90% / 0.7); font-size: 0.875rem; margin-bottom: 0.5rem; }
    .footer-placeholder {
      width: 6rem; height: 2.5rem; background: hsl(0 0% 15%);
      border-radius: 0.25rem; display: flex;
      align-items: center; justify-content: center;
      font-size: 0.75rem; color: hsl(0 0% 60%);
    }
/* Botón */
.btn-carta {
  display: block;
  margin: 12px auto 0;
  padding: 12px 20px;
  background: linear-gradient(135deg, #c9a84c, #b8860b);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-carta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Modal */
.modal-carta {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-carta-content {
  background: #1a1a2e;
  border-radius: 12px;
  padding: 30px;
  max-width: 90%;
  width: 100%;

  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.modal-carta h2 {
  text-align: center;
  color: #c9a84c;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}
.carta-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
    height: 100%
}
.carta-gallery img {
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
}
