/* ================================
   OHIO GEEKS – ROCKABILLY DRIVE-IN
   ================================ */
/* ===== Mobile-first centering for small screens ===== */
@media (max-width: 920px) {
/* Center everything in the header */
header {
  display: flex;
  flex-direction: column;   /* stack everything vertically */
  align-items: center;      /* center horizontally */
  justify-content: center;  /* center vertically */
  padding: 20px 0;
  background: var(--dark-gray);
  border-bottom: 3px solid var(--green);
  text-align: center;
}

/* Centered logo */
.logo img {
  height: 260px;   /* adjust size as needed */
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Center the open sign */
.header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

/* Center the menu */
nav {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 10px;
}

  /* Hero: center content and make CTAs full-width-ish */
  #hero {
    text-align: center;
    padding: 36px 18px;
  }

  #hero h1 { font-size: 2rem; line-height: 1.1; }
  #hero p  { font-size: 1rem; margin-top: 10px; }

  .hero-cta .btn,
  #hero .btn {
    display: block;
    width: min(320px, 90%);
    margin: 14px auto;
  }

  /* Services / Menu: single column, centered cards */
  .menu-grid,
  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 12px;
  }

  .menu-card,
  .service-grid article {
    margin: 0 auto;
    max-width: 720px;
    text-align: center;
  }

  .menu-title-line {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .menu-price { font-weight: 700; }

  /* About / Pricing / Contact panels: center text and tighten padding */
  .panel {
    padding: 18px;
    text-align: center;
  }

  /* Contact form: full-width inputs */
  .contact form,
  .panel form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .contact input[type="text"],
  .contact input[type="email"],
  .contact textarea,
  .panel input[type="text"],
  .panel input[type="email"],
  .panel textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    color: var(--cream);
  }

  .contact .btn,
  .panel .btn {
    width: min(320px, 90%);
    margin: 8px auto;
  }

  /* Footer: center */
  footer {
    text-align: center;
    padding: 18px;
  }
}

/* Optional: slightly smaller logo on very small phones */
@media (max-width: 420px) {
  .logo img { height: 160px; }
  nav ul { gap: 8px; font-size: 0.95rem; }
  #hero h1 { font-size: 1.6rem; }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Header: center logo on top, nav centered below */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--dark-gray);
  border-bottom: 3px solid var(--red);
}

/* Logo: larger and centered */
.logo img {
  height: 260px; /* larger size — change this number to taste */
  width: auto;
  display: block;
  align-items: center;
  margin: 0 auto;
}

/* Keep any left-side items stacked under the logo if present */
.header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Navigation: centered below the logo */
nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 10px;
}

/* Mobile fallbacks */
@media (max-width: 920px) {
  .logo img { height: 220px; }
  nav ul { gap: 14px; font-size: 0.95rem; }
}

@media (max-width: 420px) {
  .logo img { height: 160px; }
  nav ul { gap: 8px; font-size: 0.9rem; }
}
body {
  font-family: 'Montserrat', sans-serif;
  background: #0a0f1a;
  color: #fff3d9;
}

/* Color tokens */
:root {
  --cherry-red: #ff3b3b;
  --vanilla-cream: #fff3d9;
  --teal-neon: #33ffcc;
  --hot-pink: #ff4fd8;
  --sunset-orange: #ff9f43;
  --chrome: #d9d9d9;
  --jet-black: #0d0d0d;
}

