/* =========
   Idris Films — Splash landing page
   ========= */

body.page-landing {
  margin: 0;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.page-landing .landing {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.page-landing .landing__video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  z-index: -3;
}

.page-landing .landing__overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.06), rgba(0,0,0,0.42)),
    rgba(0,0,0,0.12);
  z-index: -2;
}

.page-landing .landing__content {
  width: min(94vw, 1100px);
  min-height: 100svh;
  padding: 32px 18px;
  display: grid;
  grid-template-rows: 1fr auto auto auto 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.page-landing .landing__title {
  grid-row: 2;
  margin: 0;

  color: #fff;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: 0.2em;
  line-height: 0.92;
  font-size: clamp(38px, 6.4vw, 98px);

  text-align: center;
  text-shadow: 0 10px 34px rgba(0,0,0,0.55);
}

.page-landing .landing__enter {
  grid-row: 3;
  margin-top: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 950;
  font-size: 17px;

  border-bottom: 1px solid rgba(255,255,255,0.9);
  padding: 0 0 9px 0;

  opacity: 0.95;
  text-shadow: 0 4px 18px rgba(0,0,0,0.55);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.page-landing .landing__enter:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: #fff;
}

.page-landing .landing__enter:focus-visible,
.page-landing .landing__social-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 8px;
}

.page-landing .landing__socials {
  grid-row: 4;
  margin-top: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  color: #fff;
}

.page-landing .landing__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  color: inherit;
  text-decoration: none;
  opacity: 0.86;

  filter: drop-shadow(0 5px 16px rgba(0,0,0,0.45));
  transition: opacity 160ms ease, transform 160ms ease;
}

.page-landing .landing__social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.page-landing .landing__social-link svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

@media (max-width: 640px) {
  .page-landing .landing__content {
    width: min(94vw, 620px);
    padding: 24px 16px;
  }

  .page-landing .landing__title {
    font-size: clamp(34px, 11vw, 54px);
    letter-spacing: 0.13em;
  }

  .page-landing .landing__enter {
    margin-top: 28px;
    font-size: 15px;
    letter-spacing: 0.17em;
  }

  .page-landing .landing__socials {
    margin-top: 22px;
    gap: 16px;
  }

  .page-landing .landing__social-link svg {
    width: 23px;
    height: 23px;
  }
}