/* GALLERY SECTION */
.gallery-section {
  padding: 100px 20px;
  background: #0d0d0d;
  color: #fff;
  text-align: center;
}

.gallery-section h1 {
  font-size: 2.5rem;
  color: #f1c40f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.video-gallery {
  margin-top: 60px;
}

.video-gallery h2 {
  font-size: 1.8rem;
  color: #f1c40f;
  margin-bottom: 20px;
}

.video-gallery video {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
