@import url('https://fonts.googleapis.com/css2?family=Anton&family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:wght@400;600;700;800&display=swap');

:root {
  --red:       #E8001C;
  --red-dark:  #C0001A;
  --red-light: #FF1A33;
  --yellow:    #FFB800;
  --yellow-dark: #E5A500;
  --cream:     #FFF8F0;
  --cream-2:   #FFF0E0;
  --white:     #FFFFFF;
  --dark:      #1C0800;
  --dark-2:    #2E1A00;
  --grey:      #7A6A60;
  --grey-light: #C8B8A8;
  --border:    rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Nunito Sans', sans-serif;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.navbar.scrolled { height: 60px; box-shadow: var(--shadow-md); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 1px;
  position: relative;
  box-shadow: 0 4px 12px rgba(232,0,28,0.3);
}
.logo-mark .badge-5 {
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.65rem;
  font-family: 'Anton', sans-serif;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-wordmark {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--dark);
  line-height: 1;
}
.logo-wordmark em {
  color: var(--red);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--grey);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--red); background: rgba(232,0,28,0.06); }
.nav-links a.active { color: var(--red); background: rgba(232,0,28,0.08); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(232,0,28,0.3);
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  padding: 1.5rem 5vw;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.nav-mobile.open { display: flex; transform: translateY(0); opacity: 1; }
.nav-mobile a {
  text-decoration: none;
  color: var(--dark);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-mobile a:hover { color: var(--red); background: rgba(232,0,28,0.06); }

.page-content { padding-top: 72px; }

/* ─── BUTTONS ─── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232,0,28,0.3);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,0,28,0.35); }

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,184,0,0.4);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: 100px;
  border: 2.5px solid rgba(0,0,0,0.15);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--dark);
  padding: 70px 8vw 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 50%, rgba(232,0,28,0.25) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(255,184,0,0.12) 0%, transparent 45%);
}
.page-header-content { position: relative; z-index: 1; }
.page-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,184,0,0.15);
  border: 1px solid rgba(255,184,0,0.3);
  color: var(--yellow);
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.page-header h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-header h1 span { color: var(--red); }
.page-header p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 480px; line-height: 1.7; }
.page-header-deco {
  position: absolute;
  right: 8vw; top: 50%;
  transform: translateY(-50%);
  font-family: 'Anton', sans-serif;
  font-size: clamp(8rem, 18vw, 16rem);
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ─── SECTION ─── */
.section { padding: 80px 6vw; }
.section-alt { background: var(--white); }
.section-dark { background: var(--dark); }
.section-yellow { background: var(--yellow); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,0,28,0.08);
  color: var(--red);
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title span { color: var(--red); }
.section-title.white { color: var(--white); }
.section-title.white span { color: var(--yellow); }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 72px);
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(232,0,28,0.2), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,184,0,0.08), transparent 40%);
}
.hero-text {
  position: relative;
  z-index: 2;
  padding: 60px 0 60px 8vw;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}
.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.15s;
}
.hero-title .red { color: var(--red); display: block; }
.hero-title .yellow { color: var(--yellow); display: block; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.3s;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.45s;
}
.hero-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232,0,28,0.3) 0%, transparent 65%);
}
.hero-food-img {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 550px;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.5s;
}
.hero-float-badge {
  position: absolute;
  z-index: 3;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero-float-badge.top { top: 15%; right: 5%; transform: rotate(6deg); animation: float 3s ease-in-out infinite; }
.hero-float-badge.bottom { bottom: 15%; left: 5%; transform: rotate(-4deg); animation: float 3s ease-in-out infinite 0.8s; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--red);
  padding: 1.2rem 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: 'Anton', sans-serif; font-size: 2.2rem; color: var(--white); line-height: 1; }
