@font-face {
    font-family: myFont;
    src: url(./fog.ttf);
}

@font-face {
    font-family: slider;
    src: url(./Heading-Now-Variable.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

*::selection{
    background-color: black;
    color: rgb(236, 178, 18);
}

html{
    scroll-behavior: smooth;
}

body{
    color: #fff;
    font-family: myFont;
    overflow-x: hidden;
    background-color: blanchedalmond;
    margin: 0 auto;
    user-select: none;

}

/* Hide the default scrollbar */
::-webkit-scrollbar {
    width: 6px;
  }
  
  ::-webkit-scrollbar-track {
    background: #000000;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #7e7d7d;
    border-radius: 8px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .cursor-follower{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
    min-width: 25px;
    background-color: #F3E9DC;
    color: black;
    position: fixed;
    border-radius: 50%;
    transform: translate(-50%,0);
    font-weight: 800;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 998;
    opacity:0;
    transition: top .04s linear, left .04s linear, height .2s linear, width .2s linear;
  }

  body:hover .cursor-follower{
  opacity:1
  }
  
  .cursor-follower:before{
      content: "Play";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top:50%;
    left: 50%;
    letter-spacing: 1px;
    height: 110%;
    width: 200%;
    transform: translate(-50%,-50%);
    border-radius: 10px;
    opacity: 0;
    background-color: red;
  }

  /* Loader */
  #loader{
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: #F3E9DC;
    position: fixed;
    z-index: 999;
    color: black;
    padding: 20px;
}

.loader-text-container{
    position: absolute;
    width: 100%;
    text-align: center;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin-bottom: 50px;
    visibility: hidden;
/* border: 2px solid black; */
overflow: hidden;
}

.loader-text-container > h2{
    /* background-color: red; */
    font-size: clamp(30px,5vw,72px);
    transform: translateY(134%) rotate(15deg);
}

.loader-text-container > h2 > span{
    font-size: 10vw;
}

/* Landing Page */
.landing-page{
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #111111;
}

/* Navigation */
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    padding: .6em 3.5em;
    border-bottom: 1px solid white;
}

nav > h3 > a{
color: white;
padding: .5em 3em .5em .5em;
font-size: clamp(16px,2vw,60px);
font-weight: 100;
text-decoration: none;
border-right: 1px solid white;
letter-spacing: 3px;
}

nav > h1 > a{
    margin-left: 1.3em;
    font-size: clamp(13px,2.3vw,72px);
    letter-spacing: 2px;
    text-decoration: none;
    color: inherit;
}

nav > ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: .5em;
}

nav > ul > li > a > i{
    color: white;
    text-decoration: none;
    font-size: clamp(16px,1.6vw,64px);
    transition: all .2s ease;
    padding-bottom: 5px;
}

ul > li > a > i:hover{
scale: 1.2;
border-bottom: 1px solid white;
}

.hero{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
}

.title{
    z-index: 10;
    background-color: rgba(22, 22, 22, 0.678);
    backdrop-filter: blur(1px);
    border-radius: 40px;
    padding: 20px;
    text-align: center;
    /* perspective: 600px; */
}

.title > h1{
    font-size: clamp(26px,7vw,90px);
    letter-spacing: 7px;
    /* transform-origin: top; */
}

.hero-image{
    position: absolute;
    height: 200px;
    border-radius: 40px;
    object-fit: cover;
    min-height: 20%;
    height: 40%;
    width: 10%;
}

.image-1{
    top: 5%;
    left: 10%;
}
.image-2{
    top: 15%;
    right: 35%;
}
.image-3{
    bottom: 15%;
    left: 35%;
}
.image-4{
    bottom: 5%;
    right: 10%;
}

.big-hero-image{
    position: absolute;
    height: 100px;
    border-radius: 40px;
    object-fit: cover;
    height: 30%;
    width: 25%;
}

.image-5{
    top: 10%;
    left: 25%;
}
.image-6{
    bottom: 10%;
    right: 25%;
}
.image-7{
    bottom: 10%;
    left: 5%;
}
.image-8{
    top: 10%;
    right: 5%;
}

.prompt{
    position: absolute;
    border-radius: 50px;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%,0);
    background-color: #000000ce;
    padding: 10px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Introduction Page */
