/* ============================================================
   MASALA MEATS & GRILL — FUSION PIZZA
   Restaurant Website Styles
   Pixel-accurate recreation of client Canva reference
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --color-maroon-deep: #4A1508;
  --color-maroon: #5C1A0B;
  --color-brown: #8B3A1A;
  --color-brown-warm: #A0522D;
  --color-orange-accent: #D4511A;
  --color-orange-light: #E8752A;
  --color-cream: #FFF8F0;
  --color-cream-dark: #F5EDDF;
  --color-beige: #FFFAF5;
  --color-white: #FFFFFF;
  --color-dark: #1A0E08;
  --color-dark-text: #2C1810;
  --color-gray-light: #F5F0EB;
  --color-gray-mid: #B8A99A;
  --color-gold: #C9A84C;
  --color-red-heart: #E53935;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(92, 26, 11, 0.10);
  --shadow-hover: 0 16px 48px rgba(92, 26, 11, 0.18);
  --shadow-soft: 0 4px 16px rgba(0,0,0,0.08);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-maroon);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

/* ---------- Utility: Scroll Animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ============================================================
   0. TOP INFO BAR
   ============================================================ */
.top-bar {
  background: var(--color-brown);
  padding: 8px 0;
  font-size: 0.78rem;
  color: var(--color-white);
  z-index: 999;
  position: relative;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-left a,
.top-bar-left span {
  color: var(--color-white);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left a:hover {
  color: var(--color-cream);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-right .hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

.top-bar-social a {
  color: var(--color-white);
  font-size: 0.82rem;
  transition: color var(--transition-fast);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-social a:hover {
  color: var(--color-cream);
}

/* ============================================================
   1. NAVIGATION BAR — Centered Logo, Split Links
   ============================================================ */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal), top var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  top: 0;
  background: rgba(74, 21, 8, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  padding: 8px 0;
  backdrop-filter: blur(12px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Left nav links */
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Right nav links */
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Center logo */
.navbar-logo {
  margin: 0 40px;
  flex-shrink: 0;
  margin-top: -35px;
  position: relative;
  z-index: 10;
}

.navbar-logo img {
  height: 132px;
  width: 132px;
  border-radius: 50%;
  object-fit: cover;
  transition: all var(--transition-normal);
  border: 3px solid rgba(255,255,255,0.2);
  background: #fff;
}

.navbar.scrolled .navbar-logo {
  margin-top: 0;
}

.navbar.scrolled .navbar-logo img {
  height: 50px;
  width: 50px;
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

.nav-left a,
.nav-right a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-left a::after,
.nav-right a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange-accent);
  transition: width var(--transition-normal);
}

.nav-left a:hover::after,
.nav-right a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--color-orange-light);
}

/* Contact CTA button in nav */
.nav-cta {
  background: var(--color-orange-accent) !important;
  color: var(--color-white) !important;
  padding: 8px 22px !important;
  border-radius: 25px;
  font-weight: 600 !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--color-orange-light) !important;
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================
   2. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 15, 8, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 750px;
  padding: 0 24px;
}

.hero-subtitle-top {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-title-line2 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-filled {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-brown);
  border: 2px solid var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all var(--transition-normal);
}

.btn-hero-filled:hover {
  background: var(--color-brown-warm);
  border-color: var(--color-brown-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-hero-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all var(--transition-normal);
}

.btn-hero-outline:hover {
  background: var(--color-white);
  color: var(--color-maroon);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

/* ============================================================
   3. WALK-IN SPECIALS — 3D Animated
   ============================================================ */
.walkin-specials {
  padding: 80px 0 0 0;
  background: var(--color-cream);
  overflow: hidden;
  perspective: 1200px;
}

.walkin-specials .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* --- Left visuals: floating food elements --- */
.walkin-visuals {
  flex: 1;
  position: relative;
  min-height: 480px;
  perspective: 800px;
}

.walkin-pizza {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
  transition: transform 0.5s ease;
}

.walkin-pizza img {
  width: 100%;
  max-width: 380px;
  border-radius: 50%;
}

.walkin-pizza:hover {
  transform: rotateY(8deg) rotateX(-5deg) scale(1.05);
}

/* Individual soda cans — 2x2 grid overlapping pizza */
.walkin-can {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.22));
  transition: transform 0.5s ease;
}

.walkin-can img {
  width: 120px;
  height: auto;
}

.walkin-can:hover {
  transform: translateY(-10px) scale(1.12) !important;
}

/* Top row — red, purple */
.walkin-can-1 {
  top: -10px;
  right: 100px;
}

.walkin-can-2 {
  top: -20px;
  right: 10px;
}

/* Bottom row — green, gold */
.walkin-can-3 {
  top: 140px;
  right: 90px;
}

.walkin-can-4 {
  top: 130px;
  right: 0;
}

.walkin-dips {
  position: absolute;
  bottom: 20px;
  left: -10px;
  z-index: 3;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.15));
  transition: transform 0.5s ease;
}

