/* ====== The Dugout Grill — Static Styles ====== */
:root {
  --stadium-navy: #0b2545;
  --stadium-red:  #c8102e;
  --stadium-cream:#f7f3e8;
  --white:#ffffff;
  --text:#0b2545;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Oswald', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--stadium-cream);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.narrow    { max-width: 900px; margin: 0 auto; padding: 0 16px; }

/* ====== Header / Nav ====== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--stadium-navy);
  border-bottom: 4px solid var(--stadium-red);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; max-width: 1100px; margin: 0 auto;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: none; gap: 22px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; color: #fff;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--stadium-red); }

.nav-toggle {
  background: transparent; border: 0; color: #fff; cursor: pointer;
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-toggle svg { width: 24px; height: 24px; }

.nav-mobile { display: none; background: var(--stadium-navy); border-top: 1px solid rgba(255,255,255,0.1); }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; margin: 0; padding: 0 16px; }
.nav-mobile a {
  display: block; padding: 14px 0; text-decoration: none; color: #fff;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.nav-mobile a.active, .nav-mobile a:hover { color: var(--stadium-red); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .nav-logo img { height: 48px; }
}

/* ====== Buttons / Cards / Titles ====== */
.btn-stadium {
  display: inline-block;
  background: var(--stadium-red); color: #fff;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 14px 28px; border-radius: 4px;
  text-decoration: none;
  border: 3px solid #fff;
  box-shadow: 4px 4px 0 var(--stadium-navy);
  transition: transform .1s, box-shadow .1s;
}
.btn-stadium:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--stadium-navy); }
.btn-stadium.full { display: block; width: 100%; text-align: center; }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--stadium-navy); margin: 0;
}
.stadium-card {
  background: #fff;
  border: 4px solid var(--stadium-navy);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 6px 6px 0 var(--stadium-red);
}