/* Checkerboard background */
.checkerboard {
  background-image:
    linear-gradient(45deg, #000 25%, transparent 25%),
    linear-gradient(-45deg, #000 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #000 75%),
    linear-gradient(-45deg, transparent 75%, #000 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* HEADER */

header {
  background: var(--jet-black);
  border-bottom: 6px solid var(--chrome);
  box-shadow: 0 0 25px rgba(255, 79, 216, 0.4);
  padding: 16px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo as big sign */
.logo {
  height: 200px;
  display: auto;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* HOT-ROD OPEN SIGN BELOW LOGO */

.open-sign {
  margin-top: 12px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 3px solid var(--chrome);
  background: radial-gradient(circle at 30% 0%, #ff7b3b, #ff3b3b 60%, #7a0000 100%);
  box-shadow:
    0 0 12px rgba(255, 59, 59, 0.9),
    0 0 24px rgba(255, 159, 67, 0.7);
  display: inline-block;
}

.open-sign span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--vanilla-cream);
  text-shadow:
    0 0 6px rgba(255, 159, 67, 1),
    0 0 12px rgba(255, 59, 59, 1);
}

/* Steady glow + occasional pulse */
@keyframes openPulse {
  0%, 70%, 100% {
    box-shadow:
      0 0 12px rgba(255, 59, 59, 0.9),
      0 0 24px rgba(255, 159, 67, 0.7);
    opacity: 1;
  }
  75% {
    box-shadow:
      0 0 20px rgba(255, 59, 59, 1),
      0 0 40px rgba(255, 159, 67, 1);
    opacity: 1;
  }
  78% {
    opacity: 0.7;
  }
  82% {
    opacity: 1;
  }
}

.open-sign {
  animation: openPulse 6s infinite;
}

/* NAV */

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin-top: 12px;
}

nav ul li a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--vanilla-cream);
  padding: 6px 10px;
  border-radius: 999px;
  border: 2px solid var(--chrome);
  background: linear-gradient(135deg, #1a1a1a, #333);
  box-shadow: 0 0 10px rgba(51, 255, 204, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

nav ul li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(51, 255, 204, 0.7);
  color: var(--teal-neon);
}

/* MAIN LAYOUT */

main {
  padding: 32px 0 48px;
}

/* HERO */

#hero {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 32px;
  border-radius: 18px;
  border: 4px solid var(--chrome);
  background: radial-gradient(circle at top, #ff9f43 0%, #0a0f1a 55%, #000 100%);
  box-shadow:
    0 0 25px rgba(255, 159, 67, 0.6),
    0 0 40px rgba(51, 255, 204, 0.3);
  text-align: center;
}

#hero h1 {
  font-family: 'Lobster Two', cursive;
  font-size: 2.6rem;
  color: var(--vanilla-cream);
  text-shadow:
    0 0 8px rgba(255, 159, 67, 0.9),
    0 0 16px rgba(255, 79, 216, 0.7);
  margin-bottom: 12px;
}

#hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Jukebox / beauty-box button */

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  border: 3px solid var(--chrome);
  background: linear-gradient(135deg, #ff4fd8, #ff9f43);
  color: var(--vanilla-cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow:
    0 0 14px rgba(255, 79, 216, 0.8),
    0 0 24px rgba(51, 255, 204, 0.5);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(255, 79, 216, 1),
    0 0 32px rgba(51, 255, 204, 0.8);
}

/* SECTIONS */

section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 32px;
}

/* Section headers with checkerboard strip */

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.section-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vanilla-cream);
}

.section-header-strip {
  flex: 1;
  height: 24px;
  border-radius: 999px;
  overflow: hidden;
}

.section-header-strip-inner {
  height: 100%;
}

/* MENU GRID – diner cards */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.menu-card {
  background: #141414;
  border-radius: 18px;
  border: 4px solid var(--chrome);
  box-shadow:
    0 0 18px rgba(51, 255, 204, 0.4),
    0 0 30px rgba(0, 0, 0, 0.8);
  padding: 18px 20px;
  position: relative;
}

/* Chrome top bar */
.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #999, #fff, #999);
}

/* Title + price line like a menu item */

.menu-title-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.menu-title {
  font-family: 'Lobster Two', cursive;
  font-size: 1.4rem;
  color: var(--sunset-orange);
}

.menu-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--vanilla-cream);
}

/* Description */

.menu-desc {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Tiny tech icon row */

.menu-icons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* Simple tiny icon placeholders (you can swap for real SVGs later) */

.icon-chip,
.icon-pc,
.icon-laptop {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 2px solid var(--chrome);
  background: radial-gradient(circle at 30% 0%, #33ffcc, #0a0f1a);
  position: relative;
}

/* Little “hands” as dots */

.icon-chip::after,
.icon-pc::after,
.icon-laptop::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sunset-orange);
  bottom: -3px;
  right: -3px;
}

/* ABOUT + PRICING + CONTACT panels */

.panel {
  background: #141414;
  border-radius: 18px;
  border: 4px solid var(--chrome);
  box-shadow:
    0 0 18px rgba(51, 255, 204, 0.4),
    0 0 30px rgba(0, 0, 0, 0.8);
  padding: 24px;
}

/* CONTACT FORM */

form input,
form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 3px solid var(--chrome);
  background: #1a1a1a;
  color: var(--vanilla-cream);
  font-size: 0.95rem;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--teal-neon);
  box-shadow: 0 0 14px rgba(51, 255, 204, 0.7);
}

/* FOOTER */

footer {
  border-top: 4px solid var(--chrome);
  padding