.walkin-dips img {
  width: 180px;
}

.walkin-dips:hover {
  transform: translateY(-8px) rotateZ(3deg) scale(1.08);
}

.walkin-addon {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-maroon);
  text-align: center;
  white-space: nowrap;
}

/* Floating animations */
.anim-float {
  animation: floatUpDown 4s ease-in-out infinite;
}

.anim-float-delay {
  animation: floatUpDown 4.5s ease-in-out 0.6s infinite;
}

.anim-float-slow {
  animation: floatUpDown 5s ease-in-out 1.2s infinite;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* --- Right: content card --- */
.walkin-card {
  flex: 1;
  background: var(--color-white);
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.walkin-title-banner {
  background: var(--color-maroon);
  padding: 20px 36px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.walkin-title-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-white);
  font-weight: 700;
  font-style: italic;
}

.walkin-card-body {
  padding: 32px 36px 40px;
}

.walkin-price-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark-text);
  margin-bottom: 10px;
}

.walkin-price-title .price-tag {
  color: var(--color-maroon);
  font-size: 2.2rem;
}

.walkin-deal-line {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark-text);
  margin-bottom: 20px;
}

.walkin-combo-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark-text);
  margin-bottom: 12px;
}

.walkin-combo-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 30px;
}

.walkin-combo-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark-text);
  line-height: 1.8;
  list-style: disc;
}

.walkin-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-grab-deal {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--color-brown);
  border-radius: 6px;
  transition: all var(--transition-normal);
}

.btn-grab-deal:hover {
  background: var(--color-maroon);
  border-color: var(--color-maroon);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,26,11,0.25);
}

.limited-offer {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--color-orange-accent);
  font-weight: 600;
}

/* ============================================================
   4. SPICE DIVIDER
   ============================================================ */
.spice-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--color-white);
  padding: 0;
  margin: 0;
}

.spice-divider img {
  width: 60%;
  margin: 0 auto;
  object-fit: contain;
}

/* ============================================================
   5. OUR MENU
   ============================================================ */
.our-menu {
  padding: 0 0 100px 0;
  background: var(--color-white);
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-maroon);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.section-ornament .line {
  width: 60px;
  height: 2px;
  background: var(--color-brown);
}

.section-ornament .diamond {
  width: 10px;
  height: 10px;
  background: var(--color-orange-accent);
  transform: rotate(45deg);
}

/* Menu Category Tabs */
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-cat-btn {
  padding: 8px 24px;
  border: 2px solid var(--color-maroon);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-maroon);
  background: transparent;
  transition: all var(--transition-normal);
  cursor: pointer;
  font-family: var(--font-body);
}

.menu-cat-btn.active,
.menu-cat-btn:hover {
  background: var(--color-maroon);
  color: var(--color-white);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.menu-item:hover {
  transform: translateY(-8px);
}

.menu-item-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid var(--color-cream-dark);
  box-shadow: 0 6px 24px rgba(92, 26, 11, 0.12);
  transition: all var(--transition-normal);
}

.menu-item:hover .menu-item-image {
  border-color: var(--color-orange-accent);
  box-shadow: 0 12px 36px rgba(212, 81, 26, 0.2);
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark-text);
  margin-bottom: 4px;
}

