/* --- Gallery container --- */
.gallery {
  margin: 2rem 0;
}

.gallery-main {
  text-align: center;
  margin-bottom: 1rem;
}

.gallery-main img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.gallery-main img:hover {
  transform: scale(1.02);
}

/* --- Thumbnails --- */
.gallery-thumbs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-thumbs img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.gallery-thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Active thumbnail */
.gallery-thumbs img.active {
  border: 2px solid var(--accent-color, #e67e22);
  opacity: 1;
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
  .gallery-thumbs img {
    width: 90px;
    height: 60px;
  }
}
