/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; }

/* ── NAVIGATION ── */
.nav {
  background: #8B1A1A;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-cta {
  background: #D4AF37;
  color: #2c1a00;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}

.nav-cta:hover { background: #c9a230; }

/* ── HERO ── */
.hero {
  background: #1a0a00;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d0a0a 0%, #1a0a00 60%, #0d1a0a 100%);
}

.hero-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #D4AF37;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero h1 span { color: #D4AF37; }

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  background: #8B1A1A;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: #721515; }

.btn-outline {
  background: transparent;
  color: #D4AF37;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid #D4AF37;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  background: #D4AF37;
  color: #1a0a00;
}

/* ── PROMO STRIP ── */
.promo-strip {
  background: #D4AF37;
  padding: 1rem 2rem;
  text-align: center;
}

.promo-strip p {
  font-size: 15px;
  font-weight: 600;
  color: #2c1a00;
}

/* ── SECTIONS ── */
.section {
  padding: 3rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.section-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 2rem;
}

.divider {
  height: 1px;
  background: #e5e5e5;
  max-width: 960px;
  margin: 0 auto;
}

/* ── TABS ── */
.tab-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tab {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid #ddd;
  background: transparent;
  color: #555;
  cursor: pointer;
  transition: all 0.15s;
}

.tab.active {
  background: #8B1A1A;
  color: #fff;
  border-color: #8B1A1A;
}

.tab:hover:not(.active) { background: #f5f5f5; }

/* ── MENU GRID ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.menu-card {
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.menu-card-img {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.menu-card-body { padding: 12px; }

.menu-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: #8B1A1A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.menu-card-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.menu-card-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
}

.menu-card-price {
  font-size: 15px;
  font-weight: 700;
  color: #8B1A1A;
}

.menu-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* ── DEALS ── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.deal-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.deal-icon { font-size: 30px; flex-shrink: 0; }

.deal-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.deal-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.deal-tag {
  display: inline-block;
  background: #FFF3CD;
  color: #856404;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 6px;
}

/* ── LOCATION ── */
.location-search {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.location-search input {
  flex: 1;
  max-width: 320px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.location-search input:focus { border-color: #8B1A1A; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.info-card {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.info-card .ic-icon { font-size: 26px; margin-bottom: 8px; }
.info-card .ic-label { font-size: 12px; color: #777; margin-bottom: 4px; }
.info-card .ic-val { font-size: 15px; font-weight: 600; }

/* ── FOOTER ── */
.footer {
  background: #1a0a00;
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 2rem 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto 1.5rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-col a:hover { color: #D4AF37; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  max-width: 960px;
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 28px; }
  .section { padding: 2rem 1rem; }
}
