/* ============================================================
   La Parrilla Grilled Food — Web Pública
   laparrilla.food
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--lp-text-on-light);
  background: var(--lp-bg-light);
  line-height: 1.6;
}

.lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lp-bg-dark);
  border-bottom: 1px solid var(--lp-bg-surface);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.lp-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-logo-img {
  height: 48px;
  width: auto;
}

.lp-nav {
  display: flex;
  gap: 1.5rem;
}

.lp-nav a {
  color: var(--lp-cream);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.lp-nav a:hover { color: var(--lp-gold); }

.lp-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.lp-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lp-cream);
  border-radius: 2px;
}

/* ── Hero ── */
.lp-hero {
  background: linear-gradient(135deg, var(--lp-bg-dark) 0%, var(--lp-bg-surface) 100%);
  padding: 6rem 0 5rem;
  text-align: center;
}

.lp-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--lp-cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lp-text-fire { color: var(--lp-gold); }

.lp-hero-content p {
  font-size: 1.1rem;
  color: var(--lp-cream);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.lp-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.lp-btn-primary {
  background: var(--lp-primary);
  color: #fff;
  border-color: var(--lp-primary);
}

.lp-btn-primary:hover { background: var(--lp-primary-hover); border-color: var(--lp-primary-hover); }

.lp-btn-outline {
  background: transparent;
  color: var(--lp-cream);
  border-color: var(--lp-cream);
}

.lp-btn-outline:hover { background: var(--lp-cream); color: var(--lp-bg-dark); }

/* ── Sections ── */
.lp-section {
  padding: 4rem 0;
}

.lp-section-dark {
  background: var(--lp-bg-dark);
  color: var(--lp-cream);
}

.lp-section-soft {
  background: var(--lp-bg-soft);
}

.lp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--lp-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.lp-section-dark .lp-section-title { color: var(--lp-gold); }

.lp-section-subtitle {
  text-align: center;
  color: var(--lp-cream);
  opacity: 0.7;
  margin-bottom: 2rem;
}

/* ── Menu Grid ── */
.lp-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.lp-menu-card {
  background: var(--lp-bg-surface);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-menu-card-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--lp-cream);
}

.lp-menu-card-desc {
  font-size: 0.85rem;
  color: var(--lp-cream);
  opacity: 0.7;
}

.lp-menu-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-gold);
  margin-top: auto;
}

.lp-menu-card-unavailable {
  opacity: 0.4;
}

.lp-menu-card-badge {
  display: inline-block;
  background: var(--lp-primary);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

/* ── About ── */
.lp-about {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lp-about-text p { margin-bottom: 1rem; color: var(--lp-muted); }
.lp-about-text strong { color: var(--lp-primary); }

.lp-about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lp-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 1.05rem;
}

.lp-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--lp-primary);
  border-radius: 12px;
  flex-shrink: 0;
}

.lp-icon {
  width: 28px;
  height: 28px;
  color: var(--lp-cream);
  stroke-width: 1.5;
}

.lp-icon-sm {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.lp-social-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
}

.lp-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 0.5rem;
}

/* ── Galería ── */
.lp-galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.lp-galeria-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.lp-galeria-img:hover { transform: scale(1.03); }

/* ── Horarios ── */
.lp-horarios-grid {
  max-width: 480px;
  margin: 0 auto;
}

.lp-horario-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--lp-border-light);
  font-size: 0.95rem;
}

.lp-horario-day { font-weight: 600; color: var(--lp-primary); }
.lp-horario-time { color: var(--lp-muted); }
.lp-horario-closed { color: var(--lp-primary); font-weight: 600; }

/* ── Footer ── */
.lp-footer {
  background: var(--lp-bg-dark);
  color: var(--lp-cream);
  padding: 3rem 0 0;
}

.lp-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.lp-footer-address { color: var(--lp-cream); opacity: 0.7; margin-top: 0.5rem; font-size: 0.9rem; }

.lp-footer-links h4,
.lp-footer-contact h4 {
  color: var(--lp-gold);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.lp-footer-links a,
.lp-footer-contact a {
  display: block;
  color: var(--lp-cream);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.lp-footer-links a:hover,
.lp-footer-contact a:hover { color: var(--lp-gold); }

.lp-footer-bottom {
  border-top: 1px solid var(--lp-bg-surface);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ── Utilities ── */
.lp-loading { text-align: center; padding: 2rem; opacity: 0.6; }
.lp-empty { text-align: center; padding: 2rem; opacity: 0.6; }

/* ── Maps ── */
.lp-maps { width: 100%; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .lp-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--lp-bg-dark); padding: 1rem 1.5rem; gap: 0.75rem; border-top: 1px solid var(--lp-bg-surface); }
  .lp-nav.open { display: flex; }
  .lp-nav-toggle { display: flex; }
  .lp-hero { padding: 4rem 0 3rem; }
  .lp-about { grid-template-columns: 1fr; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .lp-galeria-grid { grid-template-columns: repeat(2, 1fr); }
}
