@font-face {
    font-family: "Switzer";
    src: url("../font/SwitzerVariable/Switzer-Variable.woff2") format("woff2-variations");
    font-weight: 100 900;
    font-style: normal;
  }


  @font-face {
    font-family: "AzeretMono";
    src: url("../font/AzeretMono/AzeretMono-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
  }


html {
    scrollbar-width: none;
   -ms-overflow-style: none; 

   font-family: sans-serif;
   -ms-text-size-adjust: 100%;
   -webkit-text-size-adjust: 100%;
   
   -webkit-tap-highlight-color: transparent;

   display: block;
}

html::-webkit-scrollbar {
   display: none; 
}


*{
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
}


body {
   margin: 0;
}

::-moz-selection { /* Code for Firefox */
    color: #000;
    background: #f6f3ec
  }
  
  ::selection {
    color: #000;
    background: #f6f3ec;
  }



.viewport-wrapper {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    overflow-y: scroll;
    
    scrollbar-width: none;
    -ms-overflow-style: none; 
}
    

.viewport-wrapper::-webkit-scrollbar {
    display: none;
}


.container {
    width: 100vw;
    height: 100vh;
    position: sticky;
    top: 0;

    overflow: hidden;
    background-color: #ffffff;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
   
    animation: zoomIn 2.25s cubic-bezier(0.6, 0.5, 0.5, 0.99);
}

#landing-background-video {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 7.5vw;
    animation: noradius 1.85s forwards;
    animation-delay: 1.25s;
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes noradius {
    100% {
        border-radius: 0px;
    }
}


.menu-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;

    background-color: rgb(0 0 0/ 7.5%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    
    opacity: 0;
    display: none;
    z-index: 999;  

}



.header {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;

    background-color: transparent;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    justify-content: space-between;
    align-items: flex-start;

    padding: 2vw;

    opacity: 0%;

    animation: fadeIn 2s ease forwards;
    animation-delay: 2.25s; 

}

@keyframes fadeIn {
    0% { 
        opacity: 0%;
    }
    
    100% { 
        opacity: 100%;
    }
}


@keyframes fadeOut {
    0% { 
        opacity: 100%;
    }
    
    100% { 
        opacity: 0%;
    }
}

.footer {
    width: 96vw;
    height: auto;
    position: fixed;
    bottom: 2vw;
    left: 2vw;

    background-color: transparent;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    justify-content: space-between;
    align-items: flex-start;

    padding-top: 2vw;

    border-top: 1.5px solid #f6f3ec;

    opacity: 0%;

    animation: fadeIn 2s ease forwards;
    animation-delay: 2.25s;

    z-index: 30;
}



.subtext {
    font-family: 'AzeretMono';
    font-style: normal;
    font-variation-settings: "wght" 450;

    font-size: 17px;
    letter-spacing: 0em;
    line-height: 1em;

    color: #f6f3ec;

    text-transform: uppercase;
    padding: 0;

    -webkit-font-smoothing: antialiased;

  
}


.link-container {
    width: 100%;
    height: 100%;
    position: fixed;
    
    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    
    padding-left: 1.5vw;
    padding-top: 10vh;
    padding-bottom: 15vh;

    opacity: 0%;

    animation: fadeIn 2s ease forwards;
    animation-delay: 2.3s;

    pointer-events: none;
    background: transparent;
}



.link-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    margin-bottom: 50px;
    z-index: 500;
    pointer-events: all;
   
}

.link {
    font-family: 'Switzer';
    font-style: normal;
    font-variation-settings: "wght" 450;

    font-size: 130px;
    letter-spacing: -0.05em;
    line-height: 0.7em;

    color: #f6f3ec;

    text-transform: uppercase;
    padding: 0;

    -webkit-font-smoothing: antialiased;
    transition: all 500ms ease;

    text-decoration: none;

    white-space: wrap;
}

.link:hover {
    font-variation-settings: "wght" 550;
    cursor: pointer;
}

