
/* Full width carousel */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  max-width: none;
  padding: 0;
}

.carousel {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.carousel .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Ensure carousel items take full width */
.carousel-item {
  width: 100%;
  min-height: 500px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 350px;
  }
  
  .carousel .container h1 {
    font-size: 1.8rem !important;
  }
  
  .carousel .container p {
    font-size: 1rem !important;
  }
}
