:root{
  --agro-green:#2f7d32;
  --agro-green-dark:#1f5d24;
  --agro-green-light:#eaf5ea;
  --agro-text:#1f1f1f;
  --agro-muted:#6b7280;
  --agro-white:#ffffff;
}

/* GALLERY HERO */
.agro-gallery-hero{
  background: linear-gradient(rgba(31, 93, 36, 0.75), rgba(47, 125, 50, 0.75)),
              url("images/gallery-banner.jpg") center/cover no-repeat;
  padding: 110px 0 90px;
  color: var(--agro-white);
  text-align: center;
}

.agro-gallery-hero-content h1{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.agro-gallery-hero-content p{
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.agro-gallery-section{
  background: #f8fbf6;
}

.agro-gallery-card{
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.agro-gallery-img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.agro-gallery-card:hover .agro-gallery-img{
  transform: scale(1.08);
}

/* Lightbox */
.agro-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.agro-lightbox.active{
  display: flex;
}

.agro-lightbox-img{
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  animation: zoomIn 0.3s ease;
}

.agro-lightbox-close{
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 38px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-weight: 700;
}

@keyframes zoomIn{
  from{
    transform: scale(0.7);
    opacity: 0;
  }
  to{
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 767px){
  .agro-gallery-img{
    height: 170px;
  }

  .agro-lightbox-img{
    max-width: 95%;
    max-height: 75vh;
  }

  .agro-lightbox-close{
    top: 12px;
    right: 18px;
    font-size: 32px;
  }
}

/* RESPONSIVE */
@media (max-width: 991.98px){
  .agro-gallery-hero{
    padding: 90px 0 75px;
  }

  .agro-gallery-hero-content h1{
    font-size: 34px;
  }

  .agro-gallery-img{
    height: 220px;
  }
}

@media (max-width: 767.98px){
  .agro-gallery-hero{
    padding: 75px 0 60px;
  }

  .agro-gallery-hero-content h1{
    font-size: 28px;
  }

  .agro-gallery-hero-content p{
    font-size: 14px;
  }

  .agro-gallery-img{
    height: 180px;
  }

  .agro-lightbox-img{
    max-width: 96%;
    max-height: 78vh;
  }

  .agro-lightbox-close{
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}

@media (max-width: 575.98px){
  .agro-gallery-img{
    height: 150px;
  }

  .agro-gallery-card{
    border-radius: 14px;
  }
}