.link-description {
    font-family: 'AzeretMono';
    font-style: normal;
    font-variation-settings: "wght" 450;

    font-size: 17px;
    letter-spacing: 0em;
    line-height: 1em;

    color: #f6f3ec;

    text-transform: uppercase;
    padding: 0;
    margin-left: 15px;

    -webkit-font-smoothing: antialiased;
}

#footer-2 {
    cursor: pointer;
    transition: all 500ms ease;
    text-decoration: none;
}

#footer-2:hover {
    text-decoration: underline;
}


#header-4 {
    cursor: pointer;
    transition: all 500ms ease;
    text-decoration: none;
}

#header-4:hover {
    text-decoration: underline;
}

#header-5 {
    cursor: pointer;
    transition: all 500ms ease;
    text-decoration: none;
  
}

#header-5:hover {
    text-decoration: underline;
}





.project-index-video-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;

    z-index: -1;

    animation: zoomIn 2.25s cubic-bezier(1, 0.5, 0.5, 0.99);
}

.project-index-video {

    opacity: 0;
   
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    transition: all 0.5s ease-in-out; 

    border-radius: 7.5vw;
    animation: noradius 1.85s forwards;
    animation-delay: 1.25s;

 
}

.project-index-container {
    width: 100%;
    height: 70%;

    position: fixed;
    bottom: 4vw;

    padding: 1vw;
    opacity: 0;

    display: flex;
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;

    gap: 32px;
    animation: fadeIn 2s ease forwards;
    animation-delay: 2.5s;
}


.project-index-item-container {
    width: max-content;
    height: max-content;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 15px;

    opacity: 0.25;
    cursor: pointer;

    transition: all 0.5s ease-in-out;
 
}


.pii-current {
    opacity: 100;
}

.pii-video-current {
   
    opacity: 100;
   
}

.project-index-title {
    font-family: 'Switzer';
    font-style: normal;
    font-variation-settings: "wght" 450;

    font-size: 80px;
    letter-spacing: -0.025em;
    line-height: 0.7em;

    color: #f6f3ec;

    text-transform: uppercase;
    padding: 0;

    -webkit-font-smoothing: antialiased;

    text-decoration: none;

}

.project-index-genre {
    font-family: 'AzeretMono';
    font-style: normal;
    font-variation-settings: "wght" 450;

    font-size: 17px;
    letter-spacing: 0em;
    line-height: 1em;

    color: #f6f3ec;

    text-transform: uppercase;
    padding: 0;

    -webkit-font-smoothing: antialiased;
}
    


.curtain-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    visibility: hidden;
    
}


.curtain {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    transform: translateY(-150%);
}

.curtain-two {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    transform: translateY(-100%);
}

.full-viewport-lightbox {
    height: 100%;
    width: 100%;
    background-color: red;
    opacity: 0;
}


.contact-box {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 9998;
    background-color: red;
    visibility: hidden;
}

