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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;

  /* ONE BACKGROUND IMAGE FOR FULL SITE */
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("farm3.jpg") no-repeat center;
  background-size: cover;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 20px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  height: 90px;
}

.header nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* ================= HERO ================= */
.hero {
  min-height: auto;        /* ✅ vh हटाया */
  padding-top: 90px;       /* ✅ छोटा gap */
  padding-bottom: 16px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  body {
    padding-top: 120px;   /* ✅ HEADER HEIGHT FIX */
  }

  .hero {
    padding-top: 0;
    padding-bottom: 16px;
  }
}


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

.hero p {
  font-size: 1.1rem;
  max-width: 650px;
}

  .img-section {
    padding: 20px 14px;
  }

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  margin: 0px;
  background: #ff9800;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.btn.green {
  background: #2e7d32;
}

/* ================= SECTIONS ================= */
.img-section {
  min-height: auto;        /* ✅ 90vh हटाया */
  padding: 24px 16px;      /* ✅ पहले 60px था */

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


/* ================= CONTENT BOX ================= */
.overlay {
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 36px 26px;
  border-radius: 18px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

/* ================= PRODUCTS ================= */
.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}

.card {
  background: transparent;     /* ✅ white box हट गया */
  border-radius: 18px;
  padding: 12px;
  width: 100%;
  max-width: 300px;
  text-align: center;
}
/* ================= LEGAL STRIP ================= */

.legal-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 14px;
  margin: 20px auto;
  max-width: 900px;
  font-size: 0.85rem;
  color: #e8ffe8;
  opacity: 0.9;
}

.legal-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgb(0, 0, 0);
  padding: 6px 12px;
  border-radius: 16px;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .legal-strip {
    font-size: 0.8rem;
    gap: 10px;
  }
}



/* ================= PRODUCT IMAGE (RESPONSIVE) ================= */
.card img {
  width: 100%;
  height: auto;                /* ✅ natural size */
  max-height: 320px;           /* laptop safe */
  object-fit: contain;         /* ✅ NO CUT, FULL IMAGE */
  border-radius: 14px;
  background: transparent;     /* ✅ white हट गया */
  display: block;
  margin: 0 auto;
}

/* ================= GALLERY ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

/* ================= GALLERY IMAGE (RESPONSIVE) ================= */
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* MOBILE & DESKTOP BOTH PERFECT */
  object-fit: cover;
  border-radius: 14px;
}

/* ================= FOOTER ================= */
footer {
  background: rgba(0,0,0,0.85);
  color: #ccc;
  text-align: center;
  padding: 16px;
}

/* ================= FLOAT BUTTON ================= */
.float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.3rem;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  body {
    background-attachment: scroll;
  }

  .header {
    flex-direction: column;
    gap: 6px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .card {
    max-width: 100%;
  }
}
