/* ── Variables ─────────────────────────────── */
:root {
  --black:      #1A1A1A;
  --red:        #CC0000;
  --red-dark:   #A30000;
  --white:      #FFFFFF;
  --gray-bg:    #F5F5F5;
  --gray-text:  #666;
  --font:       'Poppins', sans-serif;
  --max-width:  1200px;
  --transition: 0.3s ease;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Utility ────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

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

.btn--red:hover { background: var(--red-dark); }

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ── Skip nav ───────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-weight: 600;
  z-index: 200;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ── Navbar ─────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--gray-bg);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar__logo img {
  height: 48px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  position: relative;
  transition: color var(--transition);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.navbar__link:hover { color: var(--red); }
.navbar__link:hover::after { width: 100%; }

/* Hamburger (hidden on desktop) */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 640px;
}

.hero__eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.hero__eyebrow em {
  font-style: normal;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__title span {
  color: var(--red);
}

.hero__sub {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__scroll-link {
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--transition);
}

.hero__scroll-link:hover { opacity: 1; }

/* ── Menu ───────────────────────────────────── */
.menu {
  padding: 5rem 0;
  background: var(--gray-bg);
}

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.menu__tab {
  padding: 0.55rem 1.25rem;
  border: 2px solid var(--red);
  border-radius: 100px;
  background: transparent;
  color: var(--red);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.menu__tab:hover,
.menu__tab.active {
  background: var(--red);
  color: var(--white);
}

.menu__grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu__grid.active {
  display: grid;
}

.menu__card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.menu__card-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}

.menu__toppings {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-text);
  margin: 1.5rem 0 2.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
}

.menu__full-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}

.menu__full-img img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* ── About ──────────────────────────────────── */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 4px solid var(--red);
}

.about__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.about__text {
  color: #444;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about__highlights li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}

/* ── Locations ──────────────────────────────── */
.locations {
  padding: 5rem 0;
  background: var(--black);
}

.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.locations__card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 5px solid var(--red);
}

.locations__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}

.locations__address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.locations__phone {
  font-weight: 600;
  font-size: 1rem;
  color: var(--red);
  transition: color var(--transition);
}

.locations__phone:hover { color: var(--red-dark); }

.locations__hours {
  font-size: 0.95rem;
  color: #444;
}

.locations__order-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.locations__order-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.locations__directions-link {
  font-weight: 600;
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  display: block;
  transition: color var(--transition);
}

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

.locations__order-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  transition: color var(--transition);
}

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

/* ── Footer ─────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__wordmark {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}

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

.footer__links-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff !important;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem !important;
  transition: opacity var(--transition);
}
.footer__links-instagram:hover { color: #fff !important; opacity: 0.85; }

.footer__copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ── Responsive ─────────────────────────────── */

/* Tablet: 768px–1024px */
@media (max-width: 1024px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .locations__grid { grid-template-columns: 1fr; }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  /* Nav */
  .navbar__hamburger { display: flex; }

  .navbar__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 2px solid var(--gray-bg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 99;
  }

  .navbar__links.open { display: flex; }

  /* Hamburger open state (X animation) */
  .navbar__hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar__hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .navbar__hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hero */
  .hero__actions { flex-direction: column; align-items: flex-start; }

  /* Menu */
  .menu__grid { grid-template-columns: 1fr; }
  .menu__tabs { gap: 0.4rem; }
  .menu__tab  { font-size: 0.82rem; padding: 0.45rem 1rem; }

  /* About */
  .about__inner { grid-template-columns: 1fr; }

  /* Section titles */
  .section-title { font-size: 1.6rem; }
  .about__title  { font-size: 1.6rem; }

  /* Section padding */
  .menu, .about, .locations { padding: 3.5rem 0; }
  .footer { padding: 2rem 0; }
}

/* ── Final polish ───────────────────────────── */
html { overflow-x: hidden; }

/* Smooth hover lift on location cards */
.locations__card {
  transition: transform var(--transition), box-shadow var(--transition);
}
.locations__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ── Order confirmation modal ───────────────── */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.order-modal[hidden] { display: none; }

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.order-modal__box {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  border-top: 6px solid var(--red);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modal-in 0.2s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.order-modal__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.4rem;
}

.order-modal__name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.order-modal__address {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.order-modal__confirm-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.order-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-modal__yes {
  display: block;
  padding: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: background var(--transition);
}

.order-modal__yes:hover { background: var(--red-dark); }

.order-modal__no {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: none;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  color: #666;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.order-modal__no:hover {
  border-color: var(--red);
  color: var(--red);
}