.contact-background {
    height: 100%;
    width: 100%;
    background-image: url("/resources/img/IMG_8424.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#about-box {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 1009;
    background-color: #fff;
    visibility: hidden;
}

@keyframes curtain-in {
    0%    { transform: translateY(-150%) }
    100%  { transform: translateY(0) }
}

@keyframes curtain-out {
    0%    { transform: translateY(0) }
    100%  { transform: translateY(100%) }
}

@keyframes opacity-in {
    0%    { opacity: 0; }    
    100%  { opacity: 1; }
}

@keyframes opacity-out {
    0%    { opacity: 1; }    
    100%  { opacity: 0; }
}







@media only screen 
    and (min-width: 1440px)
    {
        .header {
            padding: 1vw;
        }
    
        .footer {
            bottom: 1vw;
            left: 1vw;
            padding-top: 1vw;
            width: 98vw;
            
        }
        .link-container {
            padding-left: 1vw; 
        }
    }


@media only screen 
    and (min-width: 1200px)
    and (max-width: 1440px)
 {
    .subtext {
        font-size: 15px;
    }

    .link-box {
        margin-bottom: 30px;
    }

    .link {
        font-size: 100px;
        font-variation-settings: "wght" 400;
    }

    .link:hover {
        font-variation-settings: "wght" 500;
    }

    .link-description {
        font-size: 15px;
        margin-left: 10px;
    }

    .footer {
        border-top: 1px solid #f6f3ec;  
    }

    .header {
        padding: 15px;
    }

    .footer {
        bottom: 15px;
        left: 15px;
        padding-top: 15px;
        width: calc(100vw - 30px);
        
    }
    .link-container {
        padding-left: 15px; 
    }

    .project-index-container {
        gap: 20px;
        bottom: 60px;
    }

    .project-index-item-container {
        gap: 10px;
    }

    .project-index-title {
        font-size: 55px;
    }

    .project-index-genre {
        font-size: 15px;
    }
}


@media only screen 
    and (min-width: 900px)
    and (max-width: 1200px)
{

    .subtext {
        font-size: 14px;
    }

    .link-box {
        margin-bottom: 20px;
    }

    .link {
        font-size: 75px;
        font-variation-settings: "wght" 400;
    }

    .link:hover {
        font-variation-settings: "wght" 500;
    }

    .link-description {
        font-size: 14px;
        margin-left: 10px;
    }

    .footer {
        border-top: 1px solid #f6f3ec;  
    }

    .header {
        padding: 15px;
    }

    .footer {
        bottom: 15px;
        left: 15px;
        padding-top: 15px;
        width: calc(100vw - 30px);
        
    }
    .link-container {
        padding-left: 15px; 
    }

    .project-index-container {
        gap: 16px;
        bottom: 60px;
        padding: 15px;
    }

    .project-index-item-container {
        gap: 8px;
    }

    .project-index-title {
        font-size: 48px;
    }

    .project-index-genre {
        font-size: 14px;
    }
}

@media only screen 
    and (min-width: 500px)
    and (max-width: 900px)
{

    .subtext {
        font-size: 14px;
    }

    .link-box {
        margin-bottom: 25px;
    }

    .link {
        font-size: 60px;
        font-variation-settings: "wght" 400;
    }

    .link:hover {
        font-variation-settings: "wght" 500;
    }

    .link-description {
        font-size: 14px;
        margin-left: 10px;

    }

    .footer {
        border-top: 1px solid #f6f3ec;  
    }

    #footer-1 {
        display: none;
    }

    .header {
        padding: 15px;
    }

    .footer {
        bottom: 15px;
        left: 15px;
        padding-top: 15px;
        width: calc(100vw - 30px);
        
    }
    .link-container {
        padding-left: 15px; 
    }

    .project-index-container {
        gap: 14px;
        bottom: 60px;
        padding: 15px;
    }

    .project-index-item-container {
        gap: 7px;
    }

    .project-index-title {
        font-size: 40px;
    }

    .project-index-genre {
        font-size: 14px;
    }

}


@media only screen 
    and (orientation: portrait)
   
{
    .subtext {
        font-size: 12px;

    }

    .link-box {
        margin-bottom: 15px;
    }

    .link {
        font-size: 30px;
        font-variation-settings: "wght" 400;
        letter-spacing: -0.065em;
    }

    .link:hover {
        font-variation-settings: "wght" 500;
    }

    .link-description {
        font-size: 10px;
        margin-left: 5px;

    }

    .footer {
        border-top: 1px solid #f6f3ec;  
    }

    #footer-2 {
        display: none;
    }

    #footer-3 {
        display: none;
    }

    #header-2 {
        display: none;
    }

    #header-3 {
        display: none;
    }

   

    .header {
        padding: 15px;
    }

    .footer {
        bottom: 15px;
        left: 15px;
        padding-top: 15px;
        width: calc(100vw - 30px);
        
    }

    .link-container {
        padding-left: 15px;
        padding-bottom: 10vh;
        justify-content: flex-end;
    }

    .project-index-container {
        gap: 12px;
        bottom: 45px;
        padding: 15px;
    }

    .project-index-item-container {
        gap: 6px;
    }

    .project-index-title {
        font-size: 28px;
    }

    .project-index-genre {
        font-size: 12px;
    }
}



