
<style>
/* Hero Section */
.ST_hero-section {
  position: relative;
  height: 90vh;
  background: url('https://source.unsplash.com/1600x900/?travel,adventure') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ST_hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.ST_hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.ST_hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.ST_hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.ST_hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff7f50;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.ST_hero-btn:hover {
  background-color: #ff5722;
}
</style>
