/* The Fragrance Society — Waiting page
   Replicates 260701 TFS Waitpage_ANSICHT.pdf at 1920x1080 reference, scaled fluidly. */

@font-face {
  font-family: "ABC Repro Mono Screen";
  src: url("../fonts/ABCReproMono-Screen.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #eeeeee;
  --ink: #000000;
  --tracking: 0.05em;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "ABC Repro Mono Screen", "ABC Repro Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  overflow: hidden;
}

.stage {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--bg);
}

.overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 6vh 6vw;
  text-align: center;
}

.wordmark {
  flex: 0 0 auto;
  margin: 0;
  line-height: 0;
}

.wordmark img {
  display: block;
  margin-inline: auto;
  width: clamp(170px, 34.5vw, 760px);
  max-width: 100%;
  height: auto;
}

.mark {
  flex: 0 0 auto;
  margin-top: auto;
  margin-bottom: 4vh;
  line-height: 0;
}

.mark img {
  display: block;
  margin-inline: auto;
  width: clamp(34px, 4.3vw, 96px);
  max-width: 100%;
  height: auto;
}

.imprint {
  flex: 0 0 auto;
  min-width: 0;
  margin: 0;
  width: 100%;
}

.imprint address {
  font-style: normal;
  font-size: clamp(9px, 0.69vw, 14px);
  line-height: 1.7;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--ink);
  white-space: normal;
  overflow-wrap: break-word;
  width: 100%;
}

.imprint a {
  color: inherit;
  text-decoration: none;
}

.imprint a:hover,
.imprint a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .overlay {
    padding: 5vh 8vw;
  }

  .imprint address {
    line-height: 1.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-video {
    display: none;
  }

  .stage {
    background: var(--bg) url("../img/tfs-poster.jpg") center / cover no-repeat;
  }
}
