.page-content {
    margin: 50px auto;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 10px;
    }
}

.gallery-section{
  width: 100%;
  text-align: center;
  margin: 0;
}


.gallery-title h2 {
  font-family: 'chewy', sans-serif;
  font-weight: 100;
  color: var(--dark-blue);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 2.5rem;
}

.filter-buttons {
  text-align: center;
  margin-bottom: 2rem;
}

.filter-buttons button {
  background: var(--dark-blue);
  color: white;
  border: none;
  margin: 0.2rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filter-buttons button:hover,
.filter-buttons .active {
  background: #003d99;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}


/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: var(--radius);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