.stat-lbl { font-size: 0.72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ─── MARQUEE ─── */
.marquee-wrap { background: var(--yellow); padding: 0.9rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 1.5rem;
}
.marquee-dot { color: var(--red); font-size: 0.5rem; }

/* ─── MENU CARDS (homepage) ─── */
.menu-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.menu-card-home {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.menu-card-home:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.menu-card-body { padding: 1.4rem; }
.menu-card-tag {
  display: inline-block;
  background: rgba(232,0,28,0.08);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}
.menu-card-name { font-family: 'Anton', sans-serif; font-size: 1.5rem; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 0.3rem; }
.menu-card-desc { font-size: 0.82rem; color: var(--grey); line-height: 1.5; margin-bottom: 0.8rem; }
.menu-card-price { font-family: 'Anton', sans-serif; font-size: 1.4rem; color: var(--red); }

/* ─── RESTAURANT CARDS ─── */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.resto-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s;
}
.resto-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.resto-card-map { height: 200px; background: var(--cream-2); overflow: hidden; }
.resto-card-map iframe { width: 100%; height: 100%; border: none; }
.resto-card-body { padding: 1.4rem; }
.resto-number {
  width: 36px; height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(232,0,28,0.3);
}
.resto-city { font-family: 'Anton', sans-serif; font-size: 1.4rem; color: var(--dark); letter-spacing: 0.5px; }
.resto-address { font-size: 0.85rem; color: var(--grey); margin: 0.4rem 0 0.8rem; line-height: 1.5; }
.resto-hours { 
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem; 
  font-weight: 800;
  color: #1A8A3A;
  margin-bottom: 1rem;
}
.resto-hours::before { content: '●'; font-size: 0.5rem; color: #1A8A3A; }
.resto-map-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: gap 0.2s;
}
.resto-map-link:hover { gap: 10px; }

/* ─── FULL RESTAURANT PAGE ─── */
.resto-full-grid { display: flex; flex-direction: column; gap: 5rem; }
.resto-full-item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.resto-full-item:nth-child(even) { direction: rtl; }
.resto-full-item:nth-child(even) > * { direction: ltr; }
.resto-map-large { height: 100%; min-height: 420px; }
.resto-map-large iframe { width: 100%; height: 100%; border: none; }
.resto-info-panel { padding: 3rem; }
.resto-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.resto-full-city { font-family: 'Anton', sans-serif; font-size: 2.8rem; color: var(--dark); line-height: 0.95; margin-bottom: 0.5rem; }
.resto-full-address { font-size: 0.95rem; color: var(--grey); line-height: 1.6; margin-bottom: 1.5rem; }
.resto-info-rows { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.resto-info-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--dark); }
.resto-info-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.resto-services { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.service-pill {
  background: rgba(0,0,0,0.05);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.08);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 7px 0; font-size: 0.88rem; color: var(--dark); }
.hours-table td:last-child { text-align: right; font-weight: 800; color: var(--red); }

/* ─── MENU PAGE ─── */
.menu-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.filter-btn {
  background: transparent;
  border: 2px solid transparent;
  color: var(--grey);
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-btn:hover { background: rgba(232,0,28,0.06); color: var(--red); }
.filter-btn.active { background: var(--red); color: var(--white); box-shadow: 0 4px 12px rgba(232,0,28,0.3); }

.menu-section { display: block; }
.menu-section.hidden { display: none; }

/* Category header */
.cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 2.5px solid var(--cream-2);
}
.cat-header-icon {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(232,0,28,0.25);
}
.cat-header-text h2 { font-family: 'Anton', sans-serif; font-size: 2rem; letter-spacing: 0.5px; color: var(--dark); }
.cat-header-text p { font-size: 0.82rem; color: var(--grey); margin-top: 2px; }

/* Menu items with images */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.menu-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.menu-item:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.menu-item-img-wrap {
  height: 180px;
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}
.menu-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.menu-item:hover .menu-item-img-wrap img { transform: scale(1.06); }
.menu-item-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.menu-item-badge.yellow { background: var(--yellow); color: var(--dark); }
.menu-item-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.menu-item-name { font-family: 'Anton', sans-serif; font-size: 1.2rem; letter-spacing: 0.3px; color: var(--dark); margin-bottom: 0.3rem; }
.menu-item-desc { font-size: 0.8rem; color: var(--grey); line-height: 1.5; flex: 1; margin-bottom: 0.8rem; }
.menu-item-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.menu-item-price { font-family: 'Anton', sans-serif; font-size: 1.4rem; color: var(--red); }
.menu-item-price-duo { font-size: 0.8rem; color: var(--grey); text-align: right; line-height: 1.4; }
.menu-item-price-duo strong { display: block; font-family: 'Anton', sans-serif; font-size: 1.1rem; color: var(--red); font-weight: 400; }

