/* Hero Carousel Styles - Full Width */
.hero-carousel {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 400px;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-content h2 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  font-weight: bold;
}

.carousel-content p {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.carousel-content a {
  color: white;
  text-decoration: none;
}

.carousel-content a:hover {
  text-decoration: underline;
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-indicator.active {
  background: white;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.carousel-nav:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 300px;
  }
  
  .carousel-content h2 {
    font-size: 1.5rem;
  }
  
  .carousel-content p {
    font-size: 1rem;
  }
  
  .carousel-content {
    padding: 1rem;
  }
}
