
@charset "utf-8";
/* CSS Document */

@font-face{
	font-family: header-font;
	src: url("MonumentExtended-Regular.woff")
}

@font-face{
	font-family: body-font;
	src: url("MonumentExtended-Light.woff")
}

@font-face{
	font-family: body-font-2;
	src: url("NeueMontreal-Regular.woff")
}


/*lightbox*/
#lightbox {
    position:fixed; /* keeps the lightbox window in the current viewport */
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background-color:#000000d7 ; 
    text-align:center;
	display: table-cell;
	z-index: 999 !important;
	display: none;
}

.responsive-image-container:hover{
	cursor: pointer;
}

#lightbox p {
    text-align:right; 
    color:#fff; 
    margin-right:20px; 
    font-size:12px; 
}

#lightbox img {
  box-shadow:0 0 25px #111;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	transform: translate(-50%, -50%);
	z-index: 99999;;
}
/**/

a{
    text-decoration: none;
    color: #ff4a67;
    font-weight: bold;
    display: inline;
}

:root {
    touch-action: pan-x pan-y;
    height: 100%; 
}

html{
    scroll-behavior: smooth;
    touch-action: pan-x pan-y;
    height:100%;
}

body{
  background-color: #070707;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 100%;
  transition: background 0.5s ease;
  text-transform: uppercase;
}

body::-webkit-scrollbar {
  width: 5px;
  background: rgb(78, 78, 78);
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

.mobile-menu {
  display: none;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  z-index: 999;
  background: #070707;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.navbar.scrolled{
  width: 95%;
  padding: 8px 5vw;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow: 
    0 10px 30px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateX(-50%) scale(0.9);
}

.navbar.scrolled .nav-inner{
  padding-block: 1vh;
  padding: 0;
}

/* ✅ logo shrinks */
.navbar.scrolled .logo img{
  width: 100px;
}

/* ✅ tabs shrink */
.navbar.scrolled .tab {
  font-size: 0.9em;
}

.logo img {
  width: 150px;
  transition: 0.3s ease;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  padding-block: 2.5vh;
}

.logo img{
    padding: 8px;
    width: 150px;
}

.nav-tabs{
  display: flex;
  gap: clamp(16px, 6vw, 88px);
}

.tab{
  background: none;
  border: none;
  font-size: clamp(16px, 1.5vw, 24px);
  cursor: pointer;
  position: relative;
  font-family: 'body-font';
  text-transform: uppercase;
  color: white;
}

.navbar.scrolled .tab:hover{
  transition: 0.5s ease;
  transform: scale(1.3);
}

.tab:hover{
  opacity: 0.8;
  transition: 0.3s ease;
  transform: scale(1.05);
}

/* Active tab underline */
.tab::after{
  content: "";
  position: absolute;
  transition: 0.3s;
}

.tab.active::after {
  left: 50%;
  bottom: -5%;
  width: 1px;
  border: 1px solid;
  color: white;
}

/* CONTENT */
.tab-content {
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
}

.content {
  display: none;
}

.content.active {
  display: block;
}

/* WORKS CONTENT */
.works-tab-container{
  width: 100%;
  text-align: center;
  padding-block: clamp(200px, 12vw, 600px);
}

/*TRIPLE CONTENT COMPONENT*/
.works-image-inner-3{
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 12px, 16px);
}

.works-image-inner-3 img,
.works-image-inner-3 iframe{
  width: 100%;
  display: block;
}

.works-image-inner-3 iframe{
  height: 560px;
  pointer-events: none;
}

/*SPLIT CONTENT COMPONENT*/
.split-content-component{
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-bottom: clamp(48px, 6vw, 108px);
}

.split-content-component a{
  flex: 1;
  display: block;
  text-decoration: none;
  color: inherit;
}

