/* ============================================================
   Baltz Widgets – Banner
   ============================================================ */

.baltz-banner {
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #1a1a2e;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.baltz-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.baltz-banner__content {
  position: relative;
  z-index: 2;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding: 3rem 0;
}

.baltz-banner__eyebrow {
  font-size: 1em;
  color: #fea82f;
  margin-bottom: 0.5rem;
  font-weight: 600;
  padding-bottom: 20px;
}

.baltz-banner__heading {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 35px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: inherit;
}

.baltz-banner__btn-wrap {
  display: flex;
  justify-content: center;
}

/* Banner button override – white pill */
.baltz-banner .baltz-hero-button {
  background: #fff;
  border-color: transparent;
  color: #343a69;
}

.baltz-banner .baltz-hero-button:hover {
  color: #fff;
  border-color: #FEA82F;
}

/* Fade-in animations */
.baltz-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: baltzFadeInUp 0.9s ease forwards;
}

.baltz-delay-1 { animation-delay: 0.2s; }
.baltz-delay-2 { animation-delay: 0.4s; }
.baltz-delay-3 { animation-delay: 0.6s; }

@keyframes baltzFadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .baltz-banner__content {
    width: 90%;
  }

  .baltz-banner__heading {
    font-size: 1.8rem;
  }

  .baltz-banner {
    background-attachment: scroll;
  }
}
