*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:  #1B3882;
  --gold:  #F5C118;
  --cream: #F5EFE0;
  --black: #0d1526;
  --text:  #1a2540;
  --mid:   #4a5a7a;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
}

/* ── TOP BANNER ── */
.top-banner {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  min-height: 58px;
}
.top-banner .tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.top-banner .tagline span { color: var(--gold); }

/* ── HEADER ── */
header {
  background: var(--cream);
  border-bottom: 4px solid var(--navy);
  padding: 0 32px 0 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.logo-link {
  text-decoration: none;
  position: absolute;
  left: 80px;
  top: -42px;
  z-index: 101;
}
.logo-badge {
  height: 136px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
nav a {
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--navy);
  padding: 10px 24px;
  transition: color .2s;
  text-transform: uppercase;
}
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); border-bottom: 3px solid var(--gold); }

.btn-order {
  background: var(--navy);
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-order:hover { background: #142d6e; transform: translateY(-1px); }

/* ── FOOD TILES ── */
.food-tiles-bar {
  background: var(--navy);
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.food-tiles {
  display: flex;
  justify-content: center;
  min-width: max-content;
  margin: 0 auto;
}
.food-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 160px;
  min-height: 160px;
  padding: 0 12px 16px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  transition: background .2s;
  cursor: pointer;
  background: var(--navy);
}
.food-tile:last-child { border-right: none; }
.food-tile:hover { background: #142d6e; }
.food-tile:hover .tile-img { transform: scale(1.07) translateY(-4px); }
.tile-img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  display: block;
  margin: 0 auto 8px;
  transition: transform .3s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.tile-name {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
.food-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
}
.food-tile:hover::after { transform: scaleX(1); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--black);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  opacity: 0.75;
  transform: scale(1.05);
  transform-origin: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,56,130,0.15) 0%, rgba(8,15,36,0.55) 100%);
}
.hero-cta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 25px;
  text-align: center;
  transform: translateY(25px);
}
.hero-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-cta p {
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* ── SPECIALS STRIP ── */
.specials-strip {
  background: var(--gold);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.specials-strip h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.special-pill {
  background: var(--navy);
  color: #fff;
  border-radius: 50px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform .2s;
}
.special-pill:hover { transform: scale(1.03); }
.special-pill .pill-name { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; }
.special-pill .pill-price { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: var(--gold); }
.special-pill .pill-detail { font-size: 11px; color: #aabbd4; line-height: 1.3; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 60px 40px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.page-hero p {
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.gold-bar { width: 64px; height: 4px; background: var(--gold); margin: 16px auto 0; border-radius: 2px; }

/* ── MENU (food.html) ── */
.menu-page {
  background: var(--cream);
  padding: 64px 40px 80px;
}
.menu-sections { max-width: 900px; margin: 0 auto; }
.menu-section { margin-bottom: 52px; }
.menu-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: var(--navy);
  padding: 10px 20px;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gold-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.menu-items {
  background: #fff;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  border: 1px solid rgba(27,56,130,0.1);
  border-top: none;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid #f0ecdf;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: #fdfaf3; }
.item-left { flex: 1; }
.item-name { font-size: 15px; color: var(--text); font-weight: 600; }
.item-note { font-size: 12px; color: var(--mid); margin-top: 2px; }
.item-price { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); white-space: nowrap; margin-left: 20px; }
.badge { display: inline-block; background: var(--gold); color: var(--black); font-size: 9px; font-weight: 700; letter-spacing: 0.8px; padding: 2px 8px; border-radius: 3px; text-transform: uppercase; vertical-align: middle; margin-left: 8px; }

/* ── LOCATIONS (locations.html) ── */
.locations-page {
  background: var(--cream);
  padding: 64px 40px 80px;
  text-align: center;
}
.location-card {
  display: inline-flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(27,56,130,0.12);
  border-radius: 10px;
  padding: 40px 52px;
  max-width: 760px;
  text-align: left;
  box-shadow: 0 4px 24px rgba(27,56,130,0.08);
  margin-bottom: 40px;
}
.loc-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: var(--navy);
  padding: 4px 12px;
  border-radius: 3px;
  display: inline-block;
}
.loc-col p, .loc-col a { font-size: 15px; color: var(--text); line-height: 1.9; text-decoration: none; }
.loc-col a:hover { color: var(--navy); text-decoration: underline; }
.hours-row { display: flex; gap: 16px; }
.hours-row .day { color: var(--mid); font-size: 14px; width: 80px; }
.hours-row .time { font-size: 14px; color: var(--text); font-weight: 600; }
.map-embed { width: 100%; max-width: 760px; height: 320px; border: none; border-radius: 10px; display: block; margin: 0 auto; box-shadow: 0 4px 24px rgba(27,56,130,0.1); }

/* ── HISTORY (history.html) ── */
.history-page {
  background: var(--cream);
  padding: 64px 40px 80px;
  max-width: 860px;
  margin: 0 auto;
}
.history-page h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 48px 0 16px;
}
.history-page h2:first-child { margin-top: 0; }
.history-page p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}
.history-page .pull-quote {
  border-left: 4px solid var(--gold);
  background: #fff;
  padding: 20px 28px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(27,56,130,0.1);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  min-width: 72px;
  padding-top: 2px;
}
.timeline-text { font-size: 15px; line-height: 1.7; color: var(--text); }

/* ── ABOUT STATS STRIP ── */
.about-strip {
  background: var(--navy);
  padding: 56px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.about-stat { flex: 1; min-width: 180px; text-align: center; padding: 20px; }
.about-stat .num { font-family: 'Oswald', sans-serif; font-size: 54px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.about-stat p { font-size: 13px; color: #b0c0e0; letter-spacing: 1.5px; text-transform: uppercase; }
.stat-div { width: 1px; height: 60px; background: rgba(255,255,255,0.15); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 44px 40px 24px;
  text-align: center;
}
.footer-brand { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 4px; }
.footer-sub { font-size: 11px; color: #556; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 28px; }
.footer-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { color: #7a8aaa; text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: #2a3450; }

@media (max-width: 720px) {
  header { padding: 0 14px 0 14px; height: 68px; }
  .logo-link { left: 14px; top: -20px; }
  .logo-badge { height: 90px; }
  nav a:not(.btn-order) { display: none; }
  .food-tile { width: 120px; min-height: 130px; }
  .tile-img { width: 90px; height: 70px; }
  .hero { height: 380px; }
  .menu-page, .locations-page, .history-page { padding: 40px 16px 60px; }
  .location-card { padding: 28px 20px; gap: 28px; }
  .about-strip { padding: 40px 20px; }
  .stat-div { display: none; }
}