.introduction{
    display: flex;
    align-items: center;
    white-space: nowrap;
    height: 103vh;
    font-size: 26vw;
    background-color: black;
    overflow: hidden;
}

.introduction > h2{
    padding-left: 100px;
    font-family: slider;
    font-stretch: ultra-expanded;
}

/* Pages-Container */
.pages-container{
    display: flex;
    flex-direction: column;
}

.page{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(224, 213, 213);
    height: 100vh;
    overflow: hidden;
}

/* Figure 1 */
.illustration{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
    height: 570px;
    width: 570px;
    background-color: black;
    border-radius: 10px; 
    overflow: hidden;
}

.play-pause{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3%;
    right: 3%;
    /* opacity: 0; */
    border-radius: 50%;
    height: 30px;
    width: 30px;
    transition: all .1s ease;
    /* border: 2px solid blue; */
}

.fa-play:hover{
    scale: 1.15;
}

.illustration:hover .play-pause{
    opacity: 1;
}

.anim-btn{
    fill: #E0D5D5;
    font-size: 150%;
}

.fa-play{
    margin: 0 0 0 15%;
    /* display: none; */
}

.fa-pause{
   height: 500%;
    display: none;
    pointer-events: none;
}

.quote{
    display: flex;
    align-items: center;
    justify-content: center;
text-transform: uppercase;
text-align: center;
text-wrap: balance;
width: 100%;
border-radius: 5px;
letter-spacing: 3px;
line-height: 20px;
font-weight: 999;
color: #b9b9b9;
padding: .5em .5em;
font-size: clamp(12px, 1.4vw , 16px);
}

.middle-line{
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #b9b9b9;
}

.big-circle{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,0);
    height: 33%;
    width: 33%;
    border: 2px solid #b9b9b9;
    border-radius: 50%;
}

.reality{
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%,0);
}

.imagination{
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%,0);
}

/* Figure 2 */
.small-line{
    position: absolute;
    width: 15%;
    border-top: 2px solid #f0f0f0;
    border-radius: 10px;
    z-index: 1;
}

.small-line-1{
    top: 64.1%;
    left: 25.2%;
    rotate: -63.7deg;
    transform-origin: left;
}

.small-line-2{
    bottom:48.9%;
    left: 31.99%;
    rotate: 63.7deg;
    transform-origin: left;
}

.small-line-3{
    bottom: 35.1%;
    left: 25%;
    width: 13.8%;
    transform: translate(0,-64.4%);
    transform-origin: left;
}

.line{
    position: absolute;
    width: 54.5%;
    border-top: 1px dashed #b9b9b9;
}

.line-1{
    top: 64.3%;
    left: 25.2%;
    rotate: -63.7deg;
    transform-origin: left;
}

.line-2{
    top: 15.4%;
    right: -4%;
    rotate: 63.7deg;
    transform-origin: left;
}

.line-3{
    bottom: 35.3%;
    left: 25.1%;
    width: 48.7%;
    transform: translate(0,-64.4%);
    transform-origin: left;
}

.think-big{
    position: absolute;
    bottom: 24%;
    left: 50%;
    transform: translate(-50%, -24%);
}

/* Figure 3 */
.line-down{
    position: absolute;
    top: 29.8%;
    left: 50%;
    transform: translate(-50%,-30%);
width: 1px;
background-color: #f9f9f9;
height: 7.6%;
}

.box-1{
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%,-42%);
height: 16.6%;
width: 32.7272727%;
border-left: 1px solid #f9f9f9;
border-top: 1px solid #f9f9f9;
border-right: 1px solid #f9f9f9;
}

.box-1::before{
    content: "❌";
    position: absolute;
    bottom: -30%;
    left: -6%;
}

.box-2{
    position: absolute;
    top: 54.6%;
    right: 1%;
    transform: translate(-50%,-42%);
height: 7.27272727%;
width: 32.7272727%;
border-left: 1px solid #f9f9f9;
border-top: 1px solid #f9f9f9;
border-right: 1px solid #f9f9f9;
}

.box-2::before{
    content: "✅";
    position: absolute;
    bottom: -70%;
    right: -7%;
}

.box-2::after{
    content: "❌";
    position: absolute;
    bottom: -70%;
    left: -6%;
}

