/* ===============================
   NexTA - Clean Intro Video Strip (Natural Look)
=============================== */

.intro-video-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
}

/* ✅ Video stays fully natural & uncropped */
.intro-video-section video {
  display: block;
  width: 100%;
  height: auto;          /* ✅ no forced height = no zoom */
  max-height: 360px;     /* ✅ clean ~350px strip */
  margin: 0 auto;
}

/* ✅ Overlay container ONLY for heading */
.intro-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 20px;

  pointer-events: none;   /* ✅ clicks go through to video */
}

/* ✅ Clean, subtle heading */
.intro-video-overlay h2 {
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 700;
  margin: 0;

  color: rgba(255, 255, 255, 0.85);

  text-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.55);

  letter-spacing: 0.3px;
  line-height: 1.25;
}

/* ✅ Mobile */
@media (max-width: 768px) {
  .intro-video-section video {
    max-height: 300px;
  }

  .intro-video-overlay h2 {
    font-size: clamp(18px, 5vw, 26px);
  }
}
/* ✅ Remove unwanted gap above intro video */
.intro-video-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