.menu-item-category {
  font-size: 0.78rem;
  color: var(--color-gray-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   6. REVIEWS SECTION
   ============================================================ */
.reviews {
  position: relative;
  padding: 80px 0 60px;
  background: var(--color-white);
  overflow: visible;
}

.reviews .container {
  text-align: center;
}

.reviews h2 {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: var(--color-dark-text);
  font-weight: 400;
  margin-bottom: 50px;
  line-height: 1.3;
}

/* Gallery — 3 images in a row */
.reviews-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.review-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  flex: 0 0 280px;
  max-width: 280px;
}

.review-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.review-img-wrap:hover img {
  transform: scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

/* Center image slightly larger */
.review-img-center {
  flex: 0 0 320px;
  max-width: 320px;
}

.review-img-center img {
  height: 310px;
}

/* Floating review bubbles */
.review-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark-text);
  white-space: nowrap;
  z-index: 5;
  animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-icon {
  color: var(--color-maroon);
  font-size: 1rem;
}

/* Bubble positions */
.review-bubble-bl {
  bottom: -16px;
  left: -20px;
  animation-delay: 0s;
}

.review-bubble-top {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.5s;
}

.review-bubble-br {
  bottom: -16px;
  right: -20px;
  animation-delay: 1s;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.review-bubble-top {
  animation: bubbleFloatCenter 3s ease-in-out 0.5s infinite;
}

@keyframes bubbleFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* Stars */
.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.reviews-stars span {
  color: #E8A000;
  font-size: 1.8rem;
  text-shadow: 0 0 4px rgba(232,160,0,0.4);
}

/* Tagline */
.reviews-tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-dark-text);
  font-weight: 500;
}

/* ============================================================
   7. GUESS THIS SONG
   ============================================================ */
.guess-song {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--color-maroon-deep) 0%, #3A1208 50%, var(--color-maroon) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Logo watermark */
.guess-song-watermark {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  z-index: 0;
}

.guess-song-watermark img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.guess-song .container {
  position: relative;
  z-index: 1;
}

/* Header row: title + emojis inline */
.guess-song-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.guess-song h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-white);
  font-style: italic;
  font-weight: 700;
  margin: 0;
}

.song-emojis {
  display: flex;
  align-items: center;
  gap: 6px;
}

.song-emoji {
  width: 65px;
  height: 65px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.song-emoji:hover {
  transform: scale(1.2) rotate(8deg);
}

.song-emojis .song-emoji:last-child {
  width: 162px;
  height: 162px;
}

/* Subtitle */
.guess-song-sub {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* Form row */
.guess-song-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 750px;
  margin: 0 auto;
}

.guess-input {
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark-text);
  background: var(--color-cream);
  width: 300px;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.guess-input::placeholder {
  color: var(--color-gray-mid);
  font-style: italic;
}

.guess-input:focus {
  box-shadow: 0 0 0 3px rgba(212,81,26,0.3);
}

/* Email wrap with send button */
.guess-email-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guess-submit {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.guess-submit:hover {
  background: var(--color-orange-accent);
  transform: scale(1.1);
}

/* ============================================================
   8. CATERING & PARTY TRAYS — CSS Grid
   ============================================================ */
.catering-party-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  margin: 0;
  padding: 0;
}

/* Text cells */
.cpg-text {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-white);
}

.cpg-text h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-dark-text);
  margin-bottom: 6px;
  font-weight: 700;
  border-bottom: 2px solid var(--color-dark-text);
  display: inline-block;
  padding-bottom: 4px;
}

/* Image cells */
.cpg-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.cpg-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.cpg-img:hover img {
  transform: scale(1.03);
}

/* Shared text styles */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark-text);
  margin-bottom: 14px;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-section {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--color-brown);
  border-radius: 6px;
  transition: all var(--transition-normal);
  align-self: flex-start;
}

.btn-section:hover {
  background: var(--color-maroon);
  border-color: var(--color-maroon);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,26,11,0.2);
}

/* ============================================================
   10. LOVE FROM OTTAWA LOCALS
   ============================================================ */
.locals-love {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

/* Split background: top maroon, bottom white */
.locals-love::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(135deg, var(--color-maroon-deep) 0%, var(--color-maroon) 100%);
  z-index: 0;
}

.locals-love-inner {
  position: relative;
  z-index: 1;
  padding: 50px 60px 50px;
}

/* Title — top-right */
.locals-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  text-align: center;
  margin: 0 0 30px 0;
}

/* Phone row — centered */
.phone-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 0 40px;
}

/* Each phone wrapper */
.phone-wrap {
  position: relative;
  transition: transform 0.4s ease;
  margin: 0;
}

.phone-wrap:hover {
  transform: scale(1.03) !important;
  z-index: 10;
}

