/* gallery.css */

.full-gallery {
  background-color: #111; /* charcoal black */
  color: #fff;
  padding: 4rem 0;
}

.full-gallery h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.full-gallery .lead {
  color: #ccc;
  margin-bottom: 2rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
