.hero-banner {
  position: relative;
  height: 50vh;
  min-height: 350px;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-banner__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.hero-banner__content {
  color: white;
  text-align: center;
}
.hero-banner__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}
.hero-banner__subtitle {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e53935;
}
.hero-banner__description {
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.95;
}
.hero-banner__button {
  display: inline-block;
  background: #e53935;
  color: white;
  margin-top: 30px;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  border: 2px solid #e53935;
}
.hero-banner__button:hover {
  background: transparent;
  color: #e53935;
  border-color: #e53935;
  transform: translateY(-1px);
}
/*# sourceMappingURL=style.css.map */