@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;600;700&family=Pacifico&display=swap');

:root {
  --bg-base: #0b0b0b;
  --bg-card: rgba(14, 14, 14, 0.75);
  --yellow: #e2f706;
  --yellow-dark: #c4d905;
  --red: #c41e2a;
  --red-dark: #9a1520;
  --white: #f5f5f5;
  --muted: #a8a8a8;
  --whatsapp: #25d366;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-base);
  color: var(--white);
  line-height: 1.5;
  min-height: 100vh;
}

/* Mismo fondo que el logo: negro mate + brillo suave arriba + textura */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: var(--bg-base);
  background-image:
    radial-gradient(
      ellipse 80% 50% at 50% 0%,
      rgba(255, 170, 40, 0.07) 0%,
      rgba(255, 120, 0, 0.03) 30%,
      transparent 65%
    );
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 2rem;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.logo {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  position: relative;
}

.logo-img {
  display: block;
  width: min(320px, 85vw);
  height: auto;
  margin: 0 auto;
  transition: transform 0.25s ease;
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

.menu-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--yellow);
  margin-top: 1.25rem;
  text-shadow: 0 2px 12px rgba(226, 247, 6, 0.25);
}

/* Section banners */
.section-banner {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: #111;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 8px 50%);
  box-shadow: 0 4px 16px rgba(226, 247, 6, 0.2);
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-section {
  margin-bottom: 0.5rem;
}

.menu-item {
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.item-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yellow);
}

.item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  white-space: nowrap;
}

.item-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Bottom info boxes */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (max-width: 640px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-box {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 247, 6, 0.15);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.info-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--yellow);
}

.info-box ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}

.info-box li {
  padding: 0.2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.info-box li span:last-child {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

/* Footer */
.footer {
  margin-top: 2.5rem;
  background: linear-gradient(180deg, var(--red-dark) 0%, var(--red) 100%);
  border-radius: 12px;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(196, 30, 42, 0.35);
  position: relative;
  z-index: 1;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.footer-links a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.85;
}

.footer-links .admin-link {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.35rem;
}

.combo-box {
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-align: center;
}

.combo-box .combo-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.3;
}

.combo-box .combo-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
  margin-top: 0.25rem;
}

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-btn .btn-text {
  display: none;
}

@media (min-width: 480px) {
  .whatsapp-btn .btn-text {
    display: inline;
  }
}
