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

:root {
  --red:    #ff2d1a;
  --red-d:  #e01f0a;
  --orange: #ff7a00;
  --yellow: #ffe600;
  --green:  #3ddc2a;
  --red2:   #db1010df;
  --dark:   #0f0600;
  --dark2:  #1e0b00;
  --gray:   #7a8494;
  --light:  #fffae8;
  --white:  #ffffff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --font-body: 'Nunito', sans-serif;
  --font-display: 'Bangers', cursive;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   NAV
========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 1.5rem;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 0.4rem 1rem !important;
}
.nav-cta:hover { background: var(--red-d) !important; }

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


.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(226, 78, 78, 0.603) 0%, rgba(15,6,0,0.78) 70%);
}

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

.hero-logo {
  display: block;
  margin: 0 auto 1.5rem;
  width: clamp(320px, 55vw, 680px);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.03em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-content h1 span {
  color: var(--red);
  -webkit-text-stroke: 2px var(--orange);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

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

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255,45,26,0.5);
}
.btn-primary:hover { background: var(--red-d); }

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

.full-width { width: 100%; text-align: center; }

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =========================================
   STRIP
========================================= */
.strip {
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 0;
  display: flex;
  gap: 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip span {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0 2.5rem;
  border-right: 2px solid rgba(255,255,255,0.25);
  animation: ticker 22s linear infinite;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   SECTION HEADERS
========================================= */
section { padding: 6rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header.light h2,
.section-header.light p,
.section-header.light .eyebrow { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.7); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* =========================================
   MENU
========================================= */
#menu { background: var(--light); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--red2);
  background: transparent;
  color: var(--red2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--red2);
  color: var(--white);
}

.menu-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.menu-grid.active { display: grid; }

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.16); }
.menu-card.featured { border: none; }

.menu-card-img {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.menu-card-body { padding: 1.25rem; }

.menu-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.menu-card-header h3 { font-size: 1.1rem; font-weight: 800; }

.price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
}

.menu-card-body p { font-size: 0.9rem; color: var(--gray); margin-bottom: 0.75rem; text-align: center; }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.tag-green { background: var(--green); }
.tag-red   { background: var(--red); }

/* =========================================
   FIND US
========================================= */
#find-us {
  background: var(--dark);
  color: var(--white);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.schedule-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}
.schedule-card:hover { background: rgba(255,255,255,0.11); }
.schedule-card.today { border-color: var(--orange); background: rgba(249,115,22,0.12); }

.day {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.today-badge {
  background: var(--orange);
  color: var(--dark);
  font-size: 0.65rem;
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
  font-weight: 800;
}

.location strong { display: block; font-size: 1rem; }
.location span { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

.hours {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yellow);
}
.hours.closed { color: rgba(255,255,255,0.3); }

.schedule-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.schedule-note a { color: var(--teal); font-weight: 700; }

/* =========================================
   ABOUT
========================================= */
#about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-placeholder {
  background: var(--dark2);
  border-radius: var(--radius);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.about-img-placeholder span { font-size: 6rem; }
.about-img-placeholder p  { font-size: 1.8rem; color: var(--orange); }

.about-text .eyebrow { margin-bottom: 0.5rem; }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f3e8d0;
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  color: var(--teal);
}
.stat-label { font-size: 0.8rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* =========================================
   REVIEWS
========================================= */
#reviews { background: var(--light); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-card p { font-size: 0.95rem; color: var(--dark); margin-bottom: 1rem; font-style: italic; }
.reviewer { font-size: 0.82rem; font-weight: 700; color: var(--gray); }

/* =========================================
   CONTACT
========================================= */
#contact { background: var(--dark2); color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-item a { color: var(--teal); font-weight: 600; }
.contact-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; }
.social-btn {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.social-btn:hover { border-color: var(--teal); background: rgba(0,229,232,0.15); }

/* FORM */
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  text-align: center;
  margin-top: 1rem;
  color: var(--yellow);
  font-weight: 700;
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 3rem 1.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.25rem;
}
.footer-links a,
.footer-social a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-social a:hover { color: var(--teal); }

.footer-bottom {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.82rem;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.6rem 1rem; }

  section { padding: 4rem 0; }

  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-placeholder { height: 260px; }
  .about-stats { gap: 1.25rem; }

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

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

  .hero-content h1 { font-size: clamp(4rem, 18vw, 7rem); }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; max-width: 280px; }
  .menu-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
}
