/* ===== Gallery Toggle Buttons ===== */
.gallery-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  width: 100%;
}

.gallery-toggle button {
  appearance: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  background: #eee;
}

.gallery-toggle button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* ===== Gallery Layout ===== */
.gallery-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.gallery-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* ===== Galleries ===== */
section.galleries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Responsive layout */
@media (max-width: 1024px) {
  section.galleries {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section.galleries {
    grid-template-columns: 1fr;
  }
}

/* Toggle visibility (SAFE, NO ANIMATION) */
section.galleries.hidden {
  display: none;
}