.if-you{
    position: absolute;
    top: -70%;
    left: -4900%;
    width: 100px;
    background-color: #111111fb;
    font-size: clamp(14px,1vw,40px);
}

.do-not-try{
    position: absolute;
    top: 50%;
    left: -45%;
    transform: translate(30%,-50%);
    width: 120px;
    background-color: #111111fb;
    font-size: clamp(14px,1vw,40px);
}

.try{
    position: absolute;
    top: 50%;
    right: -50%;
    transform: translate(-30%,-50%);
    width: 60%;
    background-color: #111111fb;
    font-size: clamp(14px,1vw,40px);
}

/* Figure 4 */
.top-image-section,.bottom-image-section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
height: 40%;
width: 43%;
font-size: 114px;
padding-bottom: 23px;
margin: 1px;
overflow: hidden;
}

.top-image-section > i,.bottom-image-section > i{
    z-index: 2;
}

.circle-1{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 90%;
    width: 90%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    bottom: 10%;
}

.circle-2{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85%;
    width: 85%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.circle-3{
    height: 80%;
    width: 80%;
    border: 2px solid white;
    border-radius: 50%;
}

.bottom-square-1{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    top: -50%;
    left: -50%;
    height: 100%;
    width: 100%;
}

.bottom-square-2{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    top: -50%;
    right: -50%;
    height: 100%;
    width: 100%;
}

.speak{
position: absolute;
bottom: 52%;
}

.listen{
    position: absolute;
    bottom: 2%;
}

/* Figure 5 */
.half-circle-div{
    position: relative;
    height: 36.3636364%;
    width: 72.7272727%;
    background: linear-gradient(to right, #000000e8,#000000af, #00000000);
    overflow: hidden;
    margin-top: 110px;
}

.half-circle{
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 200%;
    border: 2px solid white;
    border-radius: 50%;
    z-index: -1;
}

.happy{
    position: absolute;
    top: 30%;
    left: 2%;
    width: 150px;
    font-size: 13px;
}

.working{
    position: absolute;
    top: 30%;
    right: 2%;
    width: 200px;
    font-size: 13px;
}

/* Figure 6 */
.top-container,.bottom-container{
    display: flex;
    justify-content: center;
height: 50%;
width: 100%;
}

.box{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 50%;
}

.circle{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 50%;
    width: 50%;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    z-index: 3;
}

.before{
    font-size: clamp(12px,2vw,20px);
}

.top-container .options-line{
    background-color: white;
}

.bottom-container .options-line{
    background-color: rgb(58, 58, 58);
}

.bottom-container .options-line:nth-child(11){
    background: linear-gradient(to right, white, rgb(58,58,58));
}

.top-container .before, .bottom-container .before{
width: 15%;
height: 2100%;
border-radius: 50%;
transition: all .2s ease;
}

.bottom-container .before{
    color: rgba(255, 255, 255, 0.3);
}

.bottom-container .options-line:nth-child(11) >.before{
    color: rgb(255, 255, 255);
}

/* footer */
footer{
    display: flex;
    height: 100vh;
    background-color: #000000;
    color: #b9b9b9;
    letter-spacing: 1px;
}

.footer-left{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
    position: relative;
    height: 100%;
    width: 40%;
aspect-ratio: 1 / 1;
}

.footer-left > a {
    text-decoration: none;
}

.arrow-div{
    height: 330px;
    width: 330px;
}

.top-arrow{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 250px;
    height: 100%;
    width: 100%;
    background-color: rgb(224, 213, 213);
    box-shadow: 0 0 100px 2px rgb(146, 143, 143);
    border-radius: 50%;
    overflow: hidden;
    transition: all .7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.top-arrow > i{
    font-size: 200px;
    color: rgb(15, 15, 15);
    transform: translateY(35%);
    transition: all 1s cubic-bezier(0.175, 0.085, 0.22, 1.15);
}

.arrow-div:hover .top-arrow{
    box-shadow: 0 0 40px 2px rgb(146, 143, 143);
    scale: 0.83;
}

.arrow-div:hover .top-arrow > i{
    transform: translateY(-465%) rotateX(47deg);
}


.footer-right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 60%;
    padding: 3%;
}

.footer-info{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info{
    font-size: clamp(16px, 2vw + 1rem, 28px);
max-width: 70%;
}

.contact > h4{
    padding-bottom: 3px;
    font-weight: 100;
    font-size: 20px;
}

.contact > a{
    padding-bottom: 3px;
    font-weight: 100;
    font-size: 24px;
    color: #b9b9b9;
    text-underline-offset: 2px;
    transition: all .2s ease;
}

.contact > a:hover{
    color: #929191;
}

.footer-socials > ul{
    display: inline-flex;
    align-items: center;
    gap: 50px;
}

.footer-socials > ul > li{
    list-style: none;
}

.footer-socials > ul > li > a > i{
    color: white;
    font-size: 32px;
    transition: all .1s ease;
    padding-bottom: 5px;
}

/* Media Queries */
@media all and (max-width:952px){
nav ul {
    display: none;
}

nav h1{
    white-space: nowrap;
    margin-left: 50px;
}
}

@media all and (max-width:870px){
footer{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .footer-left,.footer-right{
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-left{
    order: 1;
    height: auto;
    padding: 5px 5px 0px 5px;
}

.footer-right{
    height: 65%;
}

.arrow-div{
    height: 200px;
    width: 200px;
}

.top-arrow > i{
    translate: 0 -30px;
    font-size: 160px;
}

.arrow-div:hover .top-arrow > i{
    transform: translateY(-460%) rotateX(47deg);
}

.footer-right{
    padding: 30px 10px 10px 10px;
    gap: 15px;
}

.info{
    max-width: 100%;
    text-align: center;
    line-height: 1.3;
}

.contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-socials{
    padding: 4px;
}
} 

@media all and (max-width:594px){
    .arrow-div{
        height: 200px;
        width: 200px;
    }

.top-arrow > i{
    translate: 0 -15px;
    font-size: 140px;
}

.arrow-div:hover .top-arrow > i{
    transform: translateY(-555%) rotateX(47deg);
}
}

@media all and (max-width: 570px){
    .illustration{
      height: 350px;
      width: 350px;
    }
       
    /* FIGURE-3 */
    .if-you{
     top: -60%;
     left: 50%;
     transform: translateX(-50%);
    }

    .do-not-try{
        left: -85%;
    }

    .box-1::before{
        bottom: -39%;
        left: -10%;
    }

    .box-2::before{
        bottom: -96%;
        right: -11%;
    }

    .box-2::after{
        bottom: -96%;
        left: -9.7%;
    }

    /* Figure-4 */
    .top-image-section > i,.bottom-image-section > i{
       font-size: 70px;
       transform: translateY(8px);
    }

    .speak{
        top: 43%;
    }

    .listen{
        bottom: 0;
    }

    /* Figure-5 */
    .happy{
        top: 33%;
        left: 2%;
        width: 150px;
        font-size: 10px;
    }
    
    .working{
        top: 33%;
        right: 2%;
        width: 150px;
        font-size: 10px;
    }
    
}

@media all and (max-width: 365px){
    .illustration{
      height: 250px;
      width: 250px;
    }

    /* Figure-1 */
    .think-big{
        bottom: 20%;
    }
      
    /* FIGURE-3 */
    .if-you{
        width: 54px;
        top: -100%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 10px;
        padding: 2px 0;
       }
   
       .do-not-try{
           width: 77px;
           left: -78%;
           font-size: 10px;
       }

       .try{
        font-size: 10px;
       }
   
       .box-1::before{
           bottom: -48%;
           left: -13%;
       }
   
       .box-2::before{
           bottom: -130%;
           right: -15%;
       }
   
       .box-2::after{
           bottom: -130%;
           left: -14%;
       }

       /* Figure-4 */
    .top-image-section > i,.bottom-image-section > i{
        font-size: 50px;
        transform: translateY(12px);
     }

     .speak{
        top: 44%;
     }

     .listen{
        bottom: -2%;
     }

     /* Figure-5 */
    .happy{
        top: 35%;
        left: 0;
        width: 120px;
        font-size: 8px;
    }
    
    .working{
        top: 35%;
        right: 0;
        width: 130px;
        font-size: 8px;
    }

    div.circle.quote{
        font-size: 8px;
        line-height: 10px;
    }
    
}