.bg-gradient {
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hover-shadow {
  transition: transform 0.2s, box-shadow 0.2s;
}

.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Hero Carousel Styles */
#heroCarousel {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#heroCarousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 5%;
  opacity: 0.8;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  opacity: 1;
}

#heroCarousel .carousel-indicators {
  margin-bottom: 1.5rem;
}

#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
}

#heroCarousel .carousel-indicators button.active {
  background-color: #fff;
  border-color: #fff;
}

.hero-slide {
  padding: 4rem 0;
}

