/* Video Mode Styles v2 - Theme-aware, targets PHP template selectors */

/* ==================== HERO BACKGROUND MODE ==================== */
.video-hero-active {
  background: var(--bg-dark, #000) !important;
}
.video-hero-active .container {
  position: relative;
  z-index: 2;
}
.video-hero-active::before {
  z-index: 1;
}

/* ==================== BELOW HERO MODE ==================== */
.video-below-hero {
  width: 100%;
  background: var(--bg-section, #0a0a0a);
  padding: 48px 24px;
  text-align: center;
  border-bottom: 2px solid var(--border, #222);
  display: flex;
  justify-content: center;
}
.video-below-inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.video-below-hero h3 {
  color: var(--gold, #F2CB07);
  font-family: inherit;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.video-below-wrapper {
  border: 2px solid var(--border-light, #333);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.video-below-wrapper video {
  width: 100%;
  display: block;
}

/* ==================== IN ABOUT MODE ==================== */
.about-video-active .about-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-video-active .about-text-side h2 {
  text-align: left;
}
.about-video-active .about-text-side p {
  text-align: left;
  margin: 0;
}
.about-video-side {
  display: flex;
  align-items: center;
}
.about-video-side video {
  width: 100%;
  border-radius: 8px;
  border: 3px solid var(--border-light, #333);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .about-video-active .about-video-grid {
    grid-template-columns: 1fr;
  }
  .about-video-active .about-text-side h2,
  .about-video-active .about-text-side p {
    text-align: center;
  }
}

/* ==================== CINEMATIC STRIP MODE ==================== */
.cinematic-strip-section {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-top: 1px solid var(--border, #222);
  border-bottom: 1px solid var(--border, #222);
}
.strip-video-wrap {
  position: absolute;
  inset: 0;
}
.strip-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.strip-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}
.strip-overlay-content h3 {
  color: var(--gold, #F2CB07);
  font-family: inherit;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.strip-overlay-content p {
  color: var(--text-light, rgba(255,255,255,0.7));
  font-family: inherit;
  font-size: 16px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .cinematic-strip-section {
    height: 200px;
  }
  .strip-overlay-content h3 {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
