@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

:root {
  --primary: #e63946;
  /* Vibrant Red for food/appetite */
  --primary-hover: #d62828;
  --secondary: #f4a261;
  /* Warm Orange for accents */
  --secondary-hover: #e76f51;
  --dark: #1d3557;
  --dark-light: #457b9d;
  --light: #f8f9fa;
  --white: #ffffff;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--dark-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(244, 162, 97, 0.6);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 104px;
}

.logo img {
  height: 120px;
  transform: scale(1.3);
  margin-left: 20px;
}

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

.nav-links a {
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/mewalal-chaat-and-snacks-washim-fast-food-bw7kqjc0wp.avif');
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  z-index: -1;
  opacity: 1;
  border-radius: 0;
  box-shadow: none;
}

.hero-content {
  max-width: 60%;
  animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-title span {
  color: var(--primary);
}

.hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Highlights Strip */
.highlights-strip {
  background-color: #FFF8F2;
  padding: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  position: relative;
  border-radius: var(--radius);
  transition: var(--transition);
}

.highlight-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.08); /* Subtle divider lines */
}

.highlight-icon {
  font-size: 2.2rem;
  color: #E53935;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.highlight-title {
  color: #212121;
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.1);
  color: #F7941D;
}

.highlight-item:hover .highlight-title {
  color: #F7941D;
}

/* Features/Why Us */
.features {
  background-color: var(--white);
  padding: 60px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--light);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--dark-light);
  font-size: 0.95rem;
}

/* Menu Highlights */
.menu {
  background-color: var(--light);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.menu-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.menu-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
}

.menu-info {
  padding: 25px;
}

.menu-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.menu-desc {
  color: var(--dark-light);
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.menu-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-sm {
  font-size: 0.9rem;
  padding: 8px 16px;
}/* Gallery Section */
.gallery {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1; /* Squarish aspect ratio for grid layout */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1); /* Hover zoom effect */
}
/* Reviews Section */
.reviews {
  background-color: var(--light);
}

.rating-display {
  margin-bottom: 40px;
}

.rating-display .stars {
  color: #FFB800;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.rating-display p {
  color: var(--dark-light);
  font-size: 1.1rem;
}

/* Infinite Marquee Slider */
.reviews-slider {
  overflow: hidden;
  width: 100%;
  padding: 20px 0 40px;
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: scrollReviews 40s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.reviews-group {
  display: flex;
  gap: 30px;
  padding-right: 30px; /* Crucial for seamless looping */
}

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  width: 350px;
  flex-shrink: 0;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.review-icon {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 15px;
  opacity: 0.3;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 25px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--dark-light);
}

/* CTA / Order Now */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

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

.btn-white:hover {
  background: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-dark:hover {
  background: #111;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Delivery Buttons */
.delivery-btn {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 10px 25px 10px 10px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: auto;
}

.delivery-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background: #fdfdfd;
}

.delivery-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.zomato-btn .delivery-icon {
  background-color: #E23744;
}

.swiggy-btn .delivery-icon {
  background-color: #FC8019;
}

.delivery-icon img {
  width: 22px;
  height: 22px;
}

.delivery-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.delivery-text span {
  font-size: 0.75rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: -1px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.delivery-text strong {
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.zomato-btn .delivery-text strong {
  color: #E23744;
}

.swiggy-btn .delivery-text strong {
  color: #FC8019;
}


/* FAQ Section */
.faq-section {
  background: var(--light);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.faq-question {
  padding: 20px 25px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
  transition: color 0.3s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

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

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer {
  padding: 20px 25px;
  color: var(--dark-light);
  line-height: 1.6;
  background: var(--white);
}

/* Contact / Map */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info-card {
  background: var(--light);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  background: var(--primary);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--dark-light);
  line-height: 1.5;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 180px;
  margin-bottom: 20px;
  background: transparent;
  padding: 10px;
  border-radius: 8px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-content {
    max-width: 70%;
  }



  .contact-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  
  .highlight-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: -100%;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 30px 0;
    box-shadow: var(--shadow-sm);
    transition: 0.4s ease;
    gap: 1.5rem;
  }

  .nav-links.active {
    left: 0;
  }

  .hero {
    text-align: center;
    padding: 140px 0 60px;
  }

  .hero-bg {
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    border-radius: 0;
    opacity: 1;
    z-index: -1;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .cta h2 {
    font-size: 2.2rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .highlight-icon {
    font-size: 1.8rem;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp i {
  margin-top: 2px;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #1ebe57;
  color: #fff;
  animation: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }
}