/* Basic Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #FFF8F0;
  color: #4d0011;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}

a {
  color: #ff7c04;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Color Palette */
:root {
  --primary-orange: #ff7c04;
  --deep-brown: #4d0011;
  --cream-bg: #FFF8F0;
  --light-gold: #ffd7a1;
  --sage-green: #7dc497;
  --glass-white: rgba(255, 255, 255, 0.62);
}


.navbar-logo {
  display: block;
  max-height: 100px;      /* Adjusts for navbar height on desktop */
  max-width: 320px;      /* Prevents logo from getting too wide */
  width: auto;
  height: auto;
 
}

/* Responsive for mobile */
@media (max-width: 576px) {
  .navbar-logo {
    max-height: 62px;
    max-width: 220px;
   
  }
}


/* Section Background Alternation & Full-Width Layout */
.section-bg-cream {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFF8F0;
  padding: 4rem 0;
}
.section-bg-peach {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFE5CC;
  padding: 4rem 0;
}
/* Remove max-width from sections for full background, keep content inside container */
section > .container, .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}


/* Navbar (Glassmorphism) */
.glass-nav {
  background: var(--primary-orange) !important;
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--light-gold);
}

#navbar, .navbar {
  background-color: var(--primary-orange) !important;
  transition: background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(255,124,4,0.08);
}

.navbar.scrolled, #navbar.scrolled {
  background-color: var(--primary-orange) !important;
  box-shadow: 0 2px 10px rgba(255,124,4,0.2);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--deep-brown) !important;
}

.nav-link {
  color: var(--deep-brown) !important;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fff !important;
  background: var(--primary-orange);
  border-radius: 6px;
}

/* WhatsApp Floating Button */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.6rem 1rem;
  box-shadow: 0 4px 12px rgba(77, 0, 17, 0.12);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  z-index: 1050;
  transition: background-color 0.3s;
}

.btn-whatsapp:hover {
  background-color: #1ebe5b;
  color: white;
  text-decoration: none;
}

/* Hero Section */
.hero-swiper {
  width: 100%;
  height: 450px;
  margin-bottom: 2rem;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-content {
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 18px;
  max-width: 700px;
  text-align: center;
  border: 2px solid var(--primary-orange);
  box-shadow: 0 4px 20px rgba(77, 0, 17, 0.05);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(77,0,17,0.12);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--deep-brown);
  margin-bottom: 1.8rem;
  text-shadow: 1px 1px 4px rgba(255,215,161,0.2);
}

/* Buttons */
.order-now-btn {
  background: var(--primary-orange);
  color: #fff;
  border-radius: 30px;
  padding: 0.7rem 2rem;
  font-weight: 700;
  border: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(255,124,4,0.15);
}

.order-now-btn:hover {
  background: var(--light-gold);
  color: var(--deep-brown);
  transform: translateY(-2px) scale(1.04);
}

/* Section Headings */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.section-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--sage-green);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.2px;
}

/* Menu Section */
.laddu-card {
  border-radius: 18px;
  border: 2px solid var(--light-gold);
  box-shadow: 0 4px 20px rgba(255,215,161,0.10);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.laddu-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255,124,4,0.12);
  border-color: var(--primary-orange);
}

.laddu-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.laddu-info {
  padding: 1rem;
  text-align: center;
}

.laddu-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--deep-brown);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.laddu-price {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.laddu-qty-select {
  width: 70px;
  display: inline-block;
  margin-right: 1rem;
}

/* Why Us Section */
.glass-card {
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(255,124,4,0.09);
  border: 2px solid var(--light-gold);
}

.glass-card i {
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.glass-card p {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--deep-brown);
}

/* About Section */
#about img {
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(255,124,4,0.10);
}

/* Benefits Section */
.benefit-card {
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(125,196,151,0.06);
  border: 2px solid var(--sage-green);
  transition: transform 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--primary-orange);
}

.benefit-card i {
  color: var(--sage-green);
  margin-bottom: 0.5rem;
}

/* Testimonials Swiper */
.testimonial-swiper {
  width: 100%;
  height: 200px;
  margin-bottom: 2rem;
}

.swiper-slide .glass-card {
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  color: var(--deep-brown);
  box-shadow: 0 6px 24px rgba(255,124,4,0.08);
  border: 2px solid var(--light-gold);
}

/* FAQs Section */
.faq-question {
  cursor: pointer;
  background: var(--light-gold);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  transition: box-shadow 0.2s;
  font-weight: 600;
  color: var(--deep-brown);
  border: 1px solid #ffedcf;
}

.faq-question.active {
  background: #fff0e3;
  box-shadow: 0 4px 16px rgba(255,124,4,0.07);
  border-color: var(--primary-orange);
}

.faq-answer {
  display: none;
  background: #FFF9F1;
  border-radius: 0 0 8px 8px;
  padding: 0.8rem 1.5rem 1.2rem 2rem;
  color: #7d5c34;
  margin-bottom: 1rem;
  border-left: 3px solid var(--primary-orange);
}

/* Order CTA */
#order {
  background: var(--primary-orange);
  padding: 3rem 1rem;
  border-radius: 18px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 4px 16px rgba(255,124,4,0.08);
}

#order h2, #order .section-title {
  color: #fff;
}

#order .order-now-btn {
  background: #fff;
  color: var(--primary-orange);
  border: 2px solid #fff;
}
#order .order-now-btn:hover {
  background: var(--deep-brown);
  color: #ffd7a1;
  border-color: var(--deep-brown);
}

/* Footer */
footer {
  background-color: var(--deep-brown);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 3rem;
}

footer a {
  color: var(--light-gold);
  margin: 0 0.5rem;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: var(--primary-orange);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .laddu-card {
    margin-bottom: 2rem;
  }
  .benefit-card {
    margin-bottom: 1.5rem;
  }
}
