body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
}

/* Heading */
h1 {
  text-align: center;
  margin: 2rem 0;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Masonry Gallery */
.gallery-container {
  column-count: 4;
  column-gap: 1rem;
  padding: 0 1rem 3rem;
}

@media (max-width: 1200px) {
  .gallery-container {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .gallery-container {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gallery-container {
    column-count: 1;
  }
}

.gallery-item {
  position: relative;
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--primary-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

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

/* Modal */
.modal-content {
  background-color: var(--primary-light);
  border-radius: 10px;
}

.modal-body img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 576px) {

  h1 {
    font-size: 1.6rem;
  }
}