.gallery {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery img {
  flex: 0 0 auto;
  width: auto;
  max-height: clamp(200px, 50vh, 400px);
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

section#gallery h3 {
  margin: 40px 20px 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #444;
  font-family: 'Dancing Script', cursive;
}

.category {
  margin-bottom: 40px;
}

.category-header {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
}

.category-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(60%);
  transition: filter 0.3s ease;
}

.category-header:hover img {
  filter: brightness(70%);
}

.category-header span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Dancing Script', cursive;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 2;
  text-align: center;
}

.hidden {
  display: none;
}
