/* ============================================
   UNDERGROUND SPORTS BAR & GRILL — STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Barlow:wght@300;400;500&display=swap');

/* --- TOKENS --- */
:root {
  --red:       #C1272D;
  --red-dark:  #8B1A1E;
  --blue:      #1B3F8B;
  --blue-dark: #102456;
  --amber:     #D4890A;
  --white:     #F2F0EC;
  --grey-light:#A8A29E;
  --bg:        #111111;
  --bg-card:   #1A1A1A;
  --bg-section:#161616;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--red);
  transition: background 0.3s;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red); }

.nav-book-btn {
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-book-btn:hover { background: var(--red-dark) !important; color: var(--white) !important; }
.nav-book-btn::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--red);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- ROUNDEL DIVIDER (signature element) --- */
.roundel-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 340px;
  justify-content: center;
}
.roundel-divider::before,
.roundel-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red));
}
.roundel-divider::after {
  background: linear-gradient(to left, transparent, var(--red));
}
.roundel-pip {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 3px solid var(--red);
  background: var(--blue);
  flex-shrink: 0;
}

/* --- SECTION LABELS --- */
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--white);
}
.section-subtitle {
  text-align: center;
  color: var(--grey-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/food1.png') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(10,10,10,0.7) 60%,
    rgba(10,10,10,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 4rem;
  max-width: 700px;
}
.hero-logo {
  width: 180px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7));
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero-headline span { color: var(--red); }
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin: 1rem 0 2.5rem;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: 2px solid rgba(242,240,236,0.4);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-1px); }

/* --- TICKER --- */
.ticker-bar {
  background: var(--red);
  padding: 0.55rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.ticker-item::before { content: '●  '; color: rgba(255,255,255,0.5); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- SECTIONS --- */
section { padding: 5rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }

/* --- HIGHLIGHTS GRID --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}
.highlight-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.2s;
}
.highlight-card:hover { background: #222; }
.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.highlight-card p {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.5;
}

/* --- FOOD FEATURE --- */
.food-feature {
  background: var(--bg-section);
}
.food-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.food-feature-img {
  position: relative;
}
.food-feature-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.food-feature-img::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--red);
  border-radius: 2px;
  z-index: -1;
}
.food-feature-text .section-title,
.food-feature-text .section-eyebrow,
.food-feature-text .section-subtitle { text-align: left; margin-left: 0; }
.food-feature-text .section-subtitle { max-width: 100%; }
.food-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.food-tag {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(193,39,45,0.5);
  color: var(--red);
  border-radius: 1px;
}

/* --- ATMOSPHERE --- */
.atmosphere-img-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.atmosphere-img-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.85);
  transition: filter 0.3s;
}
.atmosphere-img-grid img:hover { filter: brightness(1); }

/* --- INFO STRIP --- */
.info-strip {
  background: var(--blue-dark);
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}
.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.info-block h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.info-block p, .info-block a {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.7;
}
.info-block a:hover { color: var(--white); }

/* --- FOOTER --- */
footer {
  background: #0A0A0A;
  padding: 3rem 1.5rem 2rem;
  border-top: 2px solid var(--red);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.footer-logo img { height: 80px; }
.footer-logo p {
  font-size: 0.85rem;
  color: var(--grey-light);
  margin-top: 1rem;
  max-width: 260px;
  line-height: 1.6;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--grey-light);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col p {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.7;
}
.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* --- PAGE BANNER (inner pages) --- */
.page-banner {
  padding-top: 70px;
  background: var(--bg-section);
  border-bottom: 2px solid rgba(193,39,45,0.3);
  text-align: center;
  padding-bottom: 3rem;
}
.page-banner-inner {
  padding-top: 3.5rem;
}

/* --- MENU PAGE --- */
.menu-grid {
  display: grid;
  gap: 3rem;
}
.menu-category-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--red);
  border-left: 4px solid var(--red);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.04);
}
.menu-item {
  background: var(--bg-card);
  padding: 1.5rem;
  transition: background 0.2s;
}
.menu-item:hover { background: #1f1f1f; }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.875rem;
  color: var(--grey-light);
  line-height: 1.5;
}

/* --- ABOUT PAGE --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.about-text h2 span { color: var(--red); }
.about-text p {
  color: var(--grey-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 0.25rem;
}

/* --- RESERVATIONS PAGE --- */
.reservation-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.booking-widget-placeholder {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 3rem;
  text-align: center;
  color: var(--grey-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 2px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .food-feature-grid { grid-template-columns: 1fr; }
  .food-feature-img { order: -1; }
  .food-feature-text .section-title,
  .food-feature-text .section-eyebrow { text-align: center; }
  .food-feature-text .section-subtitle { max-width: 100%; text-align: center; }
  .food-tags { justify-content: center; }

  .atmosphere-img-grid { grid-template-columns: 1fr; }
  .atmosphere-img-grid img { height: 220px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }

  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); }

  .highlights-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .footer-links-grid { grid-template-columns: 1fr; }
}
