/* ============================================================
   SMASH TRUCK — Rock'n'Roll / Route 66 / USA vintage
   ============================================================ */

:root {
  --noir: #0A0A0A;
  --noir-2: #131313;
  --noir-3: #1B1B1B;
  --rouge: #D72638;
  --jaune: #F7B801;
  --blanc: #F5F5F5;
  --gris: #9a9a96;
  --neon: 1;
  --font-display: "Alfa Slab One", serif;
  --font-script: "Yellowtail", cursive;
  --font-body: "Barlow", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--rouge); color: var(--blanc); }

img { display: block; max-width: 100%; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; text-transform: uppercase; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ---------- utilities ---------- */

.script { font-family: var(--font-script); text-transform: none; color: var(--jaune); }

.neon-red {
  color: var(--rouge);
  text-shadow:
    0 0 calc(8px * var(--neon)) rgba(215, 38, 56, .9),
    0 0 calc(28px * var(--neon)) rgba(215, 38, 56, .45);
}
.neon-yellow {
  color: var(--jaune);
  text-shadow:
    0 0 calc(8px * var(--neon)) rgba(247, 184, 1, .85),
    0 0 calc(28px * var(--neon)) rgba(247, 184, 1, .4);
}

/* néon qui clignote de temps à autres */
.neon-flicker { animation: neonFlicker 9s linear infinite; }
@keyframes neonFlicker {
  0%, 100% { opacity: 1; filter: brightness(1); }
  3%    { opacity: 1; filter: brightness(1); }
  3.4%  { opacity: .35; filter: brightness(.4); }
  3.8%  { opacity: 1; filter: brightness(1.15); }
  4.2%  { opacity: .55; filter: brightness(.5); }
  4.6%  { opacity: 1; filter: brightness(1); }
  38%   { opacity: 1; filter: brightness(1); }
  38.5% { opacity: .4; filter: brightness(.45); }
  39%   { opacity: 1; filter: brightness(1); }
  71%   { opacity: 1; filter: brightness(1); }
  71.4% { opacity: .5; filter: brightness(.5); }
  71.8% { opacity: 1; filter: brightness(1.2); }
  72.4% { opacity: .3; filter: brightness(.35); }
  73%   { opacity: 1; filter: brightness(1); }
}
@media (prefers-reduced-motion: reduce) { .neon-flicker { animation: none; } }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--jaune);
}
.kicker::before, .kicker::after {
  content: "";
  width: 36px; height: 2px;
  background: var(--rouge);
}

/* checkerboard diner strip */
.checker {
  height: 18px;
  background:
    repeating-conic-gradient(var(--blanc) 0% 25%, var(--noir) 0% 50%)
    0 0 / 36px 36px;
  background-position: 0 0;
  opacity: .92;
}

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--rouge);
  color: var(--blanc);
  box-shadow: 0 0 calc(22px * var(--neon)) rgba(215, 38, 56, .45), 0 8px 24px rgba(0,0,0,.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 calc(34px * var(--neon)) rgba(215, 38, 56, .65), 0 12px 28px rgba(0,0,0,.55);
}
.btn-ghost {
  border-color: var(--jaune);
  color: var(--jaune);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--jaune);
  color: var(--noir);
  transform: translateY(-2px);
  box-shadow: 0 0 calc(28px * var(--neon)) rgba(247, 184, 1, .45);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 245, 245, .08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--blanc);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.logo .star { color: var(--jaune); text-shadow: 0 0 calc(10px * var(--neon)) rgba(247,184,1,.8); }
.logo em { font-family: var(--font-script); font-size: 20px; color: var(--rouge); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  color: var(--blanc);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
  transition: color .2s ease, opacity .2s ease;
}
.nav-links a:hover { color: var(--jaune); opacity: 1; }
.nav-cta { padding: 11px 22px; font-size: 13px; }

.nav-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span { width: 24px; height: 2px; background: var(--blanc); transition: transform .25s ease, opacity .25s ease; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  background:
    radial-gradient(1100px 600px at 78% 30%, rgba(215, 38, 56, .14), transparent 65%),
    radial-gradient(900px 500px at 12% 80%, rgba(247, 184, 1, .07), transparent 60%),
    var(--noir);
  overflow: hidden;
}

