/* =========================================================
   Demo Site — Food Truck (distinct vibe)
   File: /css/demo-foodtruck.css
========================================================= */

:root{
  --bg:#0a0f14;
  --ink: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --stroke: rgba(255,255,255,.12);
  --panel: rgba(255,255,255,.06);

  /* Food theme */
  --accent:#ffb347;     /* warm amber */
  --accent2:#ff5a5f;    /* spicy red */
  --accent3:#3FA9F5;    /* LCD blue as tertiary */

  --shadow: 0 18px 50px rgba(0,0,0,.42);
  --r16:16px; --r22:22px; --r28:28px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 12% 8%, rgba(255,179,71,.18), transparent 55%),
    radial-gradient(900px 520px at 88% 18%, rgba(255,90,95,.14), transparent 55%),
    radial-gradient(700px 360px at 50% 92%, rgba(63,169,245,.10), transparent 60%),
    var(--bg);
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(1120px, calc(100% - 32px)); margin:0 auto; }
.muted{ color: var(--muted); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  font-weight:1000;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: linear-gradient(135deg, rgba(255,179,71,.95), rgba(255,90,95,.70));
  border-color: rgba(255,179,71,.35);
}
.btn-secondary{ background: rgba(255,255,255,.07); }
.btn-ghost{ background: transparent; }
.btn.full{ width:100%; }

/* Demo banner */
.demo-banner{
  background: rgba(255,90,95,.16);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.demo-banner-inner{
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  padding:10px 0; flex-wrap:wrap;
}
.demo-banner-link{
  font-weight:1000;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:10;
  background: rgba(10,15,20,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; }
.mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  font-weight:1000;
}
.word{ display:flex; flex-direction:column; }
.name{ font-weight:1000; letter-spacing:.2px; }
.tag{ color: rgba(255,255,255,.70); font-weight:800; font-size:.92rem; }

.nav{ display:flex; align-items:center; gap:14px; }
.nav a{ color: rgba(255,255,255,.85); font-weight:900; }
.nav a:hover{ color: rgba(255,255,255,.98); }

/* Hero */
.hero{ padding: 44px 0 18px; }
.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap:22px; align-items:start; }

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-weight:1000;
  color: rgba(255,255,255,.84);
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,179,71,.95);
  box-shadow:0 0 0 6px rgba(255,179,71,.14);
}
h1{
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height:1.05; margin: 14px 0 10px;
}
.lede{ color: rgba(255,255,255,.80); line-height:1.55; margin:0 0 14px; }

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 12px 0 14px; }
.kpis{ display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
.kpi{ padding:12px; border-radius: var(--r16); background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); }
.k-num{ font-weight:1000; }
.k-lbl{ color: rgba(255,255,255,.68); font-weight:800; font-size:.92rem; margin-top:4px; }

.notice{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--r16);
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
}

/* Right column: menu spotlight + schedule card feel */
.hero-media{ display:grid; gap:14px; }
.media-card{
  overflow:hidden;
  border-radius: var(--r28);
  background:
    radial-gradient(800px 320px at 20% 0%, rgba(255,179,71,.18), transparent 60%),
    rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.media-card img{ width:100%; height:auto; }
.media-bar{
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.10);
}
.media-title{ font-weight:1000; }
.media-sub{ color: rgba(255,255,255,.66); font-weight:800; font-size:.92rem; margin-top:4px; }

.quick-card{
  padding:14px;
  border-radius: var(--r28);
  background:
    radial-gradient(800px 320px at 80% 0%, rgba(255,90,95,.12), transparent 60%),
    rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.quick-title{ font-weight:1000; margin-bottom:10px; }
.row{ display:flex; justify-content:space-between; gap:10px; padding:8px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.row:last-child{ border-bottom:none; }
.label{ color: rgba(255,255,255,.68); font-weight:900; }
.value{ font-weight:1000; }

/* Sections */
.section{ padding: 40px 0; }
.section.alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section-head{ margin-bottom:14px; }
.section h2{ margin:0 0 8px; font-size: 1.75rem; }

.grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:16px; }
.card{
  padding:16px;
  border-radius: var(--r28);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color: rgba(255,255,255,.72); line-height:1.5; }

/* Menu styling (makes it feel unique) */
.menu{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:16px;
}
.menu-item{
  padding:14px;
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(600px 260px at 0% 0%, rgba(255,179,71,.14), transparent 60%),
    rgba(255,255,255,.05);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.menu-item .top{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; }
.menu-item strong{ font-weight:1000; }
.menu-item .price{ color: rgba(255,179,71,.92); font-weight:1000; }
.menu-item .desc{ color: rgba(255,255,255,.72); line-height:1.45; }

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(10,15,20,.75);
}
.footer-inner{ display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.links{ display:flex; gap:14px; flex-wrap:wrap; }
.links a{ color: rgba(255,255,255,.78); font-weight:900; }
.links a:hover{ color: rgba(255,255,255,.96); }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .menu{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .nav{ display:none; }
  .kpis{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
}
