/* =========================================================
   LONDYN PUBLISHING — VIDEOS PAGE
   ========================================================= */


/* ---------------------------------------------------------
   SMOOTH SCROLL
   --------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------
   VIDEOS HERO
   --------------------------------------------------------- */

.lp-videos-hero {
  position: relative;
  overflow: hidden;
  text-align: center;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, .35),
      rgba(0, 0, 0, .70)
    ),
    url("/wp-content/uploads/videos-veil-hero.png")
    center center / cover
    no-repeat;
}


.lp-videos-hero-inner {
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: 0 auto;

  padding-top: 110px;
  padding-bottom: 110px;
}

.lp-videos-eyebrow {
  margin-bottom: 10px;
  color: #f2c14e;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lp-videos-title {
  margin: 0 0 14px;
  font-size: clamp(38px, 6vw, 68px);
  text-shadow: 0 3px 18px rgba(0, 0, 0, .85);
}

.lp-videos-intro {
  max-width: 720px;
  margin: 0 auto;

  font-size: 1.08rem;
  line-height: 1.8;

  text-shadow: 0 2px 12px rgba(0, 0, 0, .95);
}

/* ---------------------------------------------------------
   SECTION HEADERS
   --------------------------------------------------------- */

.lp-video-section-header {
  max-width: 760px;
  margin: 0 auto 38px;

  text-align: center;
}

.lp-video-section-eyebrow {
  margin-bottom: 8px;

  color: #f2c14e;

  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lp-video-section-title {
  margin: 0 0 12px;
}

.lp-video-section-description {
  max-width: 680px;
  margin: 0 auto;

  line-height: 1.7;
}


/* ---------------------------------------------------------
   VIDEO GRID
   --------------------------------------------------------- */

.lp-video-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 30px;

  align-items: start;
}


/* ---------------------------------------------------------
   VIDEO CARDS
   --------------------------------------------------------- */

.lp-video-card {
  padding: 24px;

  border:
    1px solid rgba(255, 255, 255, .09);

  border-radius: 14px;

  background:
    rgba(255, 255, 255, .025);

  box-shadow:
    0 12px 34px rgba(0, 0, 0, .20);

  scroll-margin-top: 100px;

  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.lp-video-card:hover {
  border-color:
    rgba(242, 193, 78, .20);

  box-shadow:
    0 15px 38px rgba(0, 0, 0, .30);

  transform:
    translateY(-2px);
}

.lp-video-label {
  margin-bottom: 6px;

  color: #f2c14e;

  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lp-video-title {
  margin: 0 0 18px;

  font-size: 1.45rem;
  line-height: 1.35;
}


/* ---------------------------------------------------------
   VIDEO PLAYER
   --------------------------------------------------------- */

.lp-video-player {
  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 10px;

  background: #000;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(242, 193, 78, .10);
}

.lp-video-player video {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 9;

  object-fit: contain;

  background: #000;
}


/* ---------------------------------------------------------
   VIDEO DESCRIPTION
   --------------------------------------------------------- */

.lp-video-description {
  margin: 18px 0 0;

  line-height: 1.75;

  opacity: .88;
}


/* ---------------------------------------------------------
   VIDEO BUTTONS
   --------------------------------------------------------- */

.lp-video-buttons {
  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 20px;
}


/* ---------------------------------------------------------
   SECONDARY BUTTON
   --------------------------------------------------------- */

.veil-btn-secondary {
  opacity: .82;
}

.veil-btn-secondary:hover {
  opacity: 1;
}


/* ---------------------------------------------------------
   GENERAL CENTERED CONTENT
   --------------------------------------------------------- */

.lp-videos-centered {
  max-width: 900px;

  margin: 0 auto;

  text-align: center;
}

.lp-videos-copy {
  max-width: 720px;

  margin: 0 auto 22px;

  line-height: 1.8;
}

.lp-videos-actions {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 12px;
}


/* ---------------------------------------------------------
   COPYRIGHT
   --------------------------------------------------------- */

.lp-videos-copyright {
  max-width: 800px;

  margin: 0 auto;

  text-align: center;
}

.lp-videos-copyright p {
  margin: 0;

  font-size: .82rem;

  line-height: 1.7;

  opacity: .6;
}


/* ---------------------------------------------------------
   DIRECT-LINK HIGHLIGHT
   --------------------------------------------------------- */

.lp-video-card:target {
  border-color:
    rgba(242, 193, 78, .40);

  box-shadow:
    0 12px 34px rgba(0, 0, 0, .30),
    0 0 26px rgba(242, 193, 78, .10);
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 800px) {

  .lp-video-grid {
    grid-template-columns: 1fr;
  }

  .lp-videos-hero-inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

  .lp-video-card {
    padding: 16px;
  }

  .lp-video-title {
    font-size: 1.25rem;
  }

  .lp-videos-hero-inner {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .lp-videos-intro {
    font-size: 1rem;
  }

  .lp-video-buttons {
    flex-direction: column;
  }

  .lp-video-buttons .veil-btn {
    width: 100%;
    text-align: center;
  }

}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .lp-video-card {
    transition: none;
  }

  .lp-video-card:hover {
    transform: none;
  }

}
/* =========================================================
   VIDEOS HERO — REMOVE EXISTING PURPLE CONTAINER BACKGROUND
   ========================================================= */

.lp-videos-hero {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, .15),
      rgba(0, 0, 0, .35)
    ),
    url("/wp-content/uploads/videos-veil-hero.png")
    center center / cover no-repeat !important;
}

