.home-hero {
  background: black;
  position: relative;
}

.home-hero .video-container {
  padding: 56% 0 0 0;
  position: relative;
  opacity: 0.6;
}

.home-hero .content-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  text-align: center;
  max-width: 800px;
}

.home-hero .home-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.home-hero .home-hero-logo h2 {
  font-family: var(--font-family);
  font-size: 2.5rem;
  color: var(--white);
  text-transform: uppercase;
}

.home-hero .home-hero-logo img {
  height: 170px;
  width: 100%;
  max-width: 170px;
}

.home-hero .home-hero-logo h2 {
  color: var(--white);
  margin: 0;
  font-weight: 700;
}

.cta-container {
  margin-top: 20px;
}

.cta-container__subtitle {
  margin-bottom: 20px;
  font-family: "Revans", sans-serif;
}

@media screen and (max-width: 768px) {
  .home-hero .video-container {
    height: 75vh;
    padding: 0;
    overflow: hidden;
  }

  .home-hero .video-container iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 177.78vh !important; /* 16:9 ratio — always covers viewport height */
    height: 100% !important;
    min-width: 100%;
    transform: translate(-50%, -50%) !important;
  }

  .home-hero .content-container {
    width: 90%;
  }

  .home-hero .home-hero-logo {
    flex-direction: column;
    gap: 12px;
  }

  .home-hero .home-hero-logo img {
    height: 100px;
    max-width: 100px;
  }

  .home-hero .home-hero-logo h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .home-hero .video-container {
    height: 65vh;
  }

  .home-hero .home-hero-logo img {
    height: 80px;
    max-width: 80px;
  }

  .home-hero .home-hero-logo h2 {
    font-size: 1.25rem;
  }
}
