/* Hero Section */
.home {
  position: relative;
  width: 100%;
  min-height: 500px;      /* adjust height as needed */
  overflow: hidden;
}

/* Slides */
.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto;  /* full width, keep aspect ratio */
  background-position: top center; /* align top */
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

/* Show active slide */
.bg-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Text Overlay */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  z-index: 2;
}

.hero-text h1 {
  font-size: 3em;
  margin: 0;
}

.hero-text h2 {
  font-size: 1.8em;
  margin: 10px 0 0;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .home {
    min-height: 300px;
  }
  .hero-text h1 {
    font-size: 2em;
  }
  .hero-text h2 {
    font-size: 1.2em;
  }
}