.banner-module {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  width: 100%;
  display: block;
  text-decoration: none;
}

.banner-module__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-module__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.banner-module__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 500px;
  padding: 2rem 3rem;
}

.banner-module__title {
  font-family: "Raleway", Sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
}

.banner-module__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
}

.banner-module__cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: #c8a84b;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.banner-module__cta:hover {
  background-color: #a8882e;
}

@media (max-width: 768px) {
  .banner-module,
  .banner-module__content {
    min-height: 300px;
  }

  .banner-module__content {
    padding: 1.5rem;
  }
}
