/* ===============================
   MILASTY – Nutrition Transparency
================================ */

body {
  background: #faf8f5;
}

/* HEADER */
.nutrition-header {
  text-align: center;
  padding: 90px 20px 60px;

  max-width: 900px;
  margin: auto;
}

.nutrition-header {
  background: linear-gradient(
    rgba(255,255,255,0.92),
    rgba(250,248,245,1)
  );
}


.nutrition-header h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;

  color: #2a1a12;
}

.nutrition-header p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);

  max-width: 720px;
  margin: auto;
}

/* MAIN CONTAINER */
.nutrition-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px 80px;
}

.nutrition-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;

  color: #2a1a12;
}

.nutrition-subtext {
  font-size: 1rem;
  opacity: 0.75;
  margin-bottom: 35px;
}

/* REPORT GRID */
.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* REPORT CARD */
.report-card {
  background: white;
  border-radius: 22px;
  padding: 28px;

  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: transform 0.25s ease;
}

.report-card:hover {
  transform: translateY(-4px);
}

.report-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;

  color: #2a1a12;
}

.report-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;

  margin-bottom: 18px;
}

/* BUTTON */
.report-btn {
  display: inline-block;

  padding: 10px 18px;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;

  text-decoration: none;

  background: linear-gradient(90deg, #d8a24a, #c98b2c);
  color: white;

  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.report-btn:hover {
  opacity: 0.92;
}

/* FOOTER CTA */
.nutrition-footer {
  text-align: center;
  padding: 70px 20px;

  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.nutrition-footer h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;

  color: #2a1a12;
}

.nutrition-footer p {
  max-width: 700px;
  margin: auto;

  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.75;
}

/* BACK BUTTON */
.back-btn {
  display: inline-block;
  margin-top: 25px;

  padding: 12px 22px;
  border-radius: 999px;

  border: 1px solid rgba(0,0,0,0.15);
  text-decoration: none;

  font-weight: 600;
  color: #2a1a12;
}

.back-btn:hover {
  background: rgba(0,0,0,0.05);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
  .nutrition-header h1 {
    font-size: 2.3rem;
  }

  .report-card {
    padding: 22px;
  }
}


/* ===============================
   Nutrition Page Hero Banner
================================ */

.nutrition-hero {
  position: relative;
  min-height: 70vh;

  background-image: url("images/HERO_2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 20px;
  text-align: center;
}

/* Soft Overlay */
.nutrition-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.25);
}

/* Glass Content Box */
.nutrition-hero-content {
  position: relative;
  z-index: 2;

  max-width: 750px;
  padding: 60px 55px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 25px 70px rgba(0,0,0,0.30);

  color: white;
}

/* Title Styling */
.nutrition-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 18px;

  text-shadow: 0 6px 18px rgba(0,0,0,0.65);
}

/* Subtitle Text */
.nutrition-hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;

  opacity: 0.92;
  text-shadow: 0 3px 12px rgba(0,0,0,0.55);
}



.nutrition-footer {
  text-align: center;
  padding: 70px 20px;

  background: linear-gradient(
    180deg,
    #5a3522,
    #3b1f14
  );

  border-top: 1px solid rgba(255,255,255,0.12);
}

.nutrition-footer h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: white;
}

.nutrition-footer p {
  max-width: 700px;
  margin: auto;

  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.back-btn {
  display: inline-block;
  margin-top: 25px;

  padding: 12px 22px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;

  font-weight: 600;
  color: white;
}

.back-btn:hover {
  background: rgba(255,255,255,0.12);
}


.nutrition-link {
  margin-top: 40px;
  font-size: 15px;
  color: #5a4a3f;
  text-align: center;
}

.nutrition-link a {
  color: #8a5a2b;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(138,90,43,0.4);
  transition: all 0.25s ease;
}

.nutrition-link a:hover {
  color: #6e441f;
  border-bottom: 1px solid #6e441f;
}



@media (max-width: 600px) {

  .nutrition-link {
    font-size: 14px;
    padding: 0 18px;
  }

}

@media (max-width: 600px) {

  .nutrition-hero {
    min-height: 60vh;
    padding: 60px 18px;
  }

  .nutrition-hero-content {
    padding: 45px 22px;
    border-radius: 20px;
  }

  .nutrition-hero-content p {
    font-size: 1.05rem;
  }
}



/* ===============================
   FOOTER (MILASTY PREMIUM)
================================ */
.site-footer {
  background: #5a3f24;
  color: white;
  text-align: center;
  padding: 30px 14px;
  font-size: 0.92rem;
}

/* Footer Links */
.site-footer a {
  color: #ffd7a8 !important;
  font-weight: 500;
  text-decoration: none;
}

.site-footer a:visited {
  color: #ffd7a8 !important;
}

.site-footer a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* FSSAI Block */
.footer-fssai {
  margin-top: 18px;
}

.fssai-logo {
  width: 85px;
  height: auto;
  display: block;
  margin: auto;
}
/* ✅ Footer Logo Top Center */
.footer-logo-wrap {
  margin-bottom: 14px;
}

.footer-logo {
  width: 85px;       /* Premium size */
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.97;
}


.fssai-number {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Footer links row */
.footer-links {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.6;
}

.footer-links a {
  color: #ffd7a8 !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  opacity: 0.5;
}

@media (max-width: 650px) {

  .footer-links {
    flex-direction: column; /* ✅ Stack links vertically */
    gap: 6px;
  }

  .footer-links span {
    display: none; /* ✅ Remove separators on mobile */
  }

  .footer-links a {
    font-size: 0.95rem;
  }
}

@media (max-width: 650px) {

  .footer-logo {
    width: 70px;  /* Smaller on mobile */
  }
}

