@font-face {
    font-family: "Lora";
    src: url("fonts/Lora/Lora-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }
img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}
button{
    border: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Lora', serif;
  background: linear-gradient(135deg, #f5f7e9 0%, #e8f0d8 100%);
  color: #2e3b1e;
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
header {
  background: linear-gradient(90deg, #4a7043 0%, #2e3b1e 100%);
  color: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo{
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #d4e157;
}
.burger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}
section {
  padding: 80px 0;
}
.section-top{
    padding-top: 130px;
}
h2, h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 20px 0 10px;
}
p {
  font-size: 1rem;
  margin-bottom: 15px;
}
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: #d4e157;
  color: #2e3b1e;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.hero {
  height: 100vh;
  max-height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('image/banner.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 59, 30, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}
.about {
  background: #fff;
}
.about .container{
  display: flex;
  align-items: center;
  gap: 40px;
}
.about img {
  width: 50%;
  border-radius: 20px;
}
.story {
  background: url('image/delivery.webp') top center/cover no-repeat;
  color: #fff;
  position: relative;
  padding: 100px 0;
}
.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 59, 30, 0.7);
}
.story .container {
  position: relative;
  z-index: 1;
}
.products {
  background: #f5f7e9;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
  padding-bottom: 15px;
}
.product-card:hover {
  transform: translateY(-10px);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card h3 {
  font-size: 1.5rem;
  margin: 20px;
}
.product-card p {
  margin: 0 20px 20px;
  font-size: 1rem;
}
.product-card .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4a7043;
  margin: 0 20px 20px;
}
.product-card a{
  margin-left: 20px;
}
.recipes .recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.new-products {
      background: #fff;
      text-align: center;
    }
    .new-products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
.recipe-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.recipe-card:hover {
  transform: translateY(-5px);
}
.recipe-card i {
  font-size: 2rem;
  color: #d4e157;
  margin-bottom: 10px;
}
.recipe-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.more-products {
      background: #fff;
      text-align: center;
    }
    .more-products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
.accordion {
  max-width: 800px;
  margin: 40px auto 0;
}
.accordion-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #d4e157;
}
.accordion-header {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.accordion-content {
  display: none;
  padding: 15px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.accordion-item.active .accordion-content {
  display: block;
}
.sustainability {
  background: #f5f7e9;
}
.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.sustainability-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.sustainability-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.testimonials .rating {
    padding: 10px 20px;
  color: #d4e157;
  margin-bottom: 10px;
}
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact input, .contact textarea {
  padding: 15px;
  border: 1px solid #d4e157;
  border-radius: 10px;
}
.contact textarea {
  resize: vertical;
}
.contact .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.featured {
  background: #fff;
  text-align: center;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.benefits {
  background: url('image/farmer4.webp') top center/cover no-repeat;
  color: #fff;
  position: relative;
  padding: 150px 0;
}
.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 59, 30, 0.7);
}
.benefits .container {
  position: relative;
  z-index: 1;
}
.benefits ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}
.benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.benefits i {
  color: #d4e157;
  font-size: 1.5rem;
}
.process {
  background: #f5f7e9;
}
.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.process-step {
  flex: 1 1 300px;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.process-step i {
  font-size: 2rem;
  color: #d4e157;
  margin-bottom: 15px;
}
.categories {
  text-align: center;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card:hover img {
  transform: scale(1.1);
}
.category-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 59, 30, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-card:hover .overlay {
  opacity: 1;
}
.highlight {
  background: linear-gradient(135deg, #4a7043 0%, #2e3b1e 100%);
  color: #fff;
  text-align: center;
}
.highlight img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  margin: 20px auto;
  display: block;
}
.bundles {
  background: #f5f7e9;
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.bundle-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.bundle-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.bundle-card .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4a7043;
  margin-bottom: 20px;
}
.farmer-profiles {
  background: #f5f7e9;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.profile-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
.profile-card:hover {
  transform: translateY(-10px);
}
.profile-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.profile-card h3 {
  font-size: 1.5rem;
  margin: 20px;
}
.profile-card p {
  margin: 0 20px 20px;
  font-size: 1rem;
}
.mission {
  background: url('image/farm.webp') center/cover no-repeat;
  color: #fff;
  position: relative;
  padding: 100px 0;
}
.mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 59, 30, 0.7);
}
.mission .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.mission ul {
  list-style: none;
  max-width: 800px;
  margin: 20px auto 0;
}
.mission li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.mission i {
  color: #d4e157;
  font-size: 1.5rem;
}
.farmer-stories {
  background: #f5f7e9;
  text-align: center;
}
.story-card {
  max-width: 800px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.story-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.training {
  text-align: center;
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.training-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.training-card i {
  font-size: 2rem;
  color: #d4e157;
  margin-bottom: 15px;
}
.impact {
  background: #fff;
  text-align: center;
}
.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}
.stat-card {
  flex: 1 1 200px;
  background: #f5f7e9;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.stat-card h3 {
  font-size: 2rem;
  color: #4a7043;
}
.community {
  background: linear-gradient(135deg, #4a7043 0%, #2e3b1e 100%);
  color: #fff;
  text-align: center;
}
.community p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}
.future {
  background: #f5f7e9;
  text-align: center;
}
.future img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  margin: 20px auto;
  display: block;
}
.practices {
  background: #f5f7e9;
}
.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.practice-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.practice-card i {
  font-size: 2rem;
  color: #d4e157;
  margin-bottom: 15px;
}
.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.stat-card {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.stat-card h3 {
  font-size: 2rem;
  color: #d4e157;
}
.initiatives {
  text-align: center;
}
.initiative-card {
  max-width: 800px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
}
.initiative-card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.packaging {
  background: #f5f7e9;
  text-align: center;
}
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.packaging-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.packaging-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.partnerships {
  background: #fff;
  text-align: center;
}
.partnerships ul {
  list-style: none;
  max-width: 800px;
  margin: 20px auto 0;
}
.partnerships li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.partnerships i {
  color: #d4e157;
  font-size: 1.5rem;
}
.carbon {
  background: linear-gradient(135deg, #4a7043 0%, #2e3b1e 100%);
  color: #fff;
  text-align: center;
}
.carbon p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}
ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}
ul li {
  font-size: 1rem;
}
.thank-you  {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.thank-you .container {
  text-align: center;
}
.thank-you p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
footer {
  background: linear-gradient(90deg, #4a7043 0%, #2e3b1e 100%);
  color: #fff;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.footer-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.footer-grid a {
  color: #d4e157;
  text-decoration: none;
}
.footer-grid a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }
  nav {
    display: none;
    position: fixed;
    top: 91px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2e3b1e;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  nav.active {
    display: flex;
  }
  nav ul {
    flex-direction: column;
    text-align: center;
  }

  nav ul li a {
    font-size: 1.5rem;
  }
  h2, h1 {
    font-size: 2rem;
  }
  .container{
    padding: 0 10px;
  }
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
  }
  body.no-scroll {
    overflow: hidden;
  }
  .about .container{
    flex-direction: column;
  }
  .hero-content h1{
    font-size: 2.5rem;
  }
  .about img {
    width: 100%;
  }
  .hero-content h2 {
    font-size: 2.5rem;
  }
  .initiative-card {
    flex-direction: column;
    text-align: center;
  }
  .initiative-card img {
    width: 100%;
  }
}