.video-container {
  position: relative;
  width: 95vw;
  height: 100vh;
  margin: 0 auto; 
  overflow: hidden;
  border-radius: 2rem;
  border: 2px solid var(--white);
  box-shadow: 0px 0px 22px var(--accent);
}

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

/* IMAGE + TEXT SECTION */
.section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px auto;
  max-width: 65vw;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-image img {
  height: 40vh;
  width: auto;
  max-width: 75vw;
  border-radius: 16px;
  border: 2px solid var(--white);
  box-shadow: 0px 0px 22px var(--accent);
}

.section-text {
  font-size: clamp(10px, 3vw, 20px);
  font-weight: normal;
  line-height: 1.25;
  padding: 10px;
}

.section-text h2 {
  font-size: clamp(30px, 5vw, 40px);
  margin-bottom: 0.2em;
  text-shadow: 0px 0px 15px var(--accent);
}

/* MOBILE */
@media (max-width: 767px) {
  .section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    max-width: 80vw;
  }

  .section.reverse {
    flex-direction: column;
  }

  .section-image img {
    height: 20vh;
    width: auto;
    max-width: 75vw;
  }

  .text-wrapper {
    justify-content: center;
    align-items: center;
  }

  .section-text {
  font-size: clamp(15px, 4vw, 20px);
}

.section-text h2 {
  font-size: clamp(30px, 5vw, 35px);
}
}