/* Pizza table */
.pizza-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.pizza-table th { background: var(--red); color: var(--white); font-family: 'Nunito', sans-serif; font-size: 0.78rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 12px 16px; text-align: center; }
.pizza-table th:first-child { text-align: left; }
.pizza-table td { padding: 10px 16px; font-size: 0.88rem; color: var(--dark); border-bottom: 1px solid var(--border); }
.pizza-table td:not(:first-child) { text-align: center; font-family: 'Anton', sans-serif; font-size: 1rem; color: var(--red); }
.pizza-table td:first-child { font-weight: 700; }
.pizza-table tr:last-child td { border-bottom: none; }
.pizza-table tr:hover td { background: rgba(232,0,28,0.03); }
.pizza-table .sec-row td { background: var(--cream); color: var(--red); font-size: 0.72rem; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; padding: 8px 16px; }
.pizza-sub { font-size: 0.74rem; color: var(--grey); font-weight: 400; font-family: 'Nunito Sans', sans-serif; margin-top: 2px; }

/* Tacos sizes */
.tacos-sizes { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.tacos-size {
  flex: 1; min-width: 120px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}
.tacos-size:hover { border-color: var(--red); }
.tacos-sz { font-family: 'Anton', sans-serif; font-size: 3rem; color: var(--red); line-height: 1; }
.tacos-lbl { font-size: 0.8rem; font-weight: 800; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; }
.tacos-price { font-family: 'Anton', sans-serif; font-size: 1.8rem; color: var(--dark); margin-top: 0.3rem; }

/* Snack grid */
.snack-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 3.5rem; }
.snack-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.25s;
}
.snack-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.snack-img { width: 100%; height: 140px; object-fit: cover; display: block; }
.snack-body { padding: 1rem; display: flex; justify-content: space-between; align-items: center; }
.snack-name { font-family: 'Nunito', sans-serif; font-size: 0.9rem; font-weight: 800; color: var(--dark); }
.snack-price { font-family: 'Anton', sans-serif; font-size: 1.3rem; color: var(--red); }

/* Duo cards */
.duo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-bottom: 3.5rem; }
.duo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: all 0.25s;
}
.duo-card:hover { border-color: var(--red); transform: translateY(-4px); }
.duo-img { width: 100%; height: 150px; object-fit: cover; }
.duo-card-body { padding: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.duo-num { background: var(--red); color: var(--white); font-family: 'Anton', sans-serif; font-size: 1.2rem; padding: 4px 10px; border-radius: 8px; flex-shrink: 0; }
.duo-name { font-family: 'Nunito', sans-serif; font-size: 0.88rem; font-weight: 800; color: var(--dark); flex: 1; }
.duo-price { font-family: 'Anton', sans-serif; font-size: 1.3rem; color: var(--red); }

/* Supps */
.supp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.5rem; }
.supp-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0.6rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.supp-name { font-size: 0.8rem; color: var(--dark); font-weight: 700; }
.supp-price { font-family: 'Anton', sans-serif; font-size: 1rem; color: var(--red); }

/* CTA strip */
.cta-strip {
  background: var(--red);
  padding: 70px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: 'DF5';
  position: absolute;
  right: 5vw; top: 50%;
  transform: translateY(-50%);
  font-family: 'Anton', sans-serif;
  font-size: 14rem;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-strip h2 { font-family: 'Anton', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); line-height: 1; }
.cta-strip p { color: rgba(255,255,255,0.75); margin-top: 0.5rem; font-size: 0.95rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
}
.contact-card h4 { font-family: 'Anton', sans-serif; font-size: 1.1rem; letter-spacing: 0.3px; color: var(--dark); margin-bottom: 0.5rem; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--grey); line-height: 1.7; text-decoration: none; }
.contact-card a { color: var(--red); font-weight: 700; }
.contact-card a:hover { text-decoration: underline; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.faq-item { background: var(--white); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 2px solid transparent; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--red); }
.faq-q { font-family: 'Nunito', sans-serif; font-size: 0.92rem; font-weight: 800; color: var(--dark); margin-bottom: 0.6rem; }
.faq-a { font-size: 0.82rem; color: var(--grey); line-height: 1.6; }

