/* Gallery Page */
.gallery {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}



.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
