@font-face {
  font-family: 'Neue Montreal';
  src: url('NeueMontreal-Regular.otf') format('opentype'); 

}




:root {
  --bg: #111111; 
  --text:  #ffffff;
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: calc(100vw / 1512 * 10);

}

body {
  font-family: 'Neue Montreal';
  font-weight: 200;
  font-size: medium;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100vw;
  height: 100vh; 
  overscroll-behavior: contain;  
}


::-webkit-scrollbar{
  width: 0;
}


::selection{
  background-color: #d8cabd;
  color: #111;
}



.navigation a{
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);

  position: absolute;
  overflow: hidden;
  opacity: 0;
  animation: fade-up 1.2s 1.4s ease forwards;
}

.link2:hover,.link3:hover{
    opacity: 1;
}

.navigation-wrap{
    width: 100vw;
    height: 10vh;
    position: absolute;
    z-index: 999;
    display: flex;
    
    align-items: center;
    top: 0%;

}

.navigation{
    position: absolute;
    left: 42vw;
  width: 13vw;
  display: flex;
  justify-content: space-between;
}


.intro{
  height: 100dvh;
  width: 100vw;
  scale: 0.5;
  animation:fade-up 1.1s,scale 2.1s  1.2s  cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: filter 0.1s;
}

.link1{
    opacity: 0.9;
}

.link2,.link3{
opacity: 0.5;
transition: opacity 0.3s;
}


@keyframes fade-up {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to{
        opacity: 1;
    }
    
}


@keyframes scale {
    from{
        scale: 0.5;
    }

    to{
        scale: 1;
        border-radius: 0px;
    }
}


.intro p{
  font-size: 34px;
  font-weight: 500;
  animation: come 1.2s 1.2s ease forwards;
  transform: translateY(100%);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}

.hint{
    overflow: hidden;
    z-index: 100;
    opacity: 0.3;
    position: absolute;
    bottom: 2%;
    left: 22px;
    border: 1px solid #f9f2ec2f;
    width: 90px;
    height: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hint p{
   font-size: 14px;
}


.bank{
    overflow: hidden;
    z-index: 100;
    opacity: 0.9;
}

@keyframes come {
    from{
    transform: translateY(100%)
       rotate(5deg);
}

to{
    transform: translateY(0)
}
}

.intro img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.4;
    animation: 2.1s scaleup 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    position: absolute;
}

