:root {
  --red: #d81f27;
  --red-dark: #a8151c;
  --orange: #f5a623;
  --charcoal: #17181b;
  --charcoal-light: #232428;
  --cream: #fdf8f0;
  --text-muted: #6b6b6b;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 800; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(216, 31, 39, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }

.btn-outline {
  background: transparent;
  color: var(--red-dark);
  border-color: var(--red-dark);
}
.btn-outline:hover { background: var(--red-dark); color: #fff; }

.btn-call {
  background: var(--orange);
  color: var(--charcoal);
  padding: 10px 20px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.eyebrow.center { display: block; text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 3px solid var(--red);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-logo { height: 52px; width: auto; border-radius: 8px; }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--orange); }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('hero-bg.jpg') center 30% / cover no-repeat;
  padding: 100px 20px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.78) 0%, rgba(10, 8, 6, 0.6) 45%, rgba(10, 8, 6, 0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
}
.hero-logo {
  width: 150px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  margin-bottom: 14px;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #f1e6d8;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-meta {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #f1e6d8;
}

/* About */
.about { padding: 90px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 22px; }
.about-list { list-style: none; }
.about-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid #eadfd0;
}
.about-list li::before {
  content: "🍕";
  position: absolute;
  left: 0;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* Menu */
.menu { padding: 90px 0; background: var(--charcoal); color: #fff; }
.menu h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 46px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.menu-card {
  background: var(--charcoal-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card img { height: 200px; width: 100%; object-fit: cover; }
.menu-card h3 { padding: 20px 20px 8px; font-size: 1.2rem; color: var(--orange); }
.menu-card p { padding: 0 20px 24px; color: #cfcfcf; font-size: 0.95rem; }
.menu-note { text-align: center; margin-top: 40px; color: #cfcfcf; }

/* Hours */
.hours { padding: 90px 0; background: var(--cream); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.hours-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hours-card h2 { font-size: 1.6rem; margin-bottom: 22px; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.hours-table td { padding: 12px 0; border-bottom: 1px solid #eee; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--red-dark); }
.hours-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.address-line { color: var(--text-muted); margin-bottom: 28px; font-size: 1.05rem; }

/* Map */
.location { line-height: 0; }
.location iframe { width: 100%; height: 420px; border: 0; filter: grayscale(15%); }

/* Footer */
.site-footer { background: var(--charcoal); color: #ddd; padding: 50px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-logo { height: 60px; border-radius: 8px; }
.footer-details p { margin-bottom: 4px; font-size: 0.92rem; }
.footer-details a { color: var(--orange); text-decoration: none; }
.footer-copy { width: 100%; text-align: center; margin-top: 30px; font-size: 0.8rem; color: #888; border-top: 1px solid #333; padding-top: 24px; }

/* Responsive */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .header-inner { justify-content: space-between; }
}
