
.home-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero/farm1.jpg');
  background-size: cover;
  background-position: center;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display:flex ;
  align-items: center;
  justify-content: center;
}
.text-content {
  text-align: center;
  color: var(--white-1);
  padding: 20px;
}

.text-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 400;
}
.text-content .contact-text{
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
}
.btn{
  padding: 13px 20px;
  background: var(--main-theme-4);
  border: none;
  margin-bottom: 8px;
  cursor: pointer;
}
.btn a{
  color: var(--white-1);
}
.btn:hover{
  background-color: var(--main-theme-4a);
}
.contact-btn{
  font-size: .9rem;
}
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 50px;
}
.about-img img {
  width: 300px;
  height: auto; 
  border-radius: 10px;
}
.about-text p{
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 2.0;
}
.about-text a{
  color: var(--white-1);
}
.about-text .text-max{
  width: 80%;
}
@media screen and (max-width:1024px) {
  .product-info {
    text-align: center;
    padding: 20px 6%;
  }
}
@media screen and (max-width:930px) {
  .products{
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 10px;
  }
  .text-content {
    padding: 20px;
  }
  
  .text-content h1 {
    font-size: 2.7rem;
    margin-bottom: 18px;
  }
  
  .text-content p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .text-content .contact-text{
    font-size: 1.1rem;
  }
}
@media screen and (max-width:890px) {
  .product-info {
    padding: 20px 0%;
  }
  .hero-text h1{
    font-size: 2.6rem;
    margin-bottom: 12px;
  }
  .hero-text p{
    font-size: 1.05rem;
  }
}
@media screen and (max-width:768px) {
  .about {
    flex-direction: column;
  }
  .about-img{
    width: 100%;
    text-align: left;
  }
  .about-text .text-max{
    width: 100%;
  }
}
@media screen and (max-width:630px) {
  .text-content {
    padding: 15px;
  }
  
  .text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
  }
  
  .text-content p {
    font-size: 1.15rem;
    line-height: 1.3;
  }
  .text-content .contact-text{
    font-size: 1.05rem;
  }
  .products{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 6%;
  }
  
}
@media screen and (max-width:480px) {
  .text-content {
    padding: 15px;
    text-align: left;
  }
  .text-content h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  
  .text-content p {
    font-size: .95rem;
    line-height: 1.2;
  }
  .products{
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    padding: 0 3%;
  }
  .product .text{
    padding:8px ;
    font-size: .7rem;
  }
  .product {
    height: 270px;
  }
  .hero-text h1{
    font-size: 2.3rem;
    margin-bottom: 10px;
  }
  .hero-text p{
    font-size: .9rem;
  }
  .about-text p{
    font-size: .8rem;
  }
  .about-img{
    text-align: center;
  }
  .product img {
    width: 100%;
  }
}
@media screen and (max-width:350px) {
  .about-img img {
    width: 100%;
  }
}




