.hero {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: #ffffff;
  line-height: var(--compact);
}

.hero-title {
  margin: 0 0 8px 0;
  font-family: var(--title);
  font-size: 2.6rem;
  font-weight: var(--bold);
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  margin: 0;
  font-family: var(--title);
  font-size: var(--xl);
  font-weight: var(--thin);
  opacity: 0.9;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
  .hero-text {
    padding: 20px 24px;
  }
  .hero-title {
    font-size: var(--xxl);
  }
  .hero-subtitle {
    font-size: var(--large);
  }
}

/*# sourceMappingURL=hero.css.map */