/* drifting smoke */
.smoke { position: absolute; inset: 0; pointer-events: none; opacity: var(--smoke, .75); }
.smoke i {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,245,245,.07), transparent 70%);
  filter: blur(30px);
  animation: drift 16s ease-in-out infinite;
}
.smoke i:nth-child(1) { left: 4%;  bottom: -12%; animation-delay: 0s; }
.smoke i:nth-child(2) { left: 38%; bottom: -22%; animation-delay: -5s; width: 600px; height: 600px; }
.smoke i:nth-child(3) { right: 2%; bottom: -10%; animation-delay: -10s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -70px) scale(1.12); }
  66%      { transform: translate(-30px, -130px) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) { .smoke i { animation: none; } }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.badge-66 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 22px 12px;
  border: 2px solid var(--blanc);
  border-radius: 10px 10px 26px 26px;
  font-family: var(--font-display);
  color: var(--blanc);
  background: rgba(245,245,245,.04);
  box-shadow: 0 0 calc(18px * var(--neon)) rgba(245,245,245,.18);
  margin-bottom: 26px;
}
.badge-66 small { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: .4em; text-transform: uppercase; }
.badge-66 strong { font-size: 26px; font-weight: 400; letter-spacing: .06em; }

.hero h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  margin: 0 0 22px;
}
.hero h1 .l2 { display: block; }

.hero-sub {
  font-size: 19px;
  color: var(--gris);
  max-width: 46ch;
  margin-bottom: 38px;
}
.hero-sub strong { color: var(--blanc); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 46px; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 34px; }
.hero-proof div { display: flex; flex-direction: column; gap: 2px; }
.hero-proof b { font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--jaune); }
.hero-proof span { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gris); }

/* burger visual */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-disc {
  position: absolute;
  width: min(480px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(247, 184, 1, .4);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-disc { animation: none; } }

.hero-photo {
  position: relative;
  z-index: 2;
  width: min(420px, 78%);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow:
    0 0 0 6px var(--noir),
    0 0 0 8px rgba(215, 38, 56, .8),
    0 0 calc(48px * var(--neon)) rgba(215, 38, 56, .35),
    0 36px 70px rgba(0,0,0,.65);
}
.hero-sticker {
  position: absolute;
  z-index: 3;
  right: 4%;
  top: 6%;
  width: 118px; height: 118px;
  border-radius: 50%;
  background: var(--jaune);
  color: var(--noir);
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(10deg);
  box-shadow: 0 0 calc(26px * var(--neon)) rgba(247,184,1,.4), 0 12px 24px rgba(0,0,0,.5);
}
.hero-sticker em { font-family: var(--font-script); font-size: 18px; display: block; font-style: normal; }

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  background: var(--rouge);
  color: var(--blanc);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--noir);
  border-bottom: 3px solid var(--noir);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track i { font-style: normal; color: var(--jaune); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */

.section { padding: 110px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); margin: 14px 0 12px; }
.section-head p { color: var(--gris); font-size: 18px; }

/* ============================================================
   MENU
   ============================================================ */

#menu { background: var(--noir-2); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--noir-3);
  border: 1px solid rgba(245,245,245,.08);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 38, 56, .55);
  box-shadow: 0 0 calc(30px * var(--neon)) rgba(215, 38, 56, .18), 0 20px 40px rgba(0,0,0,.45);
}
.card .photo { width: 100%; height: 210px; }
.card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.card-top h3 { font-size: 21px; letter-spacing: .03em; }
.price { font-family: var(--font-display); font-size: 21px; color: var(--jaune); white-space: nowrap; }
.card p { color: var(--gris); font-size: 15.5px; flex: 1; }
.tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rouge);
  border: 1px solid rgba(215, 38, 56, .5);
  border-radius: 999px;
  padding: 4px 12px;
}
.tag.gold { color: var(--jaune); border-color: rgba(247,184,1,.5); }

