body {
  background: #f8f8f8;
}

.gallery-heading {
  text-align: center;
  margin: 60px 40px;
}

.gallery-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #6b2e00;
}

.category-title {
  font-size: 26px;
  font-weight: 600;
  color: #6b2e00;
  margin: 50px 0 25px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 5px;
}

.gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Modal Image */
.modal-img {
  width: 100%;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-heading {
    margin-top: 45% !important;
  }
}
