/* custom.css */

/* Responsive banner height for small screens */
.banner-hero {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.banner-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 15px;
  border-radius: 8px;
  max-width: 750px;
}

@media (max-width: 768px) {
  .banner-hero {
    height: 160px;
  }

  .banner-content h1 {
    font-size: 1.2rem !important;
  }

  .banner-content p {
    font-size: 0.8rem;
  }

  .banner-content .btn {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}