/* Remove inherited purple/dark panel from the inner section */
.lp-videos-hero .lp-videos-hero-inner {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* In case lv-section is supplying the background */
.lp-videos-hero .lv-section {
  background: transparent !important;
  background-color: transparent !important;
}
/* ---------------------------------------------------------
   FEATURED TRILOGY VIDEO
   --------------------------------------------------------- */

.lp-featured-video-card {
  max-width: 980px;
  margin: 0 auto;

  padding: 28px;

  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;

  background: rgba(255, 255, 255, .025);

  box-shadow:
    0 14px 40px rgba(0, 0, 0, .28);
}

.lp-featured-video-player {
  position: relative;
  width: 100%;
  overflow: hidden;

  border-radius: 12px;
  background: #000;

  box-shadow:
    0 12px 32px rgba(0, 0, 0, .50),
    0 0 0 1px rgba(242, 193, 78, .10);
}

.lp-featured-video-player video {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 9;

  object-fit: contain;

  background: #000;
}

.lp-featured-video-description {
  max-width: 820px;
  margin: 22px auto 0;

  text-align: center;

  line-height: 1.8;
  opacity: .9;
}

@media (max-width: 600px) {
  .lp-featured-video-card {
    padding: 16px;
  }
}
/* =========================================================
   HOMEPAGE — TRILOGY TRAILER
   ========================================================= */

.lp-home-trilogy {
  position: relative;
  overflow: hidden;
}

.lp-home-trilogy-grid {
  display: grid;

  grid-template-columns:
    minmax(0, .9fr)
    minmax(0, 1.1fr);

  gap: 44px;

  align-items: center;
}

.lp-home-trilogy-copy {
  max-width: 620px;
}

.lp-home-trilogy-title {
  margin: 0 0 14px;
}

.lp-home-trilogy-text {
  margin: 0;

  line-height: 1.8;
}

.lp-home-trilogy-buttons {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 24px;
}

.lp-home-trilogy-video {
  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 14px;

  background: #000;

  box-shadow:
    0 14px 36px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(242, 193, 78, .10);
}

.lp-home-trilogy-video video {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 9;

  object-fit: contain;

  background: #000;
}

@media (max-width: 850px) {

  .lp-home-trilogy-grid {
    grid-template-columns: 1fr;
  }

  .lp-home-trilogy-copy {
    max-width: none;
    text-align: center;
  }

  .lp-home-trilogy-buttons {
    justify-content: center;
  }

}

@media (max-width: 600px) {

  .lp-home-trilogy-buttons {
    flex-direction: column;
  }

  .lp-home-trilogy-buttons .veil-btn {
    width: 100%;
    text-align: center;
  }

}