/* ===== PERFORMANCE SAFETY NET ===== */
.reveal,
.stagger > * {
  will-change: transform, opacity;
}

/* Disable heavy animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================
   GLOBAL
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(#fff, #fff5f5);
  color: #3b0000;
  padding-bottom: 60px; /* Space for mobile actions */
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: linear-gradient(#7a0000, #b30000);
  color: white;
  padding: 18px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar h1 {
  margin: 0;
  font-size: 24px;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
}

.navbar a:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.nav-mobile-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 5px 10px;
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(135deg, #6d0000, #8b0000, #cd5c5c);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 100px 80px;
  overflow: hidden;
  min-height: 500px;
}

.hero-logo img {
  width: 300px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  border: 3px solid #d4af37;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  animation: heroLogo 1.2s ease forwards;
}

.hero-text {
  max-width: 520px;
  animation: heroText 1.4s ease forwards;
}

.hero-text h2 {
  font-size: 42px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #ffeaea;
  margin-bottom: 30px;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.cta-primary,
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.cta-primary {
  background: #d4af37;
  color: #3b0000;
  box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.cta-primary:hover {
  background: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.6);
}

.cta-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.cta-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

.whatsapp-icon {
  font-size: 20px;
}

/* =========================
   INFO BANNER
========================= */
.info-banner {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 30px 20px;
  background: linear-gradient(to right, #fff5f5, #ffeaea, #fff5f5);
  border-bottom: 2px solid #ffe0d6;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-icon {
  font-size: 32px;
}

.info-item strong {
  display: block;
  color: #8b0000;
  font-size: 16px;
  margin-bottom: 2px;
}

.info-item p {
  margin: 0;
  color: #4a1a1a;
  font-size: 14px;
}

/* =========================
   HERO ANIMATIONS
========================= */
@keyframes heroLogo {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroText {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* =========================
   SECTIONS
========================= */
section {
  padding: 70px 300px;
  text-align: center;
}

section h2 {
  color: #8b0000;
  font-size: 36px;
  margin-bottom: 12px;
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #d4af37, #b30000);
  margin: 12px auto 0;
  border-radius: 2px;
}

.menu-subtitle,
.order-subtitle,
.instagram-subtitle,
.reviews-subtitle {
  color: #6b0f0f;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 35px;
  opacity: 0.85;
}

/* =========================
   STORY
========================= */
.story {
  background: linear-gradient(#fff5f5, #ffeaea);
  max-width: 10000px;
  margin: auto;
}

.story p {
  font-size: 18px;
  line-height: 1.9;
  color: #4a1a1a;
  margin-bottom: 20px;
}

/* =========================
   SIGNATURES
========================= */
.signatures {
  background: linear-gradient(#fff5f0, #ffe0d6);
}

.signature-intro {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #4a1a1a;
}

/* =========================
   WHY US
========================= */
.why-us {
  background: linear-gradient(#fff5f5, #ffeaea);
}

.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background: radial-gradient(circle, #ffeaea, #ffcfcf);
  padding: 32px 28px;
  width: 260px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 17px;
  color: #6d0000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 60px rgba(212,175,55,0.3);
}

/* =========================
   MENU – PLATE STYLE
========================= */
.menu-showcase {
  background: #fff;
  padding: 80px 60px;
}

.menu-showcase h2 {
  margin-top: 60px;
}

.menu-showcase h2:first-of-type {
  margin-top: 0;
}

.menu-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.menu-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.05);
}

.menu-item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: floatLuxury 7s ease-in-out infinite;
}

.menu-item img:hover {
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.06);
  box-shadow: 0 25px 50px rgba(139, 0, 0, 0.35);
}

.menu-item p {
  margin-top: 18px;
  font-size: 19px;
  font-weight: 600;
  color: #3b0000;
}

.price {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #d4af37;
}

.menu-note {
  margin-top: 50px;
  padding: 20px;
  background: linear-gradient(135deg, #fff5f5, #ffeaea);
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.menu-note p {
  margin: 0;
  color: #4a1a1a;
  font-size: 15px;
}

/* =========================
   ORDER NOW SECTION
========================= */
.order-now {
  background: linear-gradient(135deg, #fff5f5, #ffe0d6);
  padding: 70px 60px;
}

.order-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.order-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  background: white;
}

.order-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.btn-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.order-btn div {
  text-align: left;
}

.order-btn strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.order-btn small {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  font-weight: 400;
}

.order-btn.zomato {
  border-left: 5px solid #E23744;
}

.order-btn.zomato strong {
  color: #E23744;
}

.order-btn.swiggy {
  border-left: 5px solid #FC8019;
}

.order-btn.swiggy strong {
  color: #FC8019;
}

.order-btn.call {
  border-left: 5px solid #8b0000;
}

.order-btn.call strong {
  color: #8b0000;
}

.order-btn.whatsapp {
  border-left: 5px solid #25D366;
}

.order-btn.whatsapp strong {
  color: #25D366;
}

/* =========================
   GOOGLE REVIEWS
========================= */
.google-reviews {
  background: linear-gradient(#fff5f5, #ffeaea);
}

.reviews-wrapper {
  max-width: 900px;
  margin: 30px auto;
}

.write-review-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: linear-gradient(to right, #d4af37, #b30000);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 16px;
}

.write-review-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.5);
}

/* =========================
   INSTAGRAM
========================= */
.instagram {
  background: linear-gradient(#fff5f0, #ffe0d6);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.insta-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.insta-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.insta-grid a:hover img {
  transform: scale(1.08);
}

.insta-link {
  margin-top: 30px;
  color: #8b0000;
  font-size: 17px;
}

.insta-link a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.insta-link a:hover {
  color: #8b0000;
}

/* =========================
   CONTACT
========================= */
.contact {
  background: linear-gradient(#fff5f5, #ffeaea);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0;
}

.contact-card {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 15px;
}

.contact-card h3 {
  color: #8b0000;
  margin-bottom: 12px;
  font-size: 20px;
}

.contact-card a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #8b0000;
}

.contact-card p {
  color: #4a1a1a;
  margin: 0;
  line-height: 1.6;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #6b0f0f;
  color: white;
  text-align: center;
  padding: 25px 20px;
}

.footer p {
  margin: 5px 0;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.8;
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37,211,102,0.6);
}

/* =========================
   BACK TO TOP BUTTON
========================= */
.back-to-top {
  position: fixed;
  bottom: 80px;
  left: 25px;
  width: 50px;
  height: 50px;
  background: #8b0000;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(139,0,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #b30000;
  transform: translateY(-5px);
}

/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */
.reveal {
  opacity: 0;
  transform: translateY(120px) scale(0.96);
  transition:
    opacity 1.4s ease,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered Elements */
.stagger > * {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.show > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.show > *:nth-child(1) { transition-delay: 0.15s; }
.stagger.show > *:nth-child(2) { transition-delay: 0.3s; }
.stagger.show > *:nth-child(3) { transition-delay: 0.45s; }
.stagger.show > *:nth-child(4) { transition-delay: 0.6s; }
.stagger.show > *:nth-child(5) { transition-delay: 0.75s; }
.stagger.show > *:nth-child(6) { transition-delay: 0.9s; }

/* Float Animation */
@keyframes floatLuxury {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Gradient Flow Animation */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.story,
.signatures,
.instagram,
.google-reviews {
  background-size: 200% 200%;
  animation: gradientFlow 20s ease-in-out infinite;
}

/* =========================
   MOBILE ACTIONS BAR
========================= */
.mobile-actions {
  display: none;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets and smaller */
@media (max-width: 1024px) {
  section {
    padding: 60px 100px;
  }

  .hero {
    padding: 80px 60px;
    gap: 50px;
  }

  .hero-logo img {
    width: 250px;
  }

  .hero-text h2 {
    font-size: 36px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  body {
    padding-bottom: 120px;
  }

  .navbar {
    padding: 15px 20px;
  }

  .navbar h1 {
    font-size: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .hero {
    flex-direction: column;
    padding: 60px 30px;
    gap: 30px;
  }

  .hero-logo img {
    width: 200px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .cta-primary,
  .cta-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .info-banner {
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
  }

  section {
    padding: 50px 25px;
  }

  section h2 {
    font-size: 28px;
  }

  .menu-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .menu-item img {
    width: 140px;
    height: 140px;
  }

  .order-buttons {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 140px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .back-to-top {
    bottom: 140px;
    left: 20px;
    width: 45px;
    height: 45px;
  }

  /* Mobile Bottom Bar */
  .mobile-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: linear-gradient(#6b0f0f, #8b0000);
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
  }

  .mobile-actions a {
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
  }

  .mobile-actions a:last-child {
    border-right: none;
  }

  .mobile-actions a:active {
    background: rgba(255,255,255,0.1);
  }
}

/* Very small devices */
@media (max-width: 480px) {
  .hero-logo img {
    width: 180px;
  }

  .hero-text h2 {
    font-size: 24px;
  }

  .menu-row {
    grid-template-columns: 1fr;
  }

  .menu-item img {
    width: 160px;
    height: 160px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }
}