.split-content-inner{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hover-cycle{
  width: 100%;
  height: clamp(320px, 25vw, 520px);
  overflow: hidden;
  position: relative;
}

.hover-cycle img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-tab-sub-header{
  font-family: 'body-font';
  line-height: 21px;
  font-size: 18px;
  color: rgb(194, 194, 194);
}

.works-tab-header{
  font-family: 'header-font';
  font-size: 64px;
  color: white;
}

.works-content-header{
  margin-top: 8px;
  color: white;
  font-family: 'header-font';
  font-size: 24px;
  line-height: 1.5;
  text-transform: uppercase;
}

.works-content-body{
  color: rgb(194, 194, 194);
  font-family: 'body-font';
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
}

/*SINGLE CONTENT COMPONENT*/
.single-content-component, .single-content-visual{
  position: relative;
}

.single-content-inner{
  display: block;
  background: #fffbf1;
  width: 100%;
  /* padding: 32px; */
  margin: 0 auto;
  margin-bottom: clamp(48px, 6vw, 108px);
  position: relative;
}

.single-content-info {
  margin-top: 32px; /* clean spacing */
  padding-bottom: 32px;
}

.single-content-image{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.single-content-image-2{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0 auto;
}

.single-content-image-3{
  position: relative; 
  transform: none; 
  top: auto; 
  left: auto;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.single-content-image-2 img{
  height: clamp(100px, 25vw, 580px);
  aspect-ratio: 4 / 5;
  padding: clamp(32px, 5vw, 108px);
}

.single-content-image-3 img{
  height: clamp(100px, 25vw, 580px);
  aspect-ratio: 4 / 5;
  padding-top: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(32px, 5vw, 64px);
  padding-left: clamp(32px, 5vw, 108px);
  padding-right: clamp(32px, 5vw, 108px);
}

.single-content-title{
  color: WHITE;
  font-family: 'header-font';
  mix-blend-mode: difference;
  font-size: clamp(32px, 7vw, 72px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.single-content-body{
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  mix-blend-mode: difference;
  font-family: 'header-font';
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  z-index: 4;
}
  
.single-content-button{
  display: block;
  text-align: center;
  border: 1px solid;
  margin: 32px auto 0 auto;
  font-family: 'header-font';
  font-size: 16px;
  background: none;
  padding: 16px 48px 16px 48px;
  transition: 0.3s ease;
  position: relative;
  z-index: 3;
}

.single-content-button:hover{
  background: black;
  color: white;
  transition: 0.3s ease;
  cursor: pointer;
  border: 1px solid black;
}

/*Works Component*/
.works-cover-component img, .works-cover-component iframe{
  width: 100%;
}

.works-image-inner iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  pointer-events: none;
}

.works-cover-component iframe{
  border: none;
  width: 100%;
  aspect-ratio: 16 / 9; /* maintains video proportion */
  display: block;
  pointer-events: none; /* disables interaction */
  overflow: hidden;
}

.works-content-component{
  margin-top: 48px;
  width: 100%;
}

.works-content-inner, .works-content-image-1{
  display: flex;
  padding: 0 5vw;
  border: none;
}

.works-content-title{
  display: flex;
  width: 50%;
  color: white;
  font-family: 'header-font';
  font-size: 24px;
}

.works-content-copy{
  display: block;
  width: clamp(45%, 40%, 35%);
  color: white;
  font-family: 'body-font';
  text-transform:none;
  font-size: clamp(12px, 1.5vw, 24px);
}

.works-content-image-1 img{
  margin-top: clamp(88px, 8vw, 600px);
  display: block;
  width: 100%;
}

.works-content-image-2{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  margin-top: clamp(8px, 12px, 16px);
}

.works-image-inner{
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 12px, 16px);
}

.works-content-image-2 img{
  width: 100%;
}

/* SLIDESHOW */
.slideshow-component {
  width: 100%;
  overflow: hidden;
  position: relative;
  user-select: none;
  cursor: default;
}

.slideshow-track {
  display: flex;
  width: 400%;
  animation: slide 8s steps(1, end) infinite;
}

.slideshow-track img {
  width:  25%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

@keyframes slide {
  0%        { transform: translateX(0); }
  25%   { transform: translateX(-25%); }
  50%   { transform: translateX(-50%); }
  75%   { transform: translateX(-75%); }
  100%      { transform: translateX(0); }
}

/* .slide-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 70%, #070707);
} */


/*Footer*/
.footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  padding-block: 2.5vh;
  height: 80px;
}

.instagram{
  width: 33.33%;
  transition: 0.3s ease;
  color: white;
  font-family: 'body-font';
  font-size: 10px;
}

.instagram a:hover{
  transition: 0.3s ease;
  color: grey;
}

.instagram a{
  text-decoration: underline;
  color: white;
  font-size: 10px;
}

.dm{
  font-size: 10px;
  line-height: 1.5em;
}

.discord{
  margin: 0 auto;
  text-align: center;
  filter: invert(100%);
}

.discord:hover{
  filter: invert(40%);
  transition: 0.3s ease;
}

.discord img{
    width: 35px;
}

.contact{
  display: flex;
  flex-direction: row-reverse;
  width: 33.33%;
  color: white;
  font-family: 'body-font';
  font-size: 10px;
}


/* ===== MOBILE ===== */
@media (max-width: 768px){
  body {
    padding-top: clamp(148px, 10vw, 72px); /* matches your navbar height */
  }

   /* Hide desktop tabs */
  .nav-tabs {
    display: none !important;
  }

  .navbar.scrolled{
    width: 100%;
    border-radius: 0;
    padding: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
  }

  /* Show hamburger, pin it to top-right */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1000;
    position: relative;
    margin-left: auto; /* pushes to right */
    mix-blend-mode: difference;
  }

  .hamburger span {
    display: block;
    width: 32px;
    height: 2px;
    background: white;
    mix-blend-mode: difference;
    transition: 0.3s ease;
    transform-origin: center;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile dropdown — sits below navbar, travels with it */
 .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  z-index: 997;
  font-size: 32px;
  /* slide-in from right */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex; /* always flex, transition handles show/hide */
}

.mobile-menu.open {
  transform: translateX(0);
  
}

.mobile-menu .tab {
  color: white;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open .tab:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
.mobile-menu.open .tab:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.28s; }
.mobile-menu.open .tab:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.36s; }

  /* Tab content padding */
  .tab-content{
    padding: 0 16px;
  }

  /* Works header */
  .works-tab-header{
    font-size: 36px;
  }

  /* Split grid → single column */
  .split-content-component{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hover-cycle{
    height: 260px;
  }

  /* Single content component — switch from overlay to stacked layout */
.single-content-inner {
  width: 100%;
  box-sizing: border-box;
}

.single-content-component {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

  .single-content-visual {
    position: relative;
    overflow: hidden;
  }

  /* The category label (e.g. "Branding") */
  .single-content-body{
    position: static;
    transform: none;
    color: #888;
    mix-blend-mode: normal;
    margin-bottom: 8px;
    font-size: 12px;
  }

  /* The big title — pull it out of absolute positioning */
  .single-content-title{
    color: #ffffff;
    mix-blend-mode: difference;
    font-size: clamp(20px, 7vw, 36px);
    margin-bottom: 16px;
    position: absolute;
  }

  /* GIF drives the height — sits in normal flow */
  .single-content-image {
    position: relative;
    width: 100%;
    z-index: 1;
  }

  .single-content-image img {
    width: 100%;
    height: clamp(200px, 55vw, 280px);
    object-fit: cover;
    display: block;
  }

 /* Strip floats on top of the GIF */
.single-content-image-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.single-content-image-2 img {
  flex: 1;
  width: 0;
  height: 180px;
  aspect-ratio: unset;
  padding: 0;
  object-fit: cover;
}

/* DKC 3-image strip */
.single-content-image-3 {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.single-content-image-3 img {
  flex: 1;
  width: 0;
  height: auto;
  aspect-ratio: 4 / 5;
  padding: 0;
  object-fit: cover;
}

  /* READ MORE button */
  .single-content-info{
    margin-top: 16px;
    padding-bottom: 16px;
  }

  .single-content-button{
    width: 300px;
    padding: 14px 0;
    color: black;
  }

  /* Works detail pages */
  .works-content-inner{
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
  }

  .works-content-title,
  .works-content-copy{
    width: 100%;
    font-size: 14px;
  }

  .works-content-title{
    font-size: 20px;
  }

  .works-image-inner,
  .works-image-inner-3{
    grid-template-columns: 1fr;
  }

  .works-image-inner-3 iframe{
    height: 220px;
  }

  .works-content-image-2{
    padding: 0 16px;
  }

  /* Footer */
  .footer{
    flex-direction: column;
    height: auto;
    gap: 16px;
    padding-block: 24px;
    text-align: center;
  }

  .instagram,
  .contact{
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}