/*  style/banner.css  */

/* ===== Banner Styles (banner.css) ===== */

.page-banner {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-bottom: 2rem;
  border-bottom: 5px solid #0f0707;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.4);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff !important;
  text-align: center;
  max-width: 800px;
  padding: 1rem;
  z-index: 2;
  border-radius: 10px;
}

.hero-overlay h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: #fff !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-overlay p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
