/* Enhanced Gallery Styling */

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
}

.gallery-item img {
  transition: all 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(250, 208, 61, 0.8);
  color: #333;
  padding: 10px;
  transform: translateY(100%);
  transition: all 0.3s ease;
  font-weight: 600;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Enhanced Page Banner */
.page-banner {
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.page-banner .row {
  background: linear-gradient(135deg, #fad03d, #f5c000) !important;
  min-height: 200px;
}

.page-banner h1 {
  color: #333;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* Enhanced Section Titles */
.title-section {
  font-weight: 800;
  position: relative;
  margin-bottom: 20px;
}

.divider {
  height: 3px;
  width: 60px;
  background-color: #fad03d;
  border-radius: 3px;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.title-section:hover + .divider,
.divider:hover {
  width: 100px;
}

/* Fade-in Animation */
.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }
}
