/* GALLERY PAGE */
.gallery-section {
  padding: 100px 10%;
  background-color: #f5f9f7;
  min-height: 100vh;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h1 {
  color: #1d7044;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.gallery-header p {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-section {
    padding: 80px 5%;
  }
  .gallery-header h1 {
    font-size: 1.8rem;
  }
}
