@charset "UTF-8";
@font-face {
  font-family: 'NoirEtBlank';
  src: url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff2') format('woff2'),
       url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothic';
  src: url('Assets/Fonts/franklingothic_cond-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_cond-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothicBold';
  src: url('Assets/Fonts/franklingothic_bold-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_bold-webfont.woff') format('woff');
  font-style: normal;
}
.logo-box {
  max-width: 2000px;
  margin: 0 auto;
	padding-top: 30px;
	padding-bottom: 40px;
	padding-left: 20px;
	padding-right: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}
.center-screen {
  display: flex;
  justify-content: center;
  align-items: top;
  height: calc(100vh - 150px);
  width: 100%;
  overflow: hidden;
}
.main-box-wrapper {
  width: 1000px;
  height: 750px;
  position: relative;
  transform-origin: top center;
  transform: scale(calc(
    min(
      100% / 1000,
      (100vh - 100px) / 750
    )
  ));
}
.main-box {
  position: relative;
  width: 1000px;
  height: 750px;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1000 / 750;
  transform-origin: top center;
}
.shadow-image {
  position: absolute;
  top: 65px;
  left: 70px;
  width: 453px;
  height: 663px;
  object-fit: cover;
  z-index: 1;
}
.tape-image {
  position: absolute;
  top: 15px;
  left: 140px;
  width: 300px;
  height: 60px;
  object-fit: cover;
  z-index: 3;
}
.overlay-video {
  position: absolute;
  top: 40px;
  left: 70px;
  width: 450px;
  height: 670px;
  z-index: 2;
  overflow: hidden;
}
.overlay-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 300%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.text-box {
  position: absolute;
  top: 490px;
  left: 555px;
  width: 360px;
  text-align: left;
  color: #222222;
  z-index: 3;
}
.text-box h {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.text-box p {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.2;
}
.credit-list-a {
  position: absolute;
  top: 555px;
  left: 555px;
  width: 150px;
  text-align: left;
  color: #222222;
  z-index: 3;
}
.credit-list-a p {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
.credit-list-b {
  position: absolute;
  top: 555px;
  left: 700px;
  width: 200px;
  text-align: left;
  color: #222222;
  z-index: 3;
}
.credit-list-b p {
  font-family: 'FranklinGothicBold', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
.fade-up {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {

  /* Allow normal scrolling */
  .center-screen {
    height: auto;
    overflow: visible;
    padding-bottom: 40px;
  }

  .main-box-wrapper {
    width: 100%;
    height: auto;
    transform: none;
  }

   .main-box {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
  }

  /* Stack everything */
  .shadow-image,
  .overlay-video,
  .tape-image,
  .text-box,
  .credit-list-a,
  .credit-list-b {
    position: relative;
    top: auto;
    left: auto;
  }

  /* VIDEO */
 .overlay-video {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: 40px auto 0;
    z-index: 2;
  }

  /* SHADOW */
 .shadow-image {
    position: absolute;
    top: 13px;
    left: 50%;
    width: 95%;
    max-width: 450px;
    transform: translateX(-50%);
    z-index: 1;
	}
  /* TAPE */
 .tape-image {
    position: absolute;
    top: -15px;
    left: 50%;
    width: 220px;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 3;
  }

  /* TEXT BLOCK */
 .text-box {
    position: relative;
    width: 90%;
    margin: 20px auto;
    text-align: center;
  }
	/* Credit container */
.credits-wrapper {
  display: flex;
  justify-content: center; /* center the two lists */
  gap: 20px; /* space between lists */
  width: 100%;
  margin: 20px auto 40px; /* spacing below video and above page end */
}

/* Individual lists */
.credit-list-a,
.credit-list-b {
  position: relative; /* back to normal flow */
  width: auto; /* allow natural width */
  text-align: left; /* keep original left alignment */
  margin: 0;
}

}