/* Burgz N Bunz - house style */

:root {
  --charcoal: #2b2b2b;
  --charcoal-soft: #3a3a3a;
  --chrome: #c9c9c9;
  --chrome-dim: #9a9a9a;
  --mustard: #f0a71f;
  --ketchup: #e0392b;
  --bun: #f7dfa5;
  --bun-dark: #e0b96a;
  --char: #2b2b2b;
  --char-soft: #545454;
  --cream: #f7f4ee;
  --pickle: #6a8f3a;
  --shadow: 0 6px 0 rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Baloo 2', 'Trebuchet MS', 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--char);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: 'Fredoka', 'Baloo 2', 'Trebuchet MS', sans-serif;
  line-height: 1.15;
  color: var(--char);
}

a {
  color: inherit;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar / marquee ---------- */
.ticker {
  background: #1c1c1c;
  color: var(--mustard);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--ketchup);
}

.ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 22s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---------- Header / nav ---------- */
header.site-header {
  background: var(--charcoal);
  border-bottom: 4px solid var(--ketchup);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--chrome);
}

.brand .logo-img {
  height: 44px;
  width: auto;
  display: block;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: var(--chrome);
  background: var(--charcoal-soft);
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--chrome-dim);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--ketchup);
  border-color: var(--ketchup);
  color: var(--cream);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .nav-inner { flex-direction: column; gap: 12px; }
  nav.main-nav ul { flex-wrap: wrap; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(224,57,43,0.06) 40px 44px),
    linear-gradient(180deg, var(--charcoal) 0%, #1c1c1c 100%);
  border-bottom: 4px solid var(--ketchup);
  padding: 56px 0 56px;
  text-align: center;
}

.hero .hero-logo {
  max-width: min(560px, 90%);
  margin: 0 auto 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 12px;
  color: var(--chrome);
}

.hero .tagline {
  font-size: 1.25rem;
  color: #bdbdbd;
  max-width: 640px;
  margin: 0 auto 28px;
}

.hero .flame {
  display: inline-block;
  animation: flicker 1.6s infinite alternate;
}

@keyframes flicker {
  from { transform: scale(1) rotate(-2deg); }
  to { transform: scale(1.1) rotate(2deg); }
}

.btn {
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  border: 4px solid var(--char);
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 rgba(43,28,21,0.85);
}

.btn-primary {
  background: var(--ketchup);
  color: var(--cream);
}

.btn-secondary {
  background: transparent;
  color: var(--chrome);
  border-color: var(--chrome-dim);
  margin-left: 12px;
}

@media (max-width: 480px) {
  .btn-secondary { margin-left: 0; margin-top: 12px; }
}

/* ---------- Sections ---------- */
section {
  padding: 56px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--char-soft);
  max-width: 620px;
  margin: 0 auto 36px;
}

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border: 4px solid var(--char);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.card .emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
}

.badge {
  display: inline-block;
  background: var(--pickle);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.badge.hot {
  background: var(--ketchup);
}

.badge.new {
  background: var(--mustard);
  color: var(--char);
}

/* ---------- Menu ---------- */
.menu-section {
  border-top: 6px dashed var(--char-soft);
}

.menu-section:first-of-type {
  border-top: none;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 2px dotted var(--bun-dark);
  padding: 14px 0;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item .item-name {
  font-weight: 800;
  font-size: 1.05rem;
}

.menu-item .item-desc {
  color: var(--char-soft);
  font-size: 0.92rem;
  display: block;
  margin-top: 2px;
}

.menu-item .price {
  white-space: nowrap;
  font-weight: 800;
  background: var(--mustard);
  border: 2px solid var(--char);
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 0.95rem;
}

.credits-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--char-soft);
  margin-top: 40px;
}

/* ---------- Quote / callout ---------- */
.callout {
  background: var(--char);
  color: var(--cream);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  font-size: 1.15rem;
  font-style: italic;
}

.callout strong {
  color: var(--mustard);
  font-style: normal;
}

/* ---------- Timeline (about page) ---------- */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

.timeline li {
  position: relative;
  padding: 0 0 28px 40px;
  border-left: 4px solid var(--bun-dark);
}

.timeline li:last-child {
  border-left-color: transparent;
}

.timeline li::before {
  content: '🍔';
  position: absolute;
  left: -22px;
  top: -2px;
  font-size: 1.4rem;
}

.timeline .year {
  font-weight: 800;
  color: var(--ketchup);
  display: block;
  margin-bottom: 4px;
}

/* ---------- Team ---------- */
.team-card {
  text-align: center;
}

.team-card .avatar {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* ---------- Footer ---------- */
footer {
  background: #1c1c1c;
  color: var(--chrome);
  padding: 36px 0 24px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 4px solid var(--ketchup);
}

footer a {
  color: var(--mustard);
  text-decoration: none;
  font-weight: 700;
}

footer .disclaimer {
  color: #8a8a8a;
  font-size: 0.78rem;
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
