:root {
  --red: #D42B2B;
  --navy: #1A2A5E;
  --cream: #FFF5E1;
  --yellow: #FFD700;
  --chrome: #C8D8E8;
  --checker-size: 28px;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
}

a { color: inherit; }

/* ══════════════ NAVBAR ══════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(14, 23, 51, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  object-fit: cover;
}

.nav-brand-text {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: var(--red);
  text-shadow: 1px 1px 0 var(--yellow);
  line-height: 1.1;
}

.nav-brand-text span {
  display: block;
  font-family: 'Bangers', cursive;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--yellow);
  text-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: 'Bangers', cursive;
  font-size: 18px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--yellow);
  background: rgba(255, 215, 0, 0.1);
}

.nav-cta {
  background: var(--red) !important;
  border: 2px solid var(--yellow) !important;
  color: #fff !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: #b82424 !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--yellow);
  border-radius: 4px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ══════════════ CHECKER BORDER ══════════════ */
.checker-border {
  height: var(--checker-size);
  background-image: repeating-linear-gradient(
    90deg,
    #000 0px,
    #000 var(--checker-size),
    #fff var(--checker-size),
    #fff calc(var(--checker-size) * 2)
  );
  background-size: calc(var(--checker-size) * 2) var(--checker-size);
}
.checker-border.red {
  background-image: repeating-linear-gradient(
    90deg,
    var(--red) 0px,
    var(--red) var(--checker-size),
    #fff var(--checker-size),
    #fff calc(var(--checker-size) * 2)
  );
}
.checker-border.navy {
  background-image: repeating-linear-gradient(
    90deg,
    var(--navy) 0px,
    var(--navy) var(--checker-size),
    var(--cream) var(--checker-size),
    var(--cream) calc(var(--checker-size) * 2)
  );
}

/* ══════════════ HERO ══════════════ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 20px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(212, 43, 43, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 2px, transparent 2px);
  background-size: 40px 40px;
  pointer-events: none;
}

.starburst {
  position: absolute;
  top: calc(var(--nav-height) + 10px);
  right: -60px;
  width: 220px;
  height: 220px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg);
  animation: spin-slow 20s linear infinite;
  z-index: 2;
}

.starburst span {
  font-family: 'Bangers', cursive;
  font-size: 18px;
  color: var(--navy);
  transform: rotate(-15deg);
  text-align: center;
  line-height: 1.2;
  padding: 0 20px;
}

@keyframes spin-slow { to { transform: rotate(375deg); } }

.fry-left, .fry-right {
  position: absolute;
  font-size: 64px;
  opacity: 0.18;
  animation: float 6s ease-in-out infinite;
  user-select: none;
}
.fry-left { left: 40px; top: 30%; animation-delay: 0s; }
.fry-right { right: 40px; top: 50%; animation-delay: -3s; font-size: 80px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

.hero-logo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 8px solid var(--yellow);
  box-shadow: 0 0 0 4px var(--red), 0 0 40px rgba(255, 215, 0, 0.4), 0 0 80px rgba(212, 43, 43, 0.3);
  object-fit: cover;
  margin-bottom: 32px;
  animation: pulse-glow 3s ease-in-out infinite;
  position: relative;
  z-index: 3;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 4px var(--red), 0 0 40px rgba(255, 215, 0, 0.4), 0 0 80px rgba(212, 43, 43, 0.3); }
  50% { box-shadow: 0 0 0 4px var(--red), 0 0 60px rgba(255, 215, 0, 0.7), 0 0 120px rgba(212, 43, 43, 0.5); }
}

.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(60px, 10vw, 120px);
  color: var(--red);
  text-shadow: 4px 4px 0 var(--yellow), 8px 8px 0 rgba(0, 0, 0, 0.3);
  line-height: 1;
  position: relative;
  z-index: 3;
  animation: slide-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-sub {
  font-family: 'Bangers', cursive;
  font-size: clamp(28px, 5vw, 56px);
  color: #fff;
  letter-spacing: 8px;
  text-shadow: 2px 2px 0 var(--navy);
  position: relative;
  z-index: 3;
  animation: slide-in 0.8s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-location {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 8px;
  position: relative;
  z-index: 3;
  animation: slide-in 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slide-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--cream);
  margin-top: 24px;
  max-width: 500px;
  line-height: 1.5;
  position: relative;
  z-index: 3;
  animation: slide-in 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-cta {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 48px;
  background: var(--red);
  color: #fff;
  font-family: 'Bangers', cursive;
  font-size: 28px;
  letter-spacing: 3px;
  text-decoration: none;
  border: 4px solid var(--yellow);
  border-radius: 4px;
  box-shadow: 6px 6px 0 var(--yellow);
  position: relative;
  z-index: 3;
  transition: transform 0.1s, box-shadow 0.1s;
  animation: slide-in 0.8s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--yellow);
}

.hero-cta:active {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--yellow);
}

.neon-sign {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Permanent Marker', cursive;
  font-size: 13px;
  color: var(--yellow);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
  animation: flicker 4s infinite;
  z-index: 3;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
}

/* ══════════════ MARQUEE ══════════════ */
.marquee-wrap {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  color: #fff;
  letter-spacing: 3px;
  padding: 0 32px;
}