.menu-sides {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.side {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: var(--noir-3);
  border: 1px solid rgba(245,245,245,.08);
  border-radius: 8px;
}
.side b { font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: 14.5px; }
.side span { font-family: var(--font-display); color: var(--jaune); font-size: 17px; }

.menu-note { text-align: center; margin-top: 44px; color: var(--gris); font-size: 15px; }
.menu-note a { color: var(--jaune); }

/* ============================================================
   STORY
   ============================================================ */

.story-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.story-photo { width: 100%; height: auto; aspect-ratio: 4 / 3; box-shadow: 0 30px 60px rgba(0,0,0,.55); }
.story-photo-wrap { position: relative; }
.story-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--rouge);
  border-radius: 12px;
  z-index: -1;
}
.story-copy h2 { font-size: clamp(30px, 3.6vw, 46px); margin: 14px 0 20px; }
.story-copy p { color: var(--gris); margin-bottom: 18px; max-width: 54ch; }
.story-copy p strong { color: var(--blanc); font-weight: 600; }

.story-points { list-style: none; margin: 28px 0 0; display: grid; gap: 14px; }
.story-points li { display: flex; gap: 14px; align-items: baseline; font-weight: 500; }
.story-points li::before {
  content: "★";
  color: var(--jaune);
  text-shadow: 0 0 calc(10px * var(--neon)) rgba(247,184,1,.7);
}

/* ============================================================
   LOCATIONS
   ============================================================ */

#spots { background: var(--noir-2); }

.spots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.spot {
  background: var(--noir-3);
  border: 1px solid rgba(245,245,245,.08);
  border-radius: 10px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s ease, border-color .25s ease;
}
.spot:hover { transform: translateY(-4px); border-color: rgba(247,184,1,.5); }
.spot .day {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .14em;
  color: var(--rouge);
  text-transform: uppercase;
}
.spot h3 { font-family: var(--font-body); font-weight: 700; font-size: 19px; text-transform: none; }
.spot p { color: var(--gris); font-size: 14.5px; }
.spot .hours {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--jaune);
}
.spot.off { opacity: .55; }
.spot.off .day { color: var(--gris); }

.spots-cta { text-align: center; margin-top: 48px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}
.gallery-grid image-slot { width: 100%; height: 100%; }
.g-wide { grid-column: span 2; }

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  position: relative;
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(800px 360px at 50% 0%, rgba(215, 38, 56, .18), transparent 70%),
    var(--noir-2);
  border-top: 1px solid rgba(245,245,245,.08);
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(30px, 4vw, 50px); margin-bottom: 14px; }
.cta-band p { color: var(--gris); font-size: 18px; margin-bottom: 36px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer { background: var(--noir); border-top: 1px solid rgba(245,245,245,.08); padding: 70px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: var(--gris); text-decoration: none; transition: color .2s ease; }
.footer a:hover { color: var(--blanc); }
.footer p { color: var(--gris); font-size: 15px; max-width: 36ch; }
.footer .logo { margin-bottom: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(245,245,245,.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--gris);
  font-size: 13.5px;
  letter-spacing: .06em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-sides, .spots-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero { padding-top: 110px; }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10,10,10,.97);
    border-bottom: 1px solid rgba(245,245,245,.1);
    padding: 10px 5vw 24px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; font-size: 16px; }
  .nav-links .nav-cta { margin-top: 12px; display: inline-flex; }
  .nav-burger { display: flex; }

  .section { padding: 78px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .spots-grid { grid-template-columns: 1fr; }
  .menu-sides { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-sticker { width: 96px; height: 96px; font-size: 13px; right: 0; }
  .btn { width: 100%; }
  .hero-ctas { gap: 12px; }
  .hero-proof { gap: 22px; }
}


/* ============================================================
   EXPORT — images statiques (remplacent les emplacements photo)
   ============================================================ */

img.hero-photo { border-radius: 50%; object-fit: cover; }
img.story-photo { border-radius: 12px; object-fit: cover; }
.card img.photo { object-fit: cover; }
.gallery-grid img { width: 100%; height: 100%; border-radius: 10px; object-fit: cover; }
