/* ============================================================
   Bajaj Food Products — shared stylesheet
   Extracted from index.html + extra classes for inner pages
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
  background: #fff9f2;
  color: #2e241f;
  line-height: 1.5;
}

/* ----- TOP BAR ----- */
.top-bar {
  background: #4f2e12;
  color: #f7e1c1;
  padding: 0.5rem 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  border-bottom: 2px solid #c0763a;
}
.top-bar-left span {
  margin-right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar-left i { color: #ffbc6e; width: 20px; }
.top-bar-right a {
  color: #f7e1c1;
  margin-left: 1.2rem;
  font-size: 1.2rem;
  transition: 0.2s;
  display: inline-block;
}
.top-bar-right a:hover { color: #ffb152; transform: scale(1.15); }

/* ----- HEADER ----- */
.main-header {
  background: #8b4513;
  padding: 0.6rem 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-area a { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 3rem; color: #ffda9e; filter: drop-shadow(2px 2px 0 #5a2e0e); }
.logo-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fbe9d2;
  text-shadow: 2px 2px 0 #5a2e0e;
  line-height: 1.1;
}
.logo-text p { font-style: italic; font-size: 0.9rem; color: #ffdead; letter-spacing: 0.5px; }

.nav-menu { display: flex; flex-wrap: wrap; gap: 0.3rem 1.5rem; align-items: center; }
.nav-menu a {
  color: #fff3e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  transition: 0.2s;
  white-space: nowrap;
}
.nav-menu a:hover { background: #f0c28b; color: #3f280e; transform: scale(1.05); }
.nav-menu a.active { background: #f0c28b; color: #3f280e; }

/* ----- HERO SLIDER (home) — powered up ----- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background: #3b2a1a;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }

/* zooming background (Ken Burns) */
.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.18);
}
.hero-slide.active .hero-bg { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { to { transform: scale(1); } }

/* warm brand gradient overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg,
              rgba(45,22,8,0.92) 0%,
              rgba(59,30,14,0.70) 40%,
              rgba(59,30,14,0.25) 75%,
              rgba(59,30,14,0.10) 100%);
}

/* slide content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: #fff;
}
.hero-content > * { opacity: 0; transform: translateY(34px); }
.hero-slide.active .hero-content > * { animation: heroUp 0.8s cubic-bezier(.2,.7,.3,1) forwards; }
.hero-slide.active .hero-content .eyebrow   { animation-delay: 0.25s; }
.hero-slide.active .hero-content h2         { animation-delay: 0.45s; }
.hero-slide.active .hero-content p          { animation-delay: 0.65s; }
.hero-slide.active .hero-content .hero-cta  { animation-delay: 0.85s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,118,58,0.9);
  color: #fff7ec;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.45rem 1.2rem;
  border-radius: 40px;
  margin-bottom: 1.3rem;
}
.hero-content h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  max-width: 820px;
  text-shadow: 2px 3px 10px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}
.hero-content h2 .accent { color: #ffbc6e; }
.hero-content p {
  font-size: 1.5rem;
  max-width: 640px;
  color: #f5e3cf;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.95rem 2.2rem;
  border-radius: 60px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s;
}
.hero-btn.primary { background: #c0763a; color: #fff; box-shadow: 0 8px 18px rgba(0,0,0,0.35); }
.hero-btn.primary:hover { background: #d98c4a; transform: translateY(-3px); }
.hero-btn.ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: #f7e1c1; }
.hero-btn.ghost:hover { background: #f7e1c1; color: #4f2e12; transform: translateY(-3px); }

/* arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(79,46,18,0.55);
  color: #ffe9cf;
  font-size: 1.3rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: 0.2s;
}
.hero-arrow:hover { background: #c0763a; color: #fff; transform: translateY(-50%) scale(1.1); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

/* dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.7rem;
}
.hero-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #f7e1c1;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: 0.25s;
}
.hero-dots button.active { background: #ffbc6e; border-color: #ffbc6e; width: 38px; border-radius: 8px; }

/* autoplay progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.15);
  z-index: 5;
}
.hero-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #c0763a, #ffbc6e);
}
.hero-progress span.run { animation: heroProgress var(--hero-delay, 6s) linear forwards; }
@keyframes heroProgress { from { width: 0; } to { width: 100%; } }

/* ----- PAGE BANNER (inner pages) ----- */
.page-banner {
  position: relative;
  background: linear-gradient(0deg, rgba(59,42,26,0.78), rgba(59,42,26,0.78)),
              url('https://images.pexels.com/photos/230325/pexels-photo-230325.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  padding: 4rem 4rem;
  text-align: center;
  color: #fff;
  border-bottom: 6px solid #c0763a;
}
.page-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px #000;
  margin-bottom: 0.4rem;
}
.page-banner .crumbs { font-size: 1.05rem; color: #ffdcb0; }
.page-banner .crumbs a { color: #ffdcb0; text-decoration: none; }
.page-banner .crumbs a:hover { color: #fff; }

/* ----- FULL WIDTH CONTAINERS ----- */
.full-width-bg { width: 100%; background: #fef6ec; }
.full-width-bg.alt { background: #fffaf3; }
.wide-section { max-width: 1400px; margin: 0 auto; padding: 4rem 4rem; }

/* ----- ABOUT ----- */
.about-flex { display: flex; flex-wrap: wrap; gap: 3.5rem; align-items: center; }
.about-img {
  flex: 1 1 380px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 30px -10px rgba(92, 51, 23, 0.3);
}
.about-img img { width: 100%; height: auto; display: block; }
.about-text { flex: 1 1 450px; }
.about-text h2 {
  font-size: 2.8rem;
  color: #5d2e0f;
  border-left: 12px solid #d98c4a;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.about-text p { font-size: 1.2rem; color: #3f2d1b; margin-bottom: 1rem; }

/* business info grid */
.business-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2rem;
  background: #f5e5d5;
  padding: 2rem;
  border-radius: 32px;
  margin-top: 2rem;
  border: 1px solid #dbb68c;
}
.info-item { display: flex; align-items: baseline; gap: 8px; font-size: 1.1rem; }
.info-item i { color: #8b4513; width: 28px; font-size: 1.3rem; }
.info-item strong { color: #4f2e12; min-width: 130px; font-weight: 600; }
.info-item span { color: #2e241f; }

/* ----- STAT / VALUE CARDS ----- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.8rem;
  margin-top: 1rem;
}
.stat-card {
  background: white;
  border-radius: 32px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 15px 25px rgba(115, 70, 28, 0.15);
  border: 1px solid #f5ddc4;
  transition: 0.2s;
}
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 28px 36px -8px #966f44; }
.stat-card i { font-size: 2.6rem; color: #b97c44; margin-bottom: 0.8rem; }
.stat-card h3 { font-size: 2.4rem; color: #5d2e0f; }
.stat-card p { font-size: 1.05rem; color: #7b5a3b; margin-top: 0.3rem; }

/* ----- SECTION TITLE ----- */
.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  color: #4f2e12;
  position: relative;
}
.section-title:after { content: '🍪'; display: block; font-size: 2.2rem; opacity: 0.5; }

/* ----- PRODUCT GRID ----- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin: 2rem 0 0.5rem; }
.product-card {
  background: white;
  border-radius: 32px;
  padding: 1.8rem 0.8rem 1.4rem;
  text-align: center;
  box-shadow: 0 15px 25px rgba(115, 70, 28, 0.15);
  transition: 0.2s;
  border: 1px solid #f5ddc4;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 28px 36px -8px #966f44; }
.product-card img {
  width: 250px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  border: 5px solid #ebcba0;
  margin-bottom: 1rem;
}
.product-card h3 { font-size: 1.6rem; color: #633c18; margin: 0.5rem 0 0.2rem; }
.product-card p { font-size: 1rem; color: #7b5a3b; }

/* ----- TESTIMONIALS ----- */
.testimonials-wrapper { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; }
.testimonial-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.testimonial {
  background: #fffcf5;
  border-radius: 50px 50px 50px 10px;
  padding: 2rem 2rem 1.5rem;
  max-width: 320px;
  box-shadow: 20px 20px 30px rgba(171, 116, 54, 0.1);
  border: 1px solid #f3dbbf;
}
.testimonial i { color: #b97c44; font-size: 2rem; margin-bottom: 0.8rem; }
.testimonial p { font-style: italic; font-size: 1.1rem; }
.testimonial h4 { margin-top: 1.5rem; color: #5d3e24; }

/* ----- CONTACT + ENQUIRY ----- */
.contact-fullwidth { width: 100%; background: #ead7c0; padding: 3rem 4rem; margin: 2rem 0 0; }
.contact-flex { max-width: 1300px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 3rem; }
.contact-info {
  flex: 1 1 300px;
  background: #e2cfb5;
  padding: 2rem;
  border-radius: 40px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.contact-info h3 { font-size: 1.8rem; color: #311e0e; margin-bottom: 1.5rem; }
.contact-info p { margin: 1rem 0; font-size: 1.1rem; }
.contact-info i { width: 32px; color: #7b4d26; }

.enquiry-full { flex: 2 1 450px; }
.enquiry-full h3 { font-size: 2.2rem; color: #311e0e; margin-bottom: 1.8rem; font-weight: 600; }
.form-row { margin-bottom: 1.2rem; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 60px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.2s;
  font-family: inherit;
  color: #2e241f;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid #b7611e;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(172, 92, 23, 0.2);
}
.form-row textarea { border-radius: 30px; resize: vertical; }
.form-row label { display: block; margin: 0 0 0.5rem 1.5rem; font-weight: 600; color: #4f2e12; font-size: 1rem; }

/* two-column form rows for wider forms (distributor) */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1.5rem; }
.form-grid .full { grid-column: 1 / -1; }

.btn-full {
  background: #8b4513;
  color: white;
  font-weight: 700;
  border: none;
  padding: 1rem 2.8rem;
  border-radius: 60px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 6px 12px #5a3a1f;
  margin-top: 0.5rem;
}
.btn-full:hover { background: #b35f28; transform: scale(1.02); box-shadow: 0 10px 18px #965d2a; }

/* card wrapper for forms placed on light bg */
.form-card {
  background: #fffcf5;
  border: 1px solid #f3dbbf;
  border-radius: 40px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(115, 70, 28, 0.12);
  max-width: 900px;
  margin: 0 auto;
}
.form-card .form-row input,
.form-card .form-row select,
.form-card .form-row textarea { background: #fff; }

/* map embed */
.map-embed {
  width: 100%;
  border: 0;
  border-radius: 32px;
  box-shadow: 0 15px 25px rgba(115, 70, 28, 0.15);
  min-height: 360px;
}

/* simple lead paragraph */
.lead { font-size: 1.25rem; color: #3f2d1b; max-width: 900px; margin: 0 auto 1rem; text-align: center; }

/* ----- FOOTER ----- */
footer {
  background: #342015;
  color: #f0dbc4;
  padding: 3rem 4rem 1.5rem;
  border-top: 8px solid #c0763a;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2.5rem;
}
.footer-col ul { margin-top: 1rem; }
.footer-col li { list-style: none; margin: 0.6rem 0; }
.footer-col a { color: #edd7b9; text-decoration: none; }
.footer-col a:hover { color: #ffb977; }
.footer-logo h2 { color: #fcd7a2; font-size: 2.2rem; }
.social-icons { display: flex; gap: 1.2rem; margin-top: 1.5rem; font-size: 1.6rem; }
.social-icons a { color: #edd7b9; }
.social-icons a:hover { color: #ffb977; }
.copyright { text-align: center; margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid #785e41; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .wide-section { padding: 3rem 2rem; }
}
@media (max-width: 800px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar, .main-header, .contact-fullwidth, .page-banner { padding: 0.8rem 1.5rem; }
  .hero-slider { height: 480px; }
  .hero-content { padding: 0 1.5rem; }
  .hero-content h2 { font-size: 2.4rem; }
  .hero-content p { font-size: 1.15rem; }
  .hero-arrow { width: 44px; height: 44px; font-size: 1.1rem; }
  .hero-arrow.prev { left: 0.6rem; }
  .hero-arrow.next { right: 0.6rem; }
  .page-banner h1 { font-size: 2.2rem; }
  .business-info { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
