.gallery-section {
  padding: 100px 60px;
  text-align: center;
  background: #fff;
}

.gallery-section h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.gallery-intro {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.gallery-grid {
  display: grid;
  gap: 15px;

  grid-template-columns: repeat(3, 1fr);
}

/* IMAGE */
.gallery-item {
  width: 100%;
  height: 250px;

  overflow: hidden;
  border-radius: 12px;

  cursor: pointer;

  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.4s ease;
}

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

/* BUTTONS */
.gallery-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.view-more-btn,
.view-less-btn {
  padding: 12px 25px;

  border: none;
  cursor: pointer;

  background: #d4af37;
  color: white;

  border-radius: 8px;
}

.view-less-btn {
  display: none;
}

/* MODAL */
.image-modal {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.9);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

.image-modal.active {
  display: flex;
}

.modal-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;

  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .gallery-section {
    padding: 60px 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}