/* ============================================
   GLOBAL TOKENS — Retro Pop Noir + Typography
   ============================================ */

:root {
  /* Core Palette */
  --paper-white: #FFFEFA;
  --jet-black: #111111;
  --punch-red: #D7263D;

  /* Accents */
  --electric-mint: #2EC4B6;
  --sunbeam-yellow: #FFD23F;
  --retro-peach: #FF9F80;

  /* Text */
  --text-dark: var(--jet-black);
  --text-light: #FFFFFF;

  /* Surfaces */
  --surface-white: #FFFFFF;
  --surface-paper: var(--paper-white);
}

/* ============================================
   RESET
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ============================================
   GLOBAL TYPOGRAPHY
   ============================================ */

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--paper-white);
  color: var(--text-dark);
  line-height: 1.55;
  padding-top: 140px;
  font-size: 1rem;
}

/* Headings — Bebas Neue */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--punch-red);
  margin-bottom: 0.5em;
}

/* Mono Accents — Space Mono */
.price,
figcaption,
.small-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: var(--jet-black);
}

/* Links */
a {
  color: var(--electric-mint);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* Cards */
.card {
  background: var(--surface-white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Utility Text */
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }

/* ============================================
   MENU BOARD — EXACT MATCH TO SPECIALS SECTION
   ============================================ */

/* Full menu wrapper — same as .specials-wrapper */
.menu-section {
  max-width: 700px;
  margin: 2rem auto 2rem;
  padding: 1.5rem;
  border: 2px solid #000;
  background: #fffef5;
}

/* Category headers — match .specials-heading */
.menu-section h1 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  font-size: 2.2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--punch-red);
  text-transform: uppercase;
}

/* Category wrapper */
.menu-category {
  margin: 0 auto 1.5rem;
  padding: 0.5rem 0;
}

/* Menu item row — identical to .special-item */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px dotted rgba(0,0,0,0.25);
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
}

/* Menu item name — override global h3 (Bebas + uppercase) */
.menu-item h3 {
  flex: 1;
  font-family: 'Space Mono', monospace;
  color: var(--jet-black);
  text-align: left;        /* MATCH SPECIALS */
  font-weight: 400;
  margin: 0;
  font-size: 0.9rem;
  text-transform: none;    /* override global uppercase */
  letter-spacing: 0;       /* override global spacing */
}

/* Optional price (only appears if enabled) */
.menu-price {
  font-family: 'Space Mono', monospace;
  color: var(--jet-black);
  font-size: 0.9rem;
  opacity: 0.9;
  margin-left: 1rem;
  text-align: right;
}

/* Descriptions (toppings, combo notes, etc.) */
.menu-desc {
  font-family: 'Space Mono', monospace;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0.75rem 0 1.25rem;
}

.menu-desc-divider {
  border-bottom: 1px dotted rgba(0,0,0,0.25);
  margin: 0.25rem 0 0.5rem 0;
}

/* --- Multi-size grid (Menu Items) --- */


.menu-sizes-grid {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-items: center;
  gap: 0.25rem;
  min-width: 160px;

  /* This is the missing piece: lock column count for BOTH rows */
  --size-count: 1;
}

.sizes-row,
.prices-row {
  display: grid;

  /* This forces perfect vertical alignment */
  grid-template-columns: repeat(var(--size-count), 1fr);

  gap: 1.25rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
}

.sizes-row span {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prices-row span {
  font-weight: 600;
}

/* Description styling */
.menu-desc {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  opacity: 0.85;
}


/* ============================================
   SPECIALS STYLING
   ============================================ */

.specials-wrapper {
  max-width: 700px;
  margin: 2rem auto 1rem;
  padding: 1.5rem;
  border: 2px solid #000;
  background: #fffef5;
}

.specials-heading {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  font-size: 2.2rem;
}

.specials-block {
  margin-top: 1.5rem;
}

.specials-label {
  font-family: 'Space Mono', monospace;
  text-align: center;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.specials-list {
  border-top: 1px solid rgba(0,0,0,0.2);
}

.special-item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dotted rgba(0,0,0,0.25);
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
}

.special-name {
  flex: 1;
}

.special-price {
  margin-left: 1rem;
  font-family: 'Space Mono', monospace;
}

/* ============================================
   HEADER — STACKED + CENTERED
   ============================================ */

header {
  background: var(--paper-white);
  padding: 1rem 2rem;
  border-bottom: 3px solid var(--punch-red);

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-top,
nav,
.header-contact {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo {
  max-width: 180px;
  height: auto;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0.25rem 0;
}

nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--jet-black);
}

nav a:hover {
  color: var(--punch-red);
}

/* Header Contact */
.header-contact {
  margin-top: 0.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-phone {
  font-weight: bold;
  color: var(--jet-black);
}

.header-phone:hover {
  color: var(--punch-red);
}

/* ============================================
   BUTTONS — Bebas Neue
   ============================================ */

.btn-order,
.btn-terra,
.btn-sage,
.btn-gold {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* Punch Red */
.btn-order,
.btn-terra {
  background: var(--punch-red);
  color: var(--text-light);
}

.btn-order:hover,
.btn-terra:hover {
  background: #b51f32;
  transform: translateY(-2px);
}

/* Electric Mint */
.btn-sage {
  background: var(--electric-mint);
  color: var(--jet-black);
}

.btn-sage:hover {
  background: #25a89c;
  transform: translateY(-2px);
}

/* Sunbeam Yellow */
.btn-gold {
  background: var(--sunbeam-yellow);
  color: var(--jet-black);
}

.btn-gold:hover {
  background: #e6bd36;
  transform: translateY(-2px);
}

/* ============================================
   HERO / PARALLAX
   ============================================ */

.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: var(--text-light);
}

.parallax .overlay {
  background: rgba(17,17,17,0.65);
  padding: 2rem;
  border-radius: 8px;
}

.parallax h1 {
  font-size: 3.2rem;
  color: var(--sunbeam-yellow);
}

.parallax p {
  font-size: 1.2rem;
  color: var(--surface-white);
}

/* ============================================
   HOURS & LOCATION
   ============================================ */

.hours-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  background: var(--paper-white);
}

.map-container {
  border: 3px solid var(--sunbeam-yellow);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hours-block h2 {
  text-align: center;
  font-size: 2.2rem;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--punch-red);
  margin-bottom: 1rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  max-width: 400px;
  margin: 0 auto;
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dotted rgba(0,0,0,0.25);
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.features .card {
  flex: 0 1 220px;
  text-align: center;
  border: 3px solid var(--electric-mint);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================
   QUOTES
   ============================================ */

.quote blockquote {
  font-style: italic;
  font-size: 1.2rem;
  border-left: 4px solid var(--retro-peach);
  padding-left: 1rem;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.gallery-item {
  border: 3px solid var(--punch-red);
  border-radius: 8px;
  background: var(--surface-white);
}

/* ============================================
   CAROUSEL
   ============================================ */

.carousel-container {
  border: 3px solid var(--electric-mint);
  border-radius: 8px;
  background: var(--paper-white);
}

.carousel-btn {
  background: rgba(17,17,17,0.65);
  color: var(--text-light);
}

.carousel-dot.active {
  background: var(--punch-red);
}

/* ============================================
   MENU IMAGES
   ============================================ */

.menu-item img {
  border: 3px solid var(--sunbeam-yellow);
  border-radius: 8px;
}

/* ============================================
   PARTNER PRODUCTS
   ============================================ */

.product-card {
  border: 3px solid var(--electric-mint);
  border-radius: 8px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--paper-white);
  border-top: 3px solid var(--punch-red);
  text-align: center;
  padding: 1rem;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }