.hero-section__wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.hero-section__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-section__content {
  text-align: center;
  /* color: #3b3a4d; */
  color: #fff;
  padding: 2rem;
  z-index: 1;
  max-width: 90%;
  /* background-color: #ffffff5f; */
  /* text-shadow: 0 0 1px #ffffff; */
}

.hero-section__title {
  font-size: 4.5rem;
  margin-bottom: 1rem;
}

.hero-section__subtitle {
  text-wrap: wrap;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.hero-section__button {
  background-color: #ff9900;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
  /* box-shadow: 0 0 20px 5px #fff; */
}

.hero-section__button:hover {
  background-color: #c75103;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section__wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
  }
  .hero-section__title {
    font-size: 2.5rem;
  }
  .hero-section__subtitle {
    font-size: 1.2rem;
  }
}
