/* ============================================================
   HUNGER STATION — Main Stylesheet
   Brand: Dark / Bold / Red & Gold accents
   ============================================================ */

/* ---- Variables ---- */
:root {
  --bg-primary:    #080808;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --bg-card-hover: #1e1e1e;
  --bg-alt:        #0f0f0f;

  --red:           #c0152a;
  --red-hover:     #e01830;
  --red-dark:      #8a0e1e;

  --orange:        #d4542a;
  --gold:          #f0a500;
  --gold-light:    #fbbf24;

  --white:         #ffffff;
  --off-white:     #f5f5f5;
  --text-muted:    #9ca3af;
  --text-dim:      #6b7280;

  --border:        #252525;
  --border-hover:  #3a3a3a;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.6);
  --shadow-red:    0 4px 24px rgba(192,21,42,0.25);

  --font-display:  'Bebas Neue', 'Oswald', sans-serif;
  --font-heading:  'Oswald', sans-serif;
  --font-body:     'Open Sans', sans-serif;

  --transition:    0.25s ease;
  --nav-height:    72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-logo-img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.nav-link:hover { color: var(--white); }

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-primary);
}

/* Animated radial glow background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 85%, rgba(192,21,42,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(100,0,15,0.3) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(8,8,8,0) 0%, rgba(8,8,8,0.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 80px;
}

/* Hero Logo */
.hero-logo {
  margin-bottom: 28px;
}

.hero-logo-img {
  width: clamp(280px, 50vw, 500px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(192,21,42,0.3));
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-dim);
  font-size: 1.1rem;
  animation: bounce-down 1.8s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   HIGHLIGHTS STRIP
   ============================================================ */
.highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--red);
  padding: 18px 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 28px;
}

.highlight-item i {
  font-size: 1rem;
  opacity: 0.85;
}

.highlight-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}

.section-sub {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  padding: 96px 0;
  background: var(--bg-primary);
}

/* Tabs */
.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}

.tab-btn:hover {
  color: var(--white);
  border-color: var(--border-hover);
}

.tab-btn.active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

/* Panels */
.menu-panel { display: none; }
.menu-panel[hidden] { display: none; }
.menu-panel.active { display: block; }

/* Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* Menu Cards */
.menu-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.menu-card.featured {
  border-color: var(--red-dark);
  background: linear-gradient(135deg, #1a0a0c 0%, var(--bg-card) 50%);
}

.menu-card.featured:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.featured-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 12px;
  border-radius: 0 0 var(--radius-sm) 0;
  position: absolute;
  top: 0; left: 0;
}

.menu-card-body {
  padding: 24px 22px 20px;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--orange);
  line-height: 1.3;
  flex: 1;
}

.item-qty {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.price-sep {
  color: var(--text-dim);
  font-weight: 400;
}

.item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.price-note {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Extras Box */
.extras-box {
  margin-top: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}

.extras-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.extras-title i { color: var(--red); }

.extras-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
}

.extra-item .item-price {
  font-size: 0.95rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 96px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,21,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* About Feature Cards */
.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition);
}

.about-feature-card:hover {
  border-color: var(--red-dark);
  transform: translateY(-3px);
}

.about-feature-card i {
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.about-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
}

.about-feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   CONTACT / HOURS SECTION
   ============================================================ */
.contact-section {
  padding: 96px 0;
  background: var(--bg-alt);
  position: relative;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: border-color var(--transition);
}

.contact-card:hover { border-color: var(--border-hover); }

.contact-card-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  border-color: var(--red-dark);
  background: linear-gradient(160deg, #160508 0%, var(--bg-card) 60%);
}

.contact-icon {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 12px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

/* Hours list */
.hours-list { display: flex; flex-direction: column; gap: 0; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: nowrap;
}

.hours-list li:last-child { border-bottom: none; }

.hours-list li span:first-child {
  color: var(--white);
  white-space: nowrap;
}

.hours-list li span:last-child {
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
  color: var(--text-muted);
}

/* Contact Logo Mini */
.contact-logo-mini {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo-img {
  height: 80px;
  width: auto;
}

/* Social links */
.social-links { display: flex; gap: 12px; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}

.social-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.contact-btn {
  width: 100%;
  justify-content: center;
}

/* Address */
.contact-card address p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: color var(--transition);
}

.map-link:hover { color: var(--red-hover); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  padding: 36px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 44px;
  width: auto;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  order: 3;
  width: 100%;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--red); }

/* ============================================================
   ANIMATIONS / TRANSITIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content .section-title { text-align: center; }
  .about-stats { justify-content: center; }

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

  .contact-card-center {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    text-align: left;
  }

  .highlight-divider { display: none; }
  .highlights { gap: 12px; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --nav-height: 64px; }

  /* Navbar mobile */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link, .nav-cta {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  /* Hero */
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Menu grid */
  .menu-grid { grid-template-columns: 1fr; }

  /* Highlights */
  .highlights { flex-direction: column; gap: 8px; }
  .highlight-divider { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card-center {
    grid-column: auto;
    flex-direction: column;
    text-align: center;
  }

  /* About cards */
  .about-card-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-copy { order: unset; }

  /* Extras */
  .extras-grid { flex-direction: column; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--red-dark) var(--bg-secondary);
}

/* Chromium / Safari */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }
