/* ============================================================
   LA CHULA — menu.css  (loaded only on menu.html)
   ============================================================ */

/* ── MENU HERO ─────────────────────────────────────────── */
.menu-hero {
  position: relative;
  padding: 120px 32px 52px;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.mh-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(26,122,60,0.25) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(212,56,13,0.2) 0%, transparent 55%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 20px
    );
}
.mh-content { position: relative; z-index: 2; }
.mh-logo { height: 90px; margin: 0 auto 16px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }

.menu-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 88px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
  text-shadow: 0 3px 16px rgba(0,0,0,0.4);
}

.menu-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.menu-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
}
.ldot { color: rgba(255,255,255,0.25); }

/* ── STICKY TABS ───────────────────────────────────────── */
.menu-tabs {
  position: sticky;
  top: 68px;
  z-index: 150;
  background: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.tabs-scroll {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.tabs-scroll::-webkit-scrollbar { display: none; }

.mtab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s, border-color .2s;
}
.mtab:hover { color: var(--white); }
.mtab.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* ── MENU BODY ─────────────────────────────────────────── */
.menu-body { padding: 48px 0 80px; background: var(--warm); }

/* ── MENU SECTIONS ─────────────────────────────────────── */
.msec {
  margin-bottom: 64px;
  scroll-margin-top: 148px;
}

.msec-head {
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--border);
  position: relative;
}
.msec-head::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 56px; height: 3px;
  background: var(--red);
}

.msec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  color: var(--dark);
  margin-bottom: 6px;
}
.msec-head p { font-size: 14px; color: var(--muted); font-style: italic; }

.msec-note {
  margin-top: 12px;
  padding: 10px 16px;
  background: var(--yellow-l);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

/* ── MENU ITEMS ────────────────────────────────────────── */
.mitems {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.mitem:last-child { border-bottom: none; }
.mitem:hover { background: var(--warm); }

.mitem-featured { background: var(--yellow-l); }
.mitem-featured:hover { background: #fff8cc; }
.mitem-dinner { background: var(--red-l); }
.mitem-dinner:hover { background: #ffe8e0; }

.mi-left { flex: 1; }

.mi-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .03em;
  color: var(--dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mi-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

.mi-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--red);
  flex-shrink: 0;
  min-width: 56px;
  text-align: right;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--sand);
  color: var(--muted);
}
.badge-veg   { background: #e6f9ee; color: #1a7a3c; }
.badge-hot   { background: #fff0eb; color: #d4380d; }
.badge-dinner { background: #e8f0ff; color: #2a4fa8; }

/* Two-col sides */
.mitems.mitems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  gap: 0;
}
.mitems.mitems-grid .mitem {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mitems.mitems-grid .mitem:nth-child(even) { border-right: none; }

/* ── MENU BOTTOM CTA ───────────────────────────────────── */
.menu-bottom-cta {
  background: var(--green);
  padding: 52px 0;
}
.mbc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.mbc-inner h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 6px;
}
.mbc-inner p { font-size: 16px; color: rgba(255,255,255,0.7); }
.mbc-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.mbc-btns .btn-primary { background: var(--white); color: var(--green); box-shadow: none; }
.mbc-btns .btn-primary:hover { background: var(--warm); }

/* ── FOOD TRUCK PAGE ───────────────────────────────────── */
.truck-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 0;
}
.th-bg { position: absolute; inset: 0; z-index: 0; }
.th-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(.35) saturate(.85);
}
.th-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.2) 100%);
}
.th-content {
  position: relative;
  z-index: 2;
  padding: 120px 32px 72px;
  max-width: 640px;
}
.th-content h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 18px;
}
.th-content h1 em { color: var(--yellow); font-style: normal; }
.th-content p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }

.truck-info { padding: 100px 0; background: var(--warm); }
.ti-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ti-text h2 { margin-bottom: 16px; }
.ti-lead {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.5;
}
.ti-text p { font-size: 15px; color: var(--muted); margin-bottom: 14px; line-height: 1.75; }
.ti-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.ti-list li { font-size: 15px; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 10px; }

.ti-truck-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--yellow);
  box-shadow: 10px 10px 0 var(--green);
}
.ti-phone-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  background: var(--green);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
}
.ti-phone-icon { font-size: 28px; }
.ti-phone-badge strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: .05em; text-transform: uppercase; }
.ti-phone-badge span { font-size: 20px; font-weight: 700; color: var(--yellow); }

.truck-menu-teaser { padding: 80px 0; background: var(--black); }
.truck-menu-teaser .section-tag { color: var(--yellow); border-color: var(--yellow); }
.truck-menu-teaser h2 { color: var(--white); }
.truck-menu-teaser p { color: rgba(255,255,255,0.5); }

.tmt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0 20px;
}
.tmt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: background .2s, border-color .2s;
}
.tmt-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(250,173,20,0.4); color: var(--white); }
.tmt-item span { font-size: 22px; }
.tmt-note { text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); font-style: italic; }

.truck-book-cta {
  padding: 100px 0;
  background: var(--red);
  text-align: center;
}
.tbc-inner { max-width: 580px; margin: 0 auto; }
.tbc-logo { height: 80px; margin: 0 auto 24px; filter: brightness(1.2); }
.tbc-inner h2 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); color: var(--white); margin-bottom: 16px; }
.tbc-inner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; }
.tbc-inner .btn-primary { background: var(--white); color: var(--red); box-shadow: none; margin-bottom: 20px; }
.tbc-inner .btn-primary:hover { background: var(--warm); }
.tbc-address { font-size: 13px; color: rgba(255,255,255,0.55); }

/* RESPONSIVE MENU/TRUCK */
@media (max-width: 1024px) {
  .tmt-grid { grid-template-columns: repeat(2, 1fr); }
  .ti-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .menu-tabs { top: 40px; }
  .mitems.mitems-grid { grid-template-columns: 1fr; }
  .mitems.mitems-grid .mitem { border-right: none; }
  .mbc-inner { flex-direction: column; text-align: center; }
  .tmt-grid { grid-template-columns: repeat(2, 1fr); }
  .mh-logo { height: 70px; }
}