.marquee-track span.sep { color: var(--yellow); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════ ABOUT ══════════════ */
.about {
  background: var(--cream);
  padding: 80px 20px;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0;
  pointer-events: none;
}

.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--navy);
  text-align: center;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.section-title span { color: var(--red); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 56px auto 0;
}

.about-card {
  background: var(--navy);
  color: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  border: 4px solid var(--yellow);
  box-shadow: 8px 8px 0 var(--red);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.about-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--red);
}

.about-card .icon { font-size: 56px; margin-bottom: 16px; display: block; }

.about-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.about-card p { font-size: 16px; line-height: 1.7; opacity: 0.9; }

/* ══════════════ MENU SHOWCASE ══════════════ */
.menu-section {
  background: var(--red);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.menu-section .section-title { color: #fff; margin-bottom: 56px; }
.menu-section .section-title span { color: var(--yellow); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-item {
  background: var(--cream);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  border: 3px solid var(--navy);
  box-shadow: 6px 6px 0 var(--navy);
  transition: transform 0.15s, box-shadow 0.15s;
}

.menu-item:hover {
  transform: translate(-3px, -3px) rotate(-1deg);
  box-shadow: 9px 9px 0 var(--navy);
}

.menu-item .food-icon { font-size: 64px; margin-bottom: 12px; display: block; }

.menu-item h4 {
  font-family: 'Bangers', cursive;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 6px;
}

.menu-item .price {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: var(--red);
}

.menu-item p {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
  line-height: 1.5;
}

.menu-item .badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Bangers', cursive;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 2px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

/* ══════════════ HOURS / CAR STRIP ══════════════ */
.car-strip {
  background: var(--navy);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #222;
}

.road::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 40px, transparent 40px, transparent 80px);
  transform: translateY(-50%);
  animation: road-move 2s linear infinite;
}

@keyframes road-move {
  from { background-position: 0 0; }
  to { background-position: -80px 0; }
}

.car-emoji {
  position: absolute;
  bottom: 10px;
  font-size: 52px;
  animation: drive 12s linear infinite;
}

@keyframes drive {
  from { left: -80px; }
  to { left: 110%; }
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hours-card {
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.hours-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 20px;
}

.hours-card .day-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: #fff;
  gap: 12px;
  text-align: left;
}

.hours-card .day-row:last-child { border-bottom: none; }
.hours-card .day-name { font-weight: 700; color: var(--chrome); flex-shrink: 0; }
.hours-card .day-time { color: var(--yellow); font-weight: 700; text-align: right; }

.hours-card a.day-time {
  text-decoration: none;
  transition: opacity 0.2s;
}

.hours-card a.day-time:hover { opacity: 0.8; text-decoration: underline; }

.car-strip .section-title { color: #fff; margin-bottom: 48px; z-index: 2; position: relative; }
.car-strip .section-title span { color: var(--yellow); }

/* ══════════════ SPECIALS RIBBON ══════════════ */
.specials {
  background: var(--yellow);
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}

.specials::before,
.specials::after {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  font-size: 20px;
  color: var(--red);
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

.specials::before { top: 12px; }
.specials::after { bottom: 12px; }

.specials .section-title { color: var(--navy); margin-bottom: 36px; }
.specials .section-title span { color: var(--red); }

.specials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.special-tag {
  background: var(--red);
  color: #fff;
  font-family: 'Bangers', cursive;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 14px 28px;
  border-radius: 3px;
  border: 3px solid var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
  transition: transform 0.15s;
}

.special-tag:hover { transform: rotate(-2deg) scale(1.05); }

/* ══════════════ FOOTER ══════════════ */
footer {
  background: #0d1733;
  padding: 60px 20px 30px;
  text-align: center;
  position: relative;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.footer-logo-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--yellow);
  box-shadow: 0 0 0 2px var(--red);
  object-fit: cover;
}

.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 48px;
  color: var(--red);
  text-shadow: 3px 3px 0 var(--yellow);
}

.footer-tagline {
  font-family: 'Permanent Marker', cursive;
  color: var(--chrome);
  font-size: 16px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-item {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

.contact-item strong {
  color: var(--yellow);
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--yellow); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--navy);
  border: 2px solid var(--yellow);
  border-radius: 4px;
  color: #fff;
  font-family: 'Bangers', cursive;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s;
}

.social-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.copy {
  font-size: 13px;
  color: #555;
  border-top: 1px solid #222;
  padding-top: 24px;
}

/* ══════════════ SCROLL REVEAL ══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(14, 23, 51, 0.98);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 3px solid var(--yellow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .nav-cta { margin-left: 0; }

  .nav-brand-text { display: none; }
}

@media (max-width: 600px) {
  .hours-grid { grid-template-columns: 1fr; }
  .starburst { width: 130px; height: 130px; top: calc(var(--nav-height) + 10px); right: -40px; }
  .starburst span { font-size: 12px; }
  .fry-left, .fry-right { display: none; }
}
