/* =========================================
   Landing Hero – Smoke + Media (shared)
   Safe for white-label use
========================================= */

.landing-hero-smoke {
  position: relative;
  background: radial-gradient(
      circle at top,
      rgba(255,255,255,0.08),
      rgba(0,0,0,0.85)
    ),
    linear-gradient(
      180deg,
      #1a1a1a 0%,
      #0f0f0f 100%
    );
  color: #ffffff;
  overflow: hidden;
}

/* Soft smoke overlay */
.landing-hero-smoke::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/static/images/smoke-texture.png");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  pointer-events: none;
}

/* Ensure content stays above smoke */
.landing-hero-smoke > .container {
  position: relative;
  z-index: 2;
}

/* -----------------------------------------
   Media hero: thumbnail as background
   Use: style="--hero-bg:url('...')"
----------------------------------------- */
.landing-hero-media {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.88)),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Blur/grain overlay (makes thumbnail “grayish / grained out”) */
.landing-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.10), rgba(0,0,0,0.85));
  backdrop-filter: blur(8px) saturate(0.8);
  -webkit-backdrop-filter: blur(8px) saturate(0.8);
  opacity: 0.85;
  pointer-events: none;
}

/* Keep content above ::after */
.landing-hero-media > .container {
  position: relative;
  z-index: 3;
}

/* Hero spacing + typography */
.landing-hero-pad {
  padding: 4.5rem 0;
}
@media (max-width: 991.98px) {
  .landing-hero-pad {
    padding: 3.25rem 0;
  }
}

.landing-hero-title {
  letter-spacing: -0.02em;
}
.landing-hero-subtitle {
  color: rgba(255,255,255,0.78);
}

/* Hero “video card” */
.landing-hero-video {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
}

/* Buttons on dark hero */
.landing-hero-smoke .btn-primary {
  background-color: #ffffff;
  color: #000;
  border: none;
  font-weight: 700;
}

.landing-hero-smoke .btn-primary:hover {
  background-color: #eaeaea;
  color: #000;
}

.landing-hero-smoke .btn-outline-light {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  font-weight: 600;
}

.landing-hero-smoke .btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}