/* Tilt phones */
.phone-tilt-left {
  transform: rotate(-6deg) translateY(-57px);
  animation: floatPhoneLeft 5s ease-in-out infinite;
  z-index: 1;
}

.phone-center {
  transform: translateY(-5px);
  animation: floatPhoneCenter 5s ease-in-out infinite 0.8s;
  z-index: 3;
}

.phone-tilt-right {
  transform: rotate(6deg) translateY(-57px);
  animation: floatPhoneRight 5s ease-in-out infinite 1.5s;
  z-index: 1;
}

@keyframes floatPhoneLeft {
  0%, 100% { transform: rotate(-6deg) translateY(-57px); }
  50% { transform: rotate(-6deg) translateY(-65px); }
}

@keyframes floatPhoneCenter {
  0%, 100% { transform: translateY(-5px); }
  50% { transform: translateY(-15px); }
}

@keyframes floatPhoneRight {
  0%, 100% { transform: rotate(6deg) translateY(-57px); }
  50% { transform: rotate(6deg) translateY(-65px); }
}

/* Phone frame — CSS mockup */
.phone-frame {
  width: 285px;
  height: 570px;
  background: #111;
  border-radius: 40px;
  padding: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), inset 0 0 0 2px #2a2a2a;
}

/* Notch */
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

/* Video inside phone */
.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

/* Bottom nav bar overlay */
.phone-bottom-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  height: 38px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border-radius: 0 0 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 14px;
  z-index: 2;
}

.phone-bottom-bar i {
  color: var(--color-white);
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Floating emoji images */
.phone-emoji {
  position: absolute;
  z-index: 5;
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
  animation: emojiPulse 2.5s ease-in-out infinite;
}

/* Emoji 1 (fire) — top-left of phone 1 */
.phone-emoji-1 {
  top: -10px;
  left: -10px;
}

/* Emoji 2 (heart-eyes) — bottom-center between phones */
.phone-emoji-2 {
  bottom: 60px;
  right: -25px;
}

/* Emoji 3 (exhale) — top-right of phone 3 */
.phone-emoji-3 {
  top: -15px;
  right: -15px;
  width: 150px;
  height: 150px;
}

@keyframes emojiPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* ============================================================
   SEE MENU CTA
   ============================================================ */
.see-menu-cta {
  text-align: center;
  padding: 50px 20px;
  background: var(--color-white);
}

.btn-see-menu {
  display: inline-block;
  padding: 16px 50px;
  background: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--color-brown);
  transition: all 0.3s ease;
}

.btn-see-menu:hover {
  background: var(--color-maroon);
  border-color: var(--color-maroon);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(92,26,11,0.25);
}

/* ============================================================
   11. OUR STORY
   ============================================================ */
.our-story {
  padding: 0;
  background: linear-gradient(135deg, var(--color-maroon-deep) 0%, var(--color-maroon) 100%);
  position: relative;
  overflow: hidden;
}

.our-story .container {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.story-content {
  flex: 1;
  padding: 70px 60px;
}

.story-content h2 {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: var(--color-white);
  margin-bottom: 24px;
}

.story-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Social icons */
.story-socials {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.story-socials span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
}

.story-social-icons {
  display: flex;
  gap: 12px;
}

.story-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-social-icons a:nth-child(1) {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.story-social-icons a:nth-child(2) {
  background: #1877F2;
}

.story-social-icons a:nth-child(3) {
  background: #111;
}

.story-social-icons a:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Chef image */
.story-chef-image {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 40px 0;
}

.story-chef-image img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  transition: transform var(--transition-slow);
}

.story-chef-image:hover img {
  transform: scale(1.03);
}

/* ============================================================
   12. FRANCHISE OPPORTUNITY
   ============================================================ */
.franchise {
  padding: 80px 20px;
  background: var(--color-white);
  text-align: center;
}

.franchise-card {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  border: 2.5px solid var(--color-maroon-deep);
  border-radius: 20px;
  padding: 80px 70px 60px;
  position: relative;
  background: var(--color-white);
}

/* Logo overlapping the top border */
.franchise-logo {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.franchise-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.franchise h2 {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-dark-text);
  margin-bottom: 24px;
  font-weight: 700;
}

.franchise .franchise-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-dark-text);
  margin-bottom: 28px;
  font-weight: 700;
  line-height: 1.6;
}