/* ====== Hero ====== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  color: #fff; overflow: hidden; text-align: center;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg { object-fit: cover; width: 100%; height: 100%; }
.hero-overlay {
  background: linear-gradient(180deg, rgba(11,37,69,0.5) 0%, rgba(11,37,69,0.85) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 64px 16px; max-width: 800px; }
.hero-logo { margin: 0 auto; max-width: 280px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
.hero-tagline {
  margin: 24px 0 0; font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (min-width: 640px) { .hero-logo { max-width: 400px; } .hero-tagline { font-size: 22px; } }
@media (min-width: 768px) { .hero-logo { max-width: 500px; } .hero-tagline { font-size: 26px; } }

/* ====== Sections ====== */
.section { padding: 56px 16px; }
.center { text-align: center; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

.grid-2 {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.grid-3 {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; }
.card-title {
  margin: 16px 0 8px; font-size: 24px; font-weight: 700;
  text-transform: uppercase; color: var(--stadium-red);
}
.card-text { color: var(--stadium-navy); font-size: 17px; margin: 0; }

.order-callout { background: #fff; }
.promo-card,
.facebook-card {
  background: #fff;
  border: 4px solid var(--stadium-navy);
  border-radius: 6px;
  box-shadow: 6px 6px 0 var(--stadium-red);
  padding: 28px;
}
.promo-card {
  display: grid;
  gap: 24px;
  align-items: center;
}
.promo-kicker {
  color: var(--stadium-red);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.promo-text {
  color: var(--stadium-navy);
  font-size: 18px;
  line-height: 1.6;
  margin: 16px 0 0;
}
.facebook-section {
  background: linear-gradient(135deg, var(--stadium-navy) 0%, #123966 100%);
}
.facebook-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.facebook-card .section-title {
  margin-top: 0;
}
.facebook-card .btn-stadium {
  margin-top: 20px;
}
.facebook-section .section-title,
.facebook-section .promo-text {
  color: var(--stadium-navy);
}
@media (min-width: 768px) {
  .promo-card {
    grid-template-columns: 1fr auto;
    padding: 36px;
  }
  .facebook-card {
    padding: 32px 40px;
  }
}

/* ====== Reviews ====== */
.reviews { background: var(--stadium-navy); color: #fff; padding: 56px 16px 40px; }
.reviews-title {
  text-align: center; font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; text-transform: uppercase; color: #fff;
  text-shadow: 2px 2px 0 var(--stadium-red); margin: 0 0 28px;
}
.reviews-sub { text-align: center; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.9; margin: 8px 0 36px; }
.review-card {
  background: #fff; color: var(--stadium-navy);
  padding: 24px; border-radius: 4px; border: 4px solid #fff;
  box-shadow: 6px 6px 0 var(--stadium-red);
  display: flex; flex-direction: column;
}
.stars { color: var(--stadium-red); font-size: 24px; letter-spacing: 0.1em; }
.review-text { margin: 12px 0 0; font-style: italic; font-size: 17px; line-height: 1.6; }
.review-author {
  color: var(--stadium-red);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 18px;
  text-decoration: none;
  text-transform: uppercase;
}
.review-author:hover { color: var(--stadium-navy); }

/* ====== Menu ====== */
.menu-section { padding: 56px 16px; max-width: 1000px; margin: 0 auto; }
.menu-title {
  text-align: center; text-transform: uppercase; color: var(--stadium-navy);
  font-size: clamp(28px, 4vw, 48px); font-weight: 700; margin: 0 0 36px;
}
.menu-cat-title {
  font-size: 22px; font-weight: 700; text-transform: uppercase;
  color: var(--stadium-red); border-bottom: 2px solid var(--stadium-navy);
  padding-bottom: 8px; margin: 0;
}
.menu-list { list-style: none; margin: 16px 0 0; padding: 0; }
.menu-list li { color: var(--stadium-navy); }
.menu-item { margin-top: 18px; }
.menu-item:first-child { margin-top: 0; }
.menu-item-line { display: flex; align-items: baseline; gap: 12px; }
.menu-list .name { font-weight: 600; }
.menu-list .dots {
  flex: 1; border-bottom: 1px dotted rgba(11,37,69,0.3); transform: translateY(-4px);
}
.menu-list .price { font-weight: 700; white-space: nowrap; }
.menu-note { text-align: center; font-style: italic; color: var(--stadium-navy); margin: 16px 0 0; }

.menu-description {
  font-size: 14px;
  line-height: 1.45;
  margin: 4px 0 0;
}
.menu-card-intro {
  font-size: 14px;
  line-height: 1.5;
  margin: 12px 0 0;
}

#warning {
  text-align: center;
}

/* ====== About ====== */
.about-section { padding: 56px 16px; max-width: 900px; margin: 0 auto; }
.about-card { text-align: center; padding: 32px; }
@media (min-width: 640px) { .about-card { padding: 40px; } }
.about-divider { width: 80px; height: 4px; background: var(--stadium-navy); margin: 16px auto 28px; }
.about-card p { font-size: 17px; line-height: 1.7; color: var(--stadium-navy); }
.history-callout {
  background: var(--stadium-cream);
  border: 3px solid var(--stadium-navy);
  border-radius: 6px;
  margin: 30px 0 0;
  padding: 24px;
  text-align: left;
}
.history-callout h2 {
  color: var(--stadium-red);
  font-size: 24px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.history-callout p:last-child { margin-bottom: 0; }
.about-img {
  margin: 32px 0; width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border: 4px solid var(--stadium-navy); border-radius: 8px;
}
.features { display: grid; gap: 24px; grid-template-columns: 1fr; margin-top: 36px; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature-icon { font-size: 36px; }
.feature-label { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--stadium-navy); margin-top: 8px; }

/* ====== The Bull Pen ====== */
.bullpen-section { padding: 56px 16px; }
.bullpen-card { max-width: 1000px; margin: 0 auto; text-align: center; }
.bullpen-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 4px solid var(--stadium-navy);
  border-radius: 8px;
  margin: 28px 0;
}
.bullpen-lede {
  color: var(--stadium-navy);
  font-size: 20px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 760px;
}
.bullpen-contact {
  background: var(--stadium-navy);
  border-radius: 6px;
  color: #fff;
  margin: 32px auto 0;
  max-width: 680px;
  padding: 28px;
}
.bullpen-contact h2 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.bullpen-contact p { margin: 0 0 12px; }
.copy-email-btn {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(15px, 4.2vw, 22px);
  font-weight: 700;
  padding: 0;
  text-decoration-color: var(--stadium-red);
  text-decoration-thickness: 3px;
  text-decoration-line: underline;
  white-space: nowrap;
}
.copy-email-btn:hover,
.copy-email-btn:focus-visible {
  color: var(--stadium-red);
  outline: 2px solid #fff;
  outline-offset: 4px;
}
@media (max-width: 420px) {
  .bullpen-section { padding: 40px 10px; }
  .bullpen-card { padding: 16px; }
  .bullpen-contact { padding: 20px 10px; }
  .bullpen-contact h2 { font-size: 22px; }
  .copy-email-btn {
    display: block;
    font-size: clamp(14px, 4vw, 17px);
    letter-spacing: 0;
    margin: 0 auto;
    width: 100%;
  }
}

/* ====== Contact ====== */
.contact-section { padding: 56px 16px; max-width: 1100px; margin: 0 auto; }
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-card { background: #fff; border: 4px solid var(--stadium-navy); border-radius: 6px; box-shadow: 6px 6px 0 var(--stadium-red); overflow: hidden; }
.contact-header {
  background: var(--stadium-navy); color: #fff; text-align: center;
  padding: 18px; font-size: 20px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700;
}
.contact-body { padding: 28px; }
.contact-body h2 { color: var(--stadium-red); font-size: 18px; text-transform: uppercase; margin: 24px 0 4px; }
.contact-body h2:first-child { margin-top: 0; }
.contact-body p { color: var(--stadium-navy); margin: 0; line-height: 1.6; }
.phone-link {
  display: block; margin-top: 4px; font-size: 22px; font-weight: 700;
  color: var(--stadium-navy); text-decoration: none;
}
.phone-link:hover { color: var(--stadium-red); }
.social-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--stadium-navy);
  font-size: 18px;
  font-weight: 700;
}
.social-link:hover { color: var(--stadium-red); }
.contact-buttons { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

.map-card { background: #fff; border: 4px solid var(--stadium-navy); border-radius: 6px; box-shadow: 6px 6px 0 var(--stadium-red); overflow: hidden; height: 400px; }
@media (min-width: 640px) { .map-card { height: 550px; } }
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ====== Footer ====== */
.site-footer { margin-top: 0; background: var(--stadium-navy); color: #fff; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 32px 16px; text-align: center; font-size: 14px; }
.footer-brand { font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--stadium-red); margin: 0; }
.footer-meta { margin: 8px 0; opacity: 0.8; }
.footer-copy { margin: 8px 0 0; opacity: 0.6; }
