/* Gallery Section */
.gallery-showcase {
  background: linear-gradient(to bottom right, #0e0e0e, #000000);
  padding: 80px 20px;
  color: #ffd700;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-text h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #ffd700;
  position: relative;
  display: inline-block;
}

.gallery-text h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #ffd700;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

/* Image Styling */
.gallery-images img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
  border: 2px solid transparent;
}

/* Hover Effects */
.gallery-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
  border-color: #ffd700;
  z-index: 2;
}

/* Responsive Padding */
@media (max-width: 768px) {
  .gallery-text h2 {
    font-size: 2.2rem;
  }

  .gallery-images {
    gap: 16px;
  }
}
