.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  z-index: 0; /* ensure content sits in its own stacking context */
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2; /* put text above video & overlay */
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Buttons with Gradient */
.hero-buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #e74c3c, #ff8c42); /* 🔥 gradient */
  color: #fff;
  transition: 0.3s ease;
}

.hero-buttons .btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Outline Button */
.hero-buttons .btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.hero-buttons .btn-outline:hover {
  background: #fff;
  color: #333;
}

/* 🌙 Dark Theme */
body.dark .hero-overlay {
  background: rgba(0, 0, 0, 0.7);
}

body.dark .hero h1,
body.dark .hero p {
  color: #f1f1f1; /* lighter text in dark mode */
}

/* Dark theme buttons */
body.dark .hero-buttons .btn {
  background: linear-gradient(135deg, #6c5ce7, #00cec9); /* cool gradient in dark */
  color: #fff;
}

body.dark .hero-buttons .btn-outline {
  border: 2px solid #00cec9;
  color: #00cec9;
}

body.dark .hero-buttons .btn-outline:hover {
  background: #00cec9;
  color: #fff;
}
/* Hero Image */
.hero-image {
  position: absolute;
  bottom: 40px;
  right: 50px;
  width: 350px;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Dark theme: lighten shadow */
body.dark .hero-image img {
  box-shadow: 0 10px 25px rgba(255,255,255,0.1);
}
/* Outline Button (Improved) */
.hero-buttons .btn-outline {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #ff8c42; /* match gradient accent */
  color: #ff8c42;
  background: transparent;
  transition: all 0.3s ease;
}

.hero-buttons .btn-outline:hover {
  background: linear-gradient(135deg, #ff8c42, #e74c3c);
  color: #fff;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* 🌙 Dark Theme */
body.dark .hero-buttons .btn-outline {
  border: 2px solid #00cec9;
  color: #00cec9;
}

body.dark .hero-buttons .btn-outline:hover {
  background: linear-gradient(135deg, #6c5ce7, #00cec9);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 206, 201, 0.4);
}

/* =========================
   Section Background
========================= */
.delivery-orbit {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #e74c3c, #ff8c42);
  color: #333;
  overflow: hidden;
}

body.dark .delivery-orbit {
  background: linear-gradient(135deg, #6c5ce7, #00cec9);
  color: #e4e4e4;
}

/* Soft overlay */
.delivery-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(249, 249, 249, 0.85); /* Light */
  z-index: 0;
}

body.dark .delivery-orbit::before {
  background: rgba(18, 18, 18, 0.85); /* Dark */
}

.delivery-orbit > * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #e74c3c, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   Orbit Circle
========================= */
.circle-container {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto 60px;
  border-radius: 50%;
  animation: orbit-spin 25s linear infinite;
  transform: rotate(0deg);
  transition: transform 0.8s ease-out;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circle-container.paused {
  animation: none !important;
  transform: rotate(0deg) !important;
}

/* Center */
.circle-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

body.dark .circle-center {
  background: #1e1e1e;
}

/* Orbit Items */
.circle-item {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark .circle-item {
  background: #1e1e1e;
}

.circle-item:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

body.dark .circle-item:hover {
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.7);
}

.circle-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Static Positions */
.item1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.item2 { right: 0; top: 50%; transform: translate(50%, -50%); }
.item3 { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.item4 { left: 0; top: 50%; transform: translate(-50%, -50%); }

/* =========================
   Orbit Steps - Horizontal Line
========================= */
.orbit-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin: 60px auto 0;
  max-width: 1100px;
  position: relative;
  padding: 20px 0;
}

.orbit-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #e74c3c, #ff8c42);
  border-radius: 2px;
  z-index: 0;
}

body.dark .orbit-steps::before {
  background: linear-gradient(45deg, #6c5ce7, #00cec9);
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #e74c3c;
}

body.dark .step h4 { color: #6c5ce7; }

.step h4 img {
  width: 28px;
  height: 28px;
}

.step p {
  font-size: 1rem;
  color: #555;
  margin: 0 auto;
  max-width: 220px;
}

body.dark .step p { color: #e4e4e4; }

/* =========================
   Responsive
========================= */

/* Tablets */
@media (max-width: 992px) {
  .circle-container { width: 320px; height: 320px; }
  .circle-item { width: 90px; height: 90px; }
  .circle-icon img { width: 30px; height: 30px; }
  .circle-center { padding: 30px 20px; }
}

/* Mobiles */
@media (max-width: 768px) {
  .orbit-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .orbit-steps::before {
    top: 0;
    left: 15px;
    width: 3px;
    height: 100%;
  }

  .step {
    text-align: left;
    padding-left: 40px;
  }

  .step h4 { justify-content: flex-start; }
}

/* Small Mobiles */
@media (max-width: 600px) {
  .circle-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    animation: none !important;
  }

  .circle-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 20px;
  }

  .circle-item {
    position: relative;
    transform: none !important;
    width: 100px;
    height: 100px;
  }

  .item1, .item2, .item3, .item4 {
    top: auto; left: auto; right: auto; bottom: auto;
  }
}
/* =======================
   Restaurant Slider
======================= */
.top-restaurants {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
  position: relative;
}

body.dark .top-restaurants {
  background: #121212;
}

.top-restaurants .section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #e74c3c, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark .top-restaurants .section-title {
  background: linear-gradient(45deg, #6c5ce7, #00cec9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #666;
  margin-bottom: 40px;
}

body.dark .section-subtitle {
  color: #ccc;
}

.restaurant-slider {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.restaurant-card {
  display: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

body.dark .restaurant-card {
  background: #1e1e1e;
}

.restaurant-card.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.restaurant-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.restaurant-content {
  padding: 20px;
  text-align: left;
}

.restaurant-content h3 {
  margin-bottom: 6px;
}

.cuisine {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 15px;
}

body.dark .cuisine {
  color: #bbb;
}

.top-orders {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.top-orders li {
  margin-bottom: 6px;
  color: #444;
}

body.dark .top-orders li {
  color: #e4e4e4;
}

.restaurant-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating {
  font-weight: bold;
  color: #e67e22;
}

.btn-order {
  padding: 8px 14px;
  background: linear-gradient(45deg, #e74c3c, #ff8c42);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

body.dark .btn-order {
  background: linear-gradient(45deg, #6c5ce7, #00cec9);
}

.btn-order:hover {
  opacity: 0.9;
}

/* Arrows */
.slider-controls {
  margin-top: 20px;
}

.arrow {
  background: none;
  border: none;
  font-size: 1.5rem;
  margin: 0 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

.arrow:hover {
  transform: scale(1.2);
}
/* =======================
   Restaurant Slider BG
======================= */
.top-restaurants {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  color: #333;
  
  /* Light theme gradient */
  background: linear-gradient(135deg, #fff5f5, #fff8f0);
  overflow: hidden;
}

body.dark .top-restaurants {
  /* Dark theme gradient */
  background: linear-gradient(135deg, #1a1a2e, #121212);
  color: #e4e4e4;
}

/* ✅ Subtle Pattern Overlay */
.top-restaurants::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='2' cy='2' r='2' fill='%23e0e0e0' opacity='0.2'/></svg>");
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

body.dark .top-restaurants::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='2' cy='2' r='2' fill='%23ffffff' opacity='0.05'/></svg>");
}

.top-restaurants .section-title,
.top-restaurants .section-subtitle,
.restaurant-slider,
.slider-controls {
  position: relative;
  z-index: 1; /* keep content above overlay */
}
body.dark .slider-controls .arrow {
  color: #bbb;
}


/* =======================
   Responsive - Top Restaurants
======================= */

/* Small devices (phones) */
@media (max-width: 600px) {
  .top-restaurants {
    padding: 50px 12px;
  }

  .top-restaurants .section-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .restaurant-slider {
    max-width: 100%;
  }

  .restaurant-card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }

  .restaurant-img {
    height: 160px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .restaurant-content {
    padding: 12px 14px;
  }

  .restaurant-content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .cuisine {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .top-orders li {
    font-size: 0.85rem;
  }

  .restaurant-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .btn-order {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    padding: 8px;
    border-radius: 6px;
  }

  .slider-controls {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .arrow {
    font-size: 1.2rem;
    margin: 0;
  }

  /* ✅ Highlights on mobile */
  .restaurant-wrapper {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .restaurant-highlights {
    padding: 18px;
    border-radius: 12px;
  }

  .restaurant-highlights h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }

  .restaurant-highlights li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}

/* Medium devices (tablets) */
@media (min-width: 601px) and (max-width: 992px) {
  .top-restaurants {
    padding: 70px 30px;
  }

  .restaurant-slider {
    max-width: 80%;
  }

  .restaurant-img {
    height: 200px;
  }

  .restaurant-content h3 {
    font-size: 1.4rem;
  }

  .cuisine {
    font-size: 0.9rem;
  }

  .btn-order {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .arrow {
    font-size: 1.6rem;
  }
}

/* Large screens (desktops) */
@media (min-width: 993px) {
  .restaurant-slider {
    max-width: 500px;
  }
}


/* Layout Wrapper */
.restaurant-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left side (slider) */
.restaurant-slider {
  flex: 1;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

/* Right side (highlights) */
.restaurant-highlights {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.4s ease;
}

body.dark .restaurant-highlights {
  background: #1e1e1e;
  color: #eee;
}

.restaurant-highlights h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #e74c3c;
}

.restaurant-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.restaurant-highlights li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #444;
}

body.dark .restaurant-highlights li {
  color: #ddd;
}

/* Responsive */
@media (max-width: 900px) {
  .restaurant-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .restaurant-highlights {
    text-align: center;
  }
}


/* ==========================
   Customer Reviews Section
========================== */
.customer-reviews {
  padding: 80px 20px;
  text-align: center;
  background: #fff5f2; /* Light mode soft background */
}

.customer-reviews .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #e74c3c, #ff8c42); /* light theme gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.customer-reviews .section-subtitle {
  color: #666;
  margin-bottom: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  color: #444;
  margin-bottom: 12px;
}

.review-name {
  font-weight: 700;
  color: #e74c3c;
}

/* ==========================
   Dark Theme
========================== */
body.dark .customer-reviews {
  background: #121212;
}

body.dark .customer-reviews .section-title {
  background: linear-gradient(90deg, #6c5ce7, #00cec9); /* dark theme gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark .customer-reviews .section-subtitle {
  color: #bbb;
}

body.dark .review-card {
  background: #1e1e1e;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

body.dark .review-text {
  color: #ddd;
}

body.dark .review-name {
  color: #00cec9;
}
/* =======================
   Order Tracking Section
======================= */
.order-tracking {
  padding: 70px 10%;
  text-align: center;
  background: #f9f9f9;
  color: #333;
}

.order-tracking .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #e74c3c, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.order-tracking .section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #555;
}

/* Progress Container */
.progress-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 50px auto 0;
}

/* Progress Bar Line */
.progress-bar {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ddd;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  height: 100%;
  width: var(--progress-width, 0%);
  background: linear-gradient(90deg, #e74c3c, #ff8c42);
  transition: width 1s ease;
}

/* Each Step */
.progress-step {
  position: relative;
  flex: 1;
  text-align: center;
  z-index: 2;
}

.progress-step .circle {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  background: #ddd;
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 3;
  position: relative;
}

/* Active Circle */
.progress-step.active .circle {
  background: #e74c3c;
}

/* Labels */
.progress-step p {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
}

.progress-step.active p {
  color: #e74c3c;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .progress-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .progress-bar {
    left: 14px;
    top: 0;
    width: 6px;
    height: 100%;
  }

  .progress-bar::before {
    width: 100%;
    height: var(--progress-height, 0%);
  }

  .progress-step {
    text-align: left;
  }

  .progress-step .circle {
    margin: 0;
  }

  .progress-step p {
    margin-top: -28px;
    margin-left: 50px;
  }
}

/* 🌙 Dark Mode */
body.dark .order-tracking {
  background: #121212;
  color: #e4e4e4;
}

body.dark .progress-bar {
  background: #333;
}

body.dark .circle {
  background: #555;
}

body.dark .progress-step.active .circle {
  background: #6c5ce7;
}

body.dark .progress-step p {
  color: #bbb;
}

body.dark .progress-step.active p {
  color: #6c5ce7;
}

/* =======================
   CTA Section Styles
======================= */
.cta-section {
  background: #f9f9f9;
  text-align: center;
  padding: 80px 10%;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #e74c3c;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Gradient Button */
.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #e74c3c, #ff8c42);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* 🌙 Dark Mode */
body.dark .cta-section {
  background: #121212;
}

body.dark .cta-content h2 {
  color: #6c5ce7;
}

body.dark .cta-content p {
  color: #e4e4e4;
}

body.dark .cta-btn {
  background: linear-gradient(90deg, #6c5ce7, #00cec9);
  color: #121212;
}
/* =========================
   📱 Hero Responsive Fix
========================= */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .hero-image {
    width: 260px;
    right: 30px;
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 20px;
    height: auto;
    min-height: 100vh;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .hero-buttons .btn {
    padding: 10px 20px;
    margin: 5px;
    font-size: 0.95rem;
  }
  .hero-image {
    width: 200px;
    position: relative;
    right: 0;
    bottom: 0;
    margin: 20px auto 0;
    display: block;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .hero-image {
    display: none; /* hide completely on very small screens */
  }
}

/* =========================
   📱 CTA Responsive Fix
========================= */
@media (max-width: 768px) {
  .cta-section {
    padding: 50px 8%;
  }
  .cta-content h2 {
    font-size: 1.8rem;
  }
  .cta-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .cta-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 1.5rem;
  }
  .cta-content p {
    font-size: 0.9rem;
  }
  .cta-btn {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    border-radius: 40px;
  }
}



/* =======================
   Order Online Section
======================= */
.order-online {
  position: relative;
  width: 100%;
  padding: 64px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e74c3c, #ff8c42); /* light theme accent */
  color: #fff;
}

/* Scrolling text container */
.order-online-marquee {
  position: relative;
  display: flex;
  gap: 0;
  width: 100%;
  white-space: nowrap;
  pointer-events: none; /* so the button on top stays clickable */
  /* soft fade on edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

/* Each repeating group */
.order-online .marquee-group {
  display: inline-flex;
  gap: 2.5rem;
  padding-inline: 2rem;
  flex: 0 0 auto;
  animation: order-marquee 18s linear infinite;
}

.order-online .marquee-group span {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

/* Static centered button */
.order-online .btn-bounce {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: auto; /* ensure clickable */
  background: #fff;
  color: #e74c3c;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: btn-bounce 1.5s infinite;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.order-online .btn-bounce:active {
  transform: translate(-50%, -50%) scale(0.98);
}

/* Marquee animation (continuous) */
@keyframes order-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Button bounce animation */
@keyframes btn-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, -50%) translateY(0); }
  40% { transform: translate(-50%, -50%) translateY(-10px); }
  60% { transform: translate(-50%, -50%) translateY(-5px); }
}

/* 🌙 Dark mode */
body.dark .order-online {
  background: linear-gradient(135deg, #6c5ce7, #00cec9); /* dark theme accent */
}

body.dark .order-online .btn-bounce {
  background: #121212;
  color: #00cec9;
}

/* 📱 Responsive tweaks */
@media (max-width: 600px) {
  .order-online { padding: 56px 0; }
  .order-online .marquee-group span { font-size: 1.2rem; }
  .order-online .btn-bounce { padding: 10px 20px; border-radius: 10px; }
}