.next{
    height: 100vh;
    background: var(--bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-weight: 400;
    width: 100vw;
    overflow: hidden;
    border-top: 1px solid #222;
}


.bespaced{
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.talk{
    width: 35vw;
}

.talk p{
    transform: translateY(20px);
}

@keyframes scaleup {
    from{
        scale: 1.4;
    }

    to{
        scale: 1;
    }
}

.fade-in{
    opacity: 1;
  }
  
  .fade-in.animated {
    animation: fadeIn 1s ease forwards;
    opacity: 1;
  }
  
  @keyframes fadeIn {
    0% {
        opacity: 1;
    
    }
  
  
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
  }
  

  .fade-im{
    opacity: 0.4;
  }
  
  .fade-im.animated {
    animation: fadeIm 1.5s ease forwards;
    opacity: 1;
  }
  
  @keyframes fadeIm {
    0% {
        opacity: 0.4;
    
    }
  
  
    100% {
        opacity: 1;
    }
  }
  

  .hello-text {
    left: 48%;
    top: 94%;
    position: absolute;
    width: 96vw;
    font-family: 'SF Pro Rounded', Arial, sans-serif;
    text-align: center;
    font-size: 1.25em;
    animation: fade 1.5s 1.2s forwards, slideUpDownAnimation 1.5s ease-in-out infinite;
    font-weight: bolder;
    color: var(--text);
    z-index: 6;
    background: transparent;
    letter-spacing: -30%;
    mix-blend-mode: difference;
    opacity: 0;
  }


  .bottom{
    font-size: medium;
    position: absolute;
    bottom: 2.5vh;
    opacity: 0;
    animation: fade-up 1.2s 1.4s ease forwards;
  }

  .bottom span{
    opacity: 0;
  }
  
  .bottom p{
    font-size: small;  
    overflow: hidden;
    letter-spacing: 120%;
    }
  @keyframes slideUpDownAnimation {
    0%, 100% {
      transform: translateY(7px);
    }
    50% {
      transform: translateY(2px);
    }
  }
  
  @keyframes fade {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }


  .more3{
    position: absolute;
    top: 52px;
    right: 20px;
    width: 105px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }  




  .more3 a{
    color: var(--text);
    text-decoration: none;  
    opacity: 0.4;
    transition: opacity 0.3s ease;
  }

  .more3 span{
    opacity: 0;
    padding-left: 6px;
    transition: all 0.3s;
    font-weight: 300;
    transition: all 0.3s ease;
}

.more3:hover .right{
    padding-left: 12px;
    opacity: 0.7;
}


.more3:hover a{
    opacity: 0.7;
}


  .more{
    position: absolute;
    bottom: 50px;
    right: 40px;
    width: 105px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }  
  
.more a{
  color: var(--text);
  text-decoration: none;  
  opacity: 0.4;
  font-size: small;
  cursor: pointer;
}

.more span{
    opacity: 0.4;
    padding-left: 6px;
    transition: all 0.3s;
    font-weight: 300;
    transition: all 0.3s ease;
}

.more:hover .right{
    padding-left: 12px;
    opacity: 0.7;
}


.more:hover a{
    opacity: 0.7;
}


.slide-up{
    opacity: 0;
  }
  
  .slide-up.animated {
    animation: fadeIng 1s ease forwards;
    opacity: 0.7;
  }
  
  @keyframes fadeIng {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
  
  
    100% {
        transform: translateY(0px);
    }
  }
  
  
  .image__container {
    position: relative;
    width: 100%;
    aspect-ratio: 5.5 / 6 ;
    overflow: hidden;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .gist {
    color: var(--text);
    font-size: medium;
    font-weight: 400;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 3%;
    padding-right: 3%;
    border-radius: 25px;
  opacity: 0;
  scale: 0.8;
  transform: translateY(15px);
  transition: all 0.5s;
letter-spacing: 120%;
  }
  
  .image__container:hover .gist{
    opacity: 0;
    scale: 1;
    transform: translateY(0px);
  
  }
  
  .project__image {
    position: absolute;
    object-fit: cover;
    overflow: hidden;
    scale: 1;
    filter: grayscale(30%);
  }
  .call{
    position: relative;
    height: 20vh;
  }

  .call a{
    font-weight: 400;
  }
  
  .centered-image-container {
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 25%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    backdrop-filter: blur(10px);

    display: none;
  }
  
  .project {
    flex-shrink: 0;
    position: relative;
    width: 25vw;
    height: 35vw;
    padding: 60px 10px 60px;
    display: flex;
    flex-direction: column;
  }



  
  
  .project img {
    width: 140%;
    height: 140%;
  }

  
  .centered-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
    opacity: 0.7;
  }
  
  .centered-image-container img:hover{
    opacity: 1;
  }
  
  
  .project__image img{
    width: 100%;
    height: 100%;
  
  }
  
  
  
  .project__details {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 1rem;
    color: #333;
  }
  
  .project__details p {
    font-size: 2vh;
    color: #333;
    display: none;
  }



  .projects__sticky {
    overflow: hidden;
    
    }

    .slider__container {
        overflow: hidden;
      scroll-behavior: smooth;
      white-space: nowrap;
    }

    .projects__slider {
      display: flex;
    }
    
    .projects__slider.marquee-animation {
      animation: marquee 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    }

    
    
@keyframes marquee {

    100% { transform: translateX(-100%); }
  }

  .coolio {
    overflow: hidden;
    width: 100%;
    padding-top: 2%;
    height: 60vh;
    display: flex;
    align-items: center;
  }


  .again{
    height: 60vh;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .endy{
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
  }


  .maint h1{
    font-weight: 400;
    color: var(--text);
    opacity: 0.4;
    font-size: 20px;
}

.slide-ups{
    opacity: 0;
    transform: translateY(100%);
    overflow: hidden
  }
  
  .slide-ups.animated {
    animation: come 1.2s ease forwards;
    opacity: 0.7;
  }


  .container p{
    font-weight: 400;
    opacity: 0.7;
  }

  .container{
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

.one{
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.one p{
    overflow: hidden;
}

  .one span{
    padding-left: 6px;
    transition: all 0.3s;
    font-weight: 300;
    opacity: 0;
}

.one:hover span{
    padding-left: 12px;
    opacity: 0.5;
}

.one:hover{
    opacity: 0.5;
}

.inner{
    align-items: left;
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 18px;

}


.centerthis{
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 35px;
    left: 40px;
    width: 100vw;
}



.more2{
    position: absolute;

    right: 70px;
    width: 105px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }  

  .more2 a{
    color: var(--text);
    text-decoration: none;  
    opacity: 0.4;
    font-size: small;
  }
  
  .more2 span{
      opacity: 0.4;
      padding-left: 6px;
      transition: all 0.3s;
      font-weight: 300;
  }
  
  .more2:hover .right{
      padding-left: 12px;
      opacity: 0.7;
  }

  .more2:hover a{
    opacity: 0.7;
  }

.theguy{
    opacity: 0.4;
    position: absolute;
    top: 50px;
    left: 40px;
    font-size: small;
    width: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    border-radius: 20px;
    overflow: hidden;
}
  
  

@keyframes dots {

    0% {
      content: ".";
      opacity: 1;
      animation-timing-function: ease-in-out;
    }
    30% {
      content: ".";
      opacity: 1;
    }
    40% {
      content: "..";
      opacity: 1;
      animation-timing-function: ease-in-out;
    }
    60% {
      content: "..";
      opacity: 1;
    }
    70% {
      content: "...";
      opacity: 1;
      animation-timing-function: ease-in-out;
    }
    100% {
      content: "...";
      opacity: 1;
    }

  }

  
  .loading-dots::after {
    content: "";
    animation: dots 3.5s infinite;
    display: inline-block;
    width: 5em;
    text-align: left;
    color: var(--text);
    opacity: 1;
  }


  .sidebar1 {
    height: 100vh;
    width: 100vw;
    background: var(--bg);
    position: fixed;
    z-index: 10000;
    top: 0;
    right: -2000px; /* Initially off-screen */
    opacity: 0; /* Initially hidden */
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #222;
    transition: opacity 0.7s ease, right 0s linear; /* Opacity transition without delay for right position */
  }

  @keyframes fadeIma {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fadeOut {
    from {
      opacity: 1;
      right: 0; /* Ensure sidebar stays at final position during fade-out */
    }
    to {
      opacity: 0;
    }
  }

  @keyframes right {
    to{
        right: -2000px;
    }
  }
  .nana{
    cursor: pointer;
  }


 .cornertxt{
    opacity: 0.4;
    position: absolute;
    top: 60px;
    left: 20px;
    width: 120px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
  }


  .cornertxt span{
    /* opacity: 0; */
    padding-right: 6%;
    transition: all 0.3s;
  }

  .cornertxt:hover span{
    padding-right: 11%;
    opacity: 0.7;
  }

  .cornertxt:hover{
    opacity: 0.7;
  }

  .cursor {
    position: fixed;
    background: #e9e9e964;
  backdrop-filter: blur(2px);
    width: 69px;
    height: 36px;
    border-radius: 32px;
    z-index: 7;
    transition: 0.3s  transform,    0.2s  opacity;
    user-select: none;
    pointer-events: none;
    transform: scale(0);

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8vh;
    letter-spacing: -5%;
    transition: transform translate 0.3s;
    pointer-events: none;
    border: 1px solid #666;
    backdrop-filter: blur(9px);
   
  }
  
  .cursor p{
    text-align: center;

    color: var(--bg);
    font-weight: 400;
    font-size: small;
  
  }
  
  
  
  .cursor.active {
    opacity: 1;
    transform: scale(1);
  }
  
  .cursor.active::before {
    opacity: 1;
  }
  
  
  @media (max-width: 500px) {
    .navigation{
        position: absolute;
        left: 28vw;
      width: 30vw;
      display: flex;
      justify-content: space-between;
    }

    .navigation a{
font-size: small;
  }


    .intro p{
        font-size: 24px;
        font-weight: 400;
        animation: come 1.2s 1.2s ease forwards;
        transform: translateY(100%);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .talk{
        width: 75vw;
    }

    .image__container {
        position: relative;
        width: 100%;
        aspect-ratio: 10 / 10 ;
        overflow: hidden;
        object-fit: cover;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .coolio {
        overflow: hidden;
        width: 100%;
        padding-top: 2%;
        height: 80vw;
        display: flex;
        align-items: center;
      }

      .project {
        width: 45vw;
        height: 55vw;
        padding: 8px 4px 60px;
      }
      
      .maint h1{
        font-weight: 400;
        color: var(--text);
        opacity: 0.4;
        font-size: 16px;
    }

    @keyframes marquee {

        100% { transform: translateX(-200%); }
      }



    .bottom p{
      font-size: small;  
      }
  }

  @media (hover:none){
    .cursor{
      display: none;
    }
  }