/* Banner styles */
.banner {
  width: 100%;
  height: 500px;
  background-image: url('/images/banner.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 70px; /* Adjust based on header height */
}

.banner-content {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .banner {
    height: 500px;
    margin-top: 80px;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 400px;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
}

/* Adjust main content to accommodate banner */
main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
