/* Gallery Image Styling */
.example-image-link img {
  height: 200px;
  width: 100%;
  margin: 10px 0;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.example-image-link img:hover {
  transform: scale(1.02);
}

/* Fix top spacing so images don't touch header */
.gallery-section {
  margin-top: 80px;
}

/* Ensure 2 images per row on desktop, 1 on mobile */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