.franchise .franchise-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
}

.btn-franchise {
  display: inline-block;
  padding: 14px 44px;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--color-brown);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-franchise:hover {
  background: var(--color-maroon);
  border-color: var(--color-maroon);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92,26,11,0.25);
}

/* ============================================================
   13. FAQ
   ============================================================ */
.faq {
  padding: var(--section-padding);
  background: var(--color-white);
}

.faq .section-header h2 {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-dark-text);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(139, 58, 26, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-dark-text);
  text-align: left;
  transition: color var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
  letter-spacing: 0.2px;
}

.faq-question:hover {
  color: var(--color-orange-accent);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-normal);
  font-size: 1.2rem;
  color: var(--color-maroon);
}

.faq-item.active .faq-icon {
  background: var(--color-maroon);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 80px 0;
  background: var(--color-cream);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info h2 {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-dark-text);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--color-dark-text);
}

.contact-detail-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-maroon);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
}

.contact-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.contact-social-icons a:nth-child(1) {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-social-icons a:nth-child(2) {
  background: #1877F2;
}

.contact-social-icons a:nth-child(3) {
  background: #111;
}

.contact-social-icons a:hover {
  transform: scale(1.1) translateY(-2px);
}

/* Contact form */
.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark-text);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--color-dark-text);
  background: #fafafa;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-maroon);
  box-shadow: 0 0 0 3px rgba(139, 58, 26, 0.1);
  background: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact-submit:hover {
  background: var(--color-maroon);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,26,11,0.25);
}

.btn-contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Toast notification */
.toast-notification {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: #2d8f4e;
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: bottom 0.4s ease;
}

.toast-notification.show {
  bottom: 30px;
}

.toast-notification.error {
  background: #d32f2f;
}

/* Guess song success state */
.guess-song-form .guess-success {
  text-align: center;
  padding: 20px 0;
  color: #2d8f4e;
  font-weight: 600;
  font-size: 1rem;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.footer {
  background: #1a1a1a;
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-orange-accent);
  border-color: var(--color-orange-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--color-orange-accent);
}