/* FOOTER */
footer {
  background: var(--dark);
  padding: 60px 6vw 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Anton', sans-serif; font-size: 2rem; letter-spacing: 3px; color: var(--white); margin-bottom: 1rem; display: block; }
.footer-logo em { color: var(--red); font-style: normal; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-family: 'Nunito', sans-serif; font-size: 0.72rem; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.social-links { display: flex; gap: 0.5rem; }
.social-links a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; text-decoration: none; transition: background 0.2s; }
.social-links a:hover { background: var(--red); }

/* NOTE ALLERGENS */
.allergen-note {
  background: #FFF8E7;
  border: 2px solid #FFE4A0;
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  font-size: 0.83rem;
  color: #7A5C00;
  line-height: 1.7;
  margin-top: 3rem;
}
.allergen-note strong { color: #4A3600; }

/* PROMO BANNER */
.promo-banner {
  background: linear-gradient(135deg, var(--red) 0%, #A0001A 100%);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.promo-banner::after {
  content: '🍕';
  position: absolute;
  right: 180px; top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: 0.15;
}
.promo-text h3 { font-family: 'Anton', sans-serif; font-size: 1.6rem; color: var(--white); margin-bottom: 0.2rem; }
.promo-text p { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: rotate(6deg) translateY(0); } 50% { transform: rotate(6deg) translateY(-10px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .menu-grid-home { grid-template-columns: repeat(2, 1fr); }
  .restaurant-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .resto-full-item { grid-template-columns: 1fr; direction: ltr !important; }
  .resto-map-large { min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 5vw; }
  .page-header { padding: 50px 5vw 40px; }
  .page-header-deco { display: none; }
  .menu-grid-home { grid-template-columns: 1fr; }
  .restaurant-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { gap: 1.5rem; }
  .stat-divider { display: none; }
  .cta-strip { flex-direction: column; text-align: center; }
  .hero-title { font-size: clamp(3rem, 15vw, 6rem); }
}

/* ── DROPDOWN DESKTOP ── */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: #fff; border-radius: 12px;
  min-width: 220px; padding: 6px 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 9999; list-style: none;
}
.dropdown-menu::before {
  content:''; position:absolute; top:-6px; left:50%;
  transform:translateX(-50%);
  border:6px solid transparent;
  border-top:none; border-bottom-color:#fff;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li { list-style:none; }
.dropdown-menu li a {
  display:flex; align-items:center; gap:10px;
  padding: 11px 18px; font-size:13px; font-weight:700;
  color: var(--dark); text-decoration:none;
  font-family:'Nunito',sans-serif;
  border-bottom: 1px solid #F5F0EB; transition: background .15s;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: #FFF8F0; color: var(--red); }
.dd-dot { font-size: 10px; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; flex-direction: column;
  background: #fff; border-bottom: 2px solid #F0E8DC;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  position: fixed;
  top: 65px; /* sous la navbar */
  left: 0; right: 0;
  z-index: 997;
  max-height: calc(100vh - 65px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav > a {
  padding: 15px 24px; font-size: 15px; font-weight: 700;
  color: var(--dark); text-decoration: none;
  border-bottom: 1px solid #F0EAE4;
  font-family: 'Nunito', sans-serif;
  transition: background .15s, color .15s;
}
.mobile-nav > a:hover { background: #FFF8F0; color: var(--red); }
.mobile-nav-group { border-bottom: 1px solid #F0EAE4; }
.mobile-nav-toggle {
  width: 100%; padding: 15px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 700; color: var(--dark);
  background: none; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif;
}
.mobile-nav-toggle:hover { background: #FFF8F0; color: var(--red); }
.mobile-nav-toggle .arrow { font-size: 12px; transition: transform .2s; }
.mobile-nav-sub { display: none; background: #FFF8F0; }
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px 12px 36px; font-size: 14px;
  font-weight: 700; color: #555; text-decoration: none;
  font-family: 'Nunito', sans-serif;
  border-bottom: 1px solid #F0E8DC; transition: color .15s;
}
.mobile-nav-sub a:last-child { border-bottom: none; }
.mobile-nav-sub a:hover { color: var(--red); }
/* Hamburger open state */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
