@charset "UTF-8";

/* -------------------- FONTS -------------------- */
@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;
}

/* -------------------- GLOBAL -------------------- */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  position: relative;
  background:
    radial-gradient(
      circle at center,
      #242424 0%,
      #222222 65%,
      #1f1f1f 100%
    );
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(
      circle at 0 0,
      rgba(0,0,0,0.02),
      rgba(0,0,0,0.02) 1px,
      transparent 1px,
      transparent 2px
    );
  opacity: 0.07;
  z-index: 0;
}
img {
  display: block;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* -------------------- HEADER -------------------- */
.logo-box {
  max-width: 2000px;
  margin: 0 auto;
  padding: 30px 20px 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 20px;
}
.site-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}
.logo-link img {
  transition: transform 0.2s ease;
}
.logo-link:hover img {
  animation: logo-bounce 0.4s ease forwards;
}
@keyframes logo-bounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.05); }
  60%  { transform: scale(1.03); }
  100% { transform: scale(1.04); } 
}
.header-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: normal;
  padding: 10px 22px;
  color: #f8f2e6;
  text-decoration: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.header-btn:hover {
  background-color: #f8f2e6;
  color: #222222;
}
.left-btn { left: 20px; }
.right-btn { right: 20px; }
.left-btn:hover {
  animation: bounce-left 0.3s ease-in-out;
}
.right-btn:hover {
  animation: bounce-right 0.3s ease-in-out;
}
@keyframes bounce-left {
  0%   { transform: translateY(-50%) translateX(0); }
  50%  { transform: translateY(-50%) translateX(-4px); }
  100% { transform: translateY(-50%) translateX(0); }
}
@keyframes bounce-right {
  0%   { transform: translateY(-50%) translateX(0); }
  50%  { transform: translateY(-50%) translateX(4px); }
  100% { transform: translateY(-50%) translateX(0); }
}

/* -------------------- BODY -------------------- */
.project-hero {
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: clamp(25px, 4vw, 50px)
           clamp(50px, 6vw, 100px)
           clamp(50px, 4vw, 100px)
           clamp(50px, 6vw, 100px);
}
.overlay-video {
  position: absolute;
  width: 70vmin;
  aspect-ratio: 1 / 1;
  top: 45%;
  right: 100px;
  transform: translate(-0, -50%);
  overflow: hidden;
  padding: inherit;
  clip-path: circle(0% at 50% 50%);
  animation: irisIn 1.5s ease-out forwards;
  animation-delay: 2s;
  z-index: 1;
}
.overlay-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}
@keyframes irisIn {
  to {
    clip-path: circle(50% at 50% 50%);
  }
}
.project-heading {
  position: absolute; 
  padding: inherit;
  top: 43%;
  left: 32%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.project-heading p {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: clamp(5.4rem, 7.5vw, 11.25rem);
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #f8f2e6;
  white-space: nowrap;     
  max-width: 100%;         
  margin: 0;
}
.project-heading .project-sub-heading {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: clamp(1.35rem, 1.875vw, 2.8125rem);
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #f8f2e6;
  white-space: nowrap;     
  max-width: 100%;         
  margin: 0;
}
.credits1 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: inherit;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 30px);
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #f8f2e6;
  z-index: 3;
}
.credits1 p {
  margin: 0;
}
.credits1 .col {
  min-width: 120px;
}
.credits2 {
  position: absolute;
  bottom: 0;
  right: 35%;
  padding: inherit;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 30px);
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #f8f2e6;
  z-index: 3;
}
.credits2 p {
  margin: 0;
}
.credits2 .col {
  min-width: 120px;
}

/* -------------------- FADE ANIMATION -------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeUp 0.8s ease-out forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.project-heading { animation-delay: 0s; }
.credits1 { animation-delay: 0.5s; }
.credits2 { animation-delay: 0.5s; }

/* -------------------- MOBILE -------------------- */
@media (max-width: 768px) {

  .site-logo {
    max-width: 140px;
  }
  .header-btn {
    font-size: 0.7rem;
    padding: 10px 18px;
  }
	
  .left-btn { left: 10px; }
  .right-btn { right: 10px; }

  .project-hero {
    min-height: auto;
    padding: 30px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .overlay-video {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 80vw;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    margin: 24px auto 32px;
    padding: 0;
    clip-path: circle(50% at 50% 50%);
    animation-delay: 0.4s;
    z-index: 1;
  }
  .project-heading {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 0;
	margin-top: 20px;
    margin-bottom: 32px;
    text-align: center;
    z-index: 2;
  }
  .project-heading p {
    font-size: clamp(2.8rem, 10vw, 4rem);
    white-space: normal;
    line-height: 1.1;
  }
  .credits1,
  .credits2 {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 20px;
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    text-align: left;
    z-index: 2;
}
  .credits1 .col,
  .credits2 .col {
    min-width: 120px;
	transform: translateX(10px);
  }
  .credits2 {
    margin-bottom: 0;
  }
}