/* Contact list with icons */
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-list li i {
  color: var(--color-orange-accent);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

/* Order button */
.btn-footer-order {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-orange-accent);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-footer-order:hover {
  background: var(--color-maroon);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Delivery partner logo */
.footer-delivery img {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.footer-delivery img:hover {
  transform: scale(1.05);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-credit {
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-credit span {
  color: var(--color-orange-accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-left,
  .nav-right {
    gap: 18px;
  }

  .nav-left a,
  .nav-right a {
    font-size: 0.82rem;
  }

  .navbar-logo {
    margin: 0 24px;
  }

  .navbar-logo img {
    height: 65px;
    width: 65px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-title-line2 {
    font-size: 2.4rem;
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .menu-item-image {
    width: 150px;
    height: 150px;
  }

  .walkin-specials .container,
  .catering .container,
  .party-trays .container,
  .our-story .container {
    gap: 30px;
  }

  .reviews h2 {
    font-size: 2.5rem;
  }

  .phone-mockups {
    gap: 24px;
  }

  .phone-mockup {
    max-width: 220px;
  }

  .top-bar-left {
    gap: 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 16px;
  }

  /* Top bar mobile */
  .top-bar {
    display: none;
  }

  .navbar {
    top: 0;
  }

  /* Nav mobile */
  .nav-left,
  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(74, 21, 8, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right var(--transition-normal);
    backdrop-filter: blur(20px);
  }

  .nav-left.open,
  .nav-right.open {
    right: 0;
  }

  /* Stack both nav groups in mobile menu */
  .nav-left {
    z-index: 1002;
    padding-bottom: 60px;
  }

  .nav-right {
    z-index: 1002;
    padding-top: 60px;
  }

  .nav-left a,
  .nav-right a {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  /* Hero mobile */
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-title-line2 {
    font-size: 1.8rem;
  }

  .hero-subtitle-top {
    font-size: 0.95rem;
  }

  /* Walk-In Specials mobile */
  .walkin-specials .container {
    flex-direction: column;
  }

  .walkin-visuals {
    min-height: 320px;
    width: 100%;
  }

  .walkin-pizza img {
    max-width: 260px;
  }

  .walkin-cans img {
    width: 160px;
  }

  .walkin-dips img {
    width: 130px;
  }

  .walkin-title-banner h2 {
    font-size: 1.8rem;
  }

  .walkin-price-title {
    font-size: 1.5rem;
  }

  /* Menu grid mobile */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .menu-item-image {
    width: 130px;
    height: 130px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  /* Reviews mobile */
  .reviews h2 {
    font-size: 2rem;
  }

  .reviews-gallery {
    flex-direction: column;
    gap: 40px;
  }

  .review-img-wrap,
  .review-img-center {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  /* Guess Song mobile */
  .guess-song h2 {
    font-size: 2.2rem;
  }

  /* Catering & Party Trays mobile */
  .catering .container {
    flex-direction: column;
  }

  .party-trays .container {
    flex-direction: column-reverse;
  }

  .catering-image img,
  .party-image img {
    min-height: 280px;
  }

  .catering-content h2,
  .party-content h2 {
    font-size: 2.2rem;
  }

  /* Socials mobile */
  .phone-mockups {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .phone-mockup {
    max-width: 220px;
  }

  .socials .socials-main-title {
    font-size: 2.2rem;
  }

  /* Our Story mobile */
  .our-story .container {
    flex-direction: column;
  }

  .story-content h2 {
    font-size: 2.2rem;
  }

  .story-images {
    grid-template-columns: 1fr;
  }

  .story-img-wrap img {
    height: 220px;
  }

  .story-img-wrap.full-width img {
    height: 220px;
  }

  /* Franchise mobile */
  .franchise h2 {
    font-size: 2.2rem;
  }

  /* FAQ mobile */
  .faq-question {
    font-size: 0.95rem;
    padding: 18px 0;
  }

  /* Footer mobile */
  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 30px;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .menu-item-image {
    width: 110px;
    height: 110px;
  }

  .walkin-card h2,
  .catering-content h2,
  .party-content h2,
  .story-content h2,
  .franchise h2 {
    font-size: 1.8rem;
  }

  .reviews h2,
  .guess-song h2,
  .socials .socials-main-title {
    font-size: 1.8rem;
  }

  .btn-hero {
    padding: 12px 32px;
    font-size: 0.8rem;
  }

  .song-hint-block {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ============================================================
   LOADING / PAGE TRANSITION
   ============================================================ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-maroon-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

/* ============================================================
   ELEMENTOR FONT OVERRIDES
   Elementor injects inline font-family on widgets.
   Only !important can override inline styles.
   ============================================================ */

/* --- Headings: Cormorant Garamond — must target all layers --- */
h1, h2, h3, h4, h5,
h1 span, h2 span, h3 span, h4 span, h5 span,
.elementor-heading-title,
.elementor-heading-title span,
.elementor-heading-title b,
.elementor-heading-title strong,
.elementor-heading-title em,
.elementor-widget-heading .elementor-widget-container *,
.elementor-widget-heading .elementor-heading-title,
.elementor-widget-heading .elementor-heading-title span {
  font-family: 'Cormorant Garamond', 'Georgia', serif !important;
}

/* --- Body text: Poppins — target specific elements, NOT generic span --- */
body,
p,
li,
a,
button,
input,
textarea,
select,
td, th,
label,
.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor-widget-text-editor span,
.elementor-widget-text-editor li {
  font-family: 'Poppins', 'Segoe UI', sans-serif !important;
}

/* --- Accordion: Poppins for Q&A text --- */
.elementor-accordion-title,
.elementor-accordion-title span,
.elementor-tab-title a,
.elementor-tab-title a span,
.elementor-tab-content,
.elementor-tab-content p,
.elementor-tab-content span {
  font-family: 'Poppins', 'Segoe UI', sans-serif !important;
}

/* --- Buttons: Poppins --- */
.elementor-button,
.elementor-button span,
.elementor-button-text {
  font-family: 'Poppins', 'Segoe UI', sans-serif !important;
}

/* --- Icon List: Poppins --- */
.elementor-icon-list-text,
.elementor-icon-list-text span {
  font-family: 'Poppins', 'Segoe UI', sans-serif !important;
}

/* --- Script / Decorative: Great Vibes --- */
.hero-subtitle-script,
.hero-subtitle-script span,
.mm-hero-script .elementor-heading-title,
.mm-hero-script .elementor-heading-title span {
  font-family: 'Great Vibes', cursive !important;
}
