@font-face {
  font-family: "ABC Schengen Zone Greek";
  src: url("/fonts/ABCSchengenZoneGreekUnlicensedTrial-Light.woff2") format("woff2"),
    url("/fonts/ABCSchengenZoneGreekUnlicensedTrial-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir";
  src: url("/fonts/Avenir-Roman.woff2") format("woff2"),
    url("/fonts/Avenir-Roman.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #000000;
  --paper: #ffffff;
  --muted: #9a9186;
  --line: rgba(244, 239, 230, 0.14);
  --font-display: "ABC Schengen Zone Greek", "Times New Roman", serif;
  --font-meta: "Avenir", "Segoe UI", sans-serif;
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-meta);
}

img,
svg {
  display: block;
  max-width: 100%;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100dvh;
  justify-content: space-between;
  padding: 50px 0;
  gap: 50px;
}

.logo {
  width: 24px;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.logo.is-ready {
  opacity: 1;
}

.landing h1 {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 7%;
  margin: 0;
  flex: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.landing h1.is-ready {
  opacity: 1;
}

.subtitle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 20px;
  flex: 1;
}

.subtitle {
  font-size:14px;
  line-height: 18px;
  letter-spacing: 25%;
  margin: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.subtitle-container.is-ready .subtitle {
  opacity: 1;
}

.video {
  width: 100%;
  max-width: 700px;
  flex: none;
  pointer-events: none;
}

.video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.video-frame::before {
  content: "";
  display: block;
  padding-top: 74.28%;
  box-sizing: content-box;
}

.video-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #000;
  opacity: 1;
  transition: opacity 1.2s ease;
}

.video.is-ready .video-cover {
  opacity: 0;
}

.video .plyr,
.video .plyr__video-wrapper,
.video .plyr__video-embed,
.video #player {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  padding: 0 !important;
  margin: 0;
  background: #000;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video .plyr__controls,
.video .plyr__control,
.video .plyr__control--overlaid,
.video .plyr__poster {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .video-cover {
    display: none;
  }

  .logo,
  .subtitle,
  .landing h1 {
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 700px) {
  .landing h1,
  .subtitle {
    font-size: 10px;
    line-height: 14px;
  }

  .logo {
    width: 18px;
  }


.subtitle-container {
  gap: 10px;
}
}