.gallery-page {
  padding-top: 6rem;
  text-align: center;
  background-color: #0b1528;
  color: white;
}

.gallery-title {
  color: #a276ff;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.filter-panel label {
  color: white;
}

.gallery-category-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.gallery-box {
  display: block;
  width: 260px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  background: #1a2238;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.gallery-box:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.gallery-box img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-box .caption {
  padding: 1rem;
}

.caption h3 {
  margin: 0.5rem 0;
  color: white;
}

.caption p {
  font-size: 0.9rem;
  color: #ccc;
}