@font-face {
    font-family: 'Mona-Sans';
    src:
      url('../font/Mona-Sans.woff2') format('woff2 supports variations'),
      url('../font/Mona-Sans.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-stretch: 75% 125%;
}

@font-face {
    font-family: 'That-New-Pixel';
    src: url('../font/That-New-Pixel.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Scheherazade';
    src: url('../font/ScheherazadeNew-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Scheherazade';
    src: url('../font/ScheherazadeNew-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Scheherazade';
    src: url('../font/ScheherazadeNew-Medium.ttf') format('truetype');
    font-weight: 500;  /* Medium weight */
    font-style: normal;
}

@font-face {
    font-family: 'Scheherazade';
    src: url('../font/ScheherazadeNew-SemiBold.ttf') format('truetype');
    font-weight: 600;  /* SemiBold weight */
    font-style: normal;
}

body{
    margin: 0;
}

html{
    font-family: 'Mona-Sans';
    font-size: 10px;
    margin: 0;
    background-color: #101316; /*#0A0F15*/
    overflow-x: hidden;
    
    @media (min-width: 1920px) {
        font-size: 0.52vw;
    }
    @media (min-width: 2561px) {
        font-size: 11px;
    }
}

html, body {
    overscroll-behavior: none;
  }
  
  /* For mobile browsers */
  @supports (-webkit-touch-callout: none) {
    body {
      height: -webkit-fill-available;
    }
  }

main{
    width: 100%;
}

.content{
  transition: height 0.2s ease-in-out;
}

.hidden{
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0, 0.77, 0.21, 1);
}

.disnone{
    display: none !important;
}

button{
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-family: 'Mona-Sans';
    font-weight: 600;
    font-size: 1.6rem;
    background: #F4F4F4;
	color: #0A0F15;
	border-radius: 0.8rem;
	padding: 1.6rem 2rem 1.6rem 1.6rem;
	cursor: pointer;
	outline: none;
    border: none;
    transition: all 0.2s cubic-bezier(0, 0.77, 0.21, 1);
}

button:hover{
    opacity: 0.8;
}

#loadin{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 600;
    pointer-events: none;
}

#loadin h1{
    font-family: 'That-New-Pixel';
    font-style: normal;
    font-weight: 400;
    font-size: 8rem;
    line-height: 110%;
    text-align: center;
    color: #0A0F15;
    margin: 0;

    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    z-index: 601;
}

#loadin-box{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; 
    
    
}

#loadin-box div{
    height: 11.11%;
    width: 6.25%;
    background-color: #F4F4F4;
}

#tooltip {
    position: absolute;
    background-color: #000;
    color: #F4F4F4;
    font-family: 'Mona-Sans', sans-serif;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    pointer-events: none; /* Prevent interaction with tooltip */
    transform: translateX(10px); /* Offset to the right of the cursor */
    z-index: 1000;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
}

#tooltip.visible {
    opacity: 1;
}

#tooltip.hidden {
    display: none;
}

#contact{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    backdrop-filter: blur(8px);
    background-color: #0b0e14a1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-content{
    /* Frame 9346 */

    box-sizing: border-box;

    position: relative;
    width: 45rem;
    min-height: 52.5rem;
    max-width: 90%;

    background: #000000;
    border: 1px solid rgba(244, 244, 244, 0.7);
    border-radius: 20px;

    overflow: hidden;
}

#contact-top{
    /* Rectangle 77 */
    width: 100%;
    height: 10.4rem;

    background: #1C1B1F;

    position: relative;

}

#contact-top #contact-arrow{
    position: absolute;
    top: calc(50% - 1.2rem);
    left: 2.1rem;
    height: 2.4rem;
    cursor: pointer;
}

#contact-top #contact-profile{
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

#contact-top #contact-profile div{ 
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background: url('https://media.licdn.com/dms/image/v2/D4D03AQHMwu6CXqnBsQ/profile-displayphoto-shrink_200_200/B4DZPBBuPYHUAY-/0/1734110275063?e=1739404800&v=beta&t=tN0cWVUsWYMk7YhlYyiN4yVwSL8BBPPc1lPr67RF_m8');
    background-size: cover;
    margin: 0 auto;
}

#contact-top #contact-profile span{
    font-family: 'Mona-Sans';
    font-weight: 400;
    font-size: 1.2rem;
    color: #F4F4F4;
    text-align: center;
}

#contact-messages{
    padding: 1.6rem;
}

#contact-messages .contact-time{
    font-family: 'Mona-Sans';
    font-weight: 400;
    font-size: 1.2rem;
    color: #88878C;
    margin: 0;
    margin-bottom: 1.6rem;
    text-align: center;
}

#contact-messages .contact-time b{
    font-weight: 600;
}

#message-container{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

#message-container p{
    font-family: 'Mona-Sans';
    font-size: 1.8rem;
    color: #F4F4F4;
    margin: 0;
    line-height: 120%;
}

.message{
    display: flex;
    position: relative;
    align-items: center; /* Vertically center content */
    background-repeat: no-repeat;
    background-position: top left;
}

.message-from{
    transform-origin: right;
}

#msg1{
    align-self: flex-end;
    background-image: url('../svg/msg1.svg'); /* Use image as background if applicable */
    background-size: auto 6.1rem; /* Match the original height */
    
    width: 27.9rem;
    height: 6.1rem;
}

#msg1 p{
    margin-left: 1.3rem; /* Add padding to match spacing */
    width: 90%;
}

#msg2{
    align-self: baseline;
    background-image: url('../svg/msg2.svg'); /* Use image as background if applicable */
    background-size: auto 17.3rem; /* Match the original height */
    
    width: 29.1rem;
    height: 17.3rem;

    transform-origin: top left;
}

#msg2 p{
    margin-left: 2rem; /* Add padding to match spacing */
    width: 100%;
}

#msg2 span{
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

#msg2 a{
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    color: #F4F4F4;
}

#msg3{
    align-self: flex-end;
    background-image: url('../svg/msg3.svg'); /* Use image as background if applicable */
    background-size: auto 3.9rem; /* Match the original height */
    
    width: 24.2rem;
    height: 3.9rem;
}

#msg3 p{
    margin-left: 1.3rem; /* Add padding to match spacing */
    width: 100%;
}

#bg-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    mix-blend-mode: screen;
}

#bg-img{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    mix-blend-mode: screen;
    opacity: 0.5;
}


nav{
    position: fixed;
    left: 50%;
    top: 2.4rem;
    transform: translateX(-50%);

    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 4.8rem;
    background-color: #0a0f154c;
    backdrop-filter: blur(1rem);
    border-radius: 0.8rem;
    padding: 0.4rem 1rem;
    z-index: 500;
}

nav ul{
    width: 100%;
    display: flex;
    gap: 1.2rem;
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
    align-items: center;
}

nav ul li{
    height: 3.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul li img{
    height: 100%;
}

nav ul li a{
    text-decoration: none;
    font-family: 'Mona-Sans';
    font-size: 1.6rem;
    color: #F4F4F4;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.2s cubic-bezier(0, 0.77, 0.21, 1);
}

nav button{
    padding: 1.2rem 2rem 1.2rem 1.6rem;
}

nav ul li a:hover{
    opacity: 0.8;
}

footer{
    margin: 0 auto;
    width: 100%;
    padding: 6.4rem 0;
    display: flex;
    flex-direction: column;
    gap: 6.4rem;
    align-items: center;
}

footer button img{
    margin-top: -0.2rem;
}

#footer-nav{
    width: 100%;
    display: flex;
    gap: 3.2rem;
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
    align-items: center;
}

#footer-nav li{
    text-decoration: none;
    font-family: 'Stardom';
    font-size: 3.2rem;
    color: #F4F4F4;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#footer-nav li a{
    text-decoration: none;
    color: #F4F4F4;
    width: 20rem;
    transition: all 0.2s cubic-bezier(0, 0.77, 0.21, 1);
}

#footer-nav li a:hover{
    opacity: 0.8;
}

#footer-bottom{
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    width: 36rem;
}

#footer-copy{
    font-family: 'Mona-Sans';
    font-size: 1.6rem;
    font-weight: 300;
    color: #F4F4F4;
    text-align: center;
    margin: 0;
    line-height: 150%;
}

.mobile{
    display: none;
}

.desktop{
    display: block;
}

@media (max-width: 960px){
    #footer-nav{
        flex-direction: column;
    }

    .desktop{
        display: none;
    }

    .mobile{
        display: block;
    }
}



.noise-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;  /* Use viewport width */
    height: 100vh;  /* Use viewport height */
    z-index: 999;
    pointer-events: none;
    overflow: hidden;  /* Prevent overflow */
}

  #noise-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.11;
    mix-blend-mode: normal;
  }

  .color-overlay {
    transform: translate3d(0,0,0);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.05;
    background: linear-gradient(0deg, rgb(153 0 255) 0%, rgb(205 43 43) 50%, rgb(227 166 80) 100%);
    mix-blend-mode: lighten;
  }


html.lenis, html.lenis body {
height: auto;
}

.lenis.lenis-smooth {
scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
overscroll-behavior: contain;
}

.lenis.lenis-stopped {
overflow: clip;
}

.lenis.lenis-smooth iframe {
pointer-events: none;
}



#white-trans{
    width: 100%;
    z-index: 3;
    transform: rotate(180deg);
    margin-top: -20rem;
    pointer-events: none;
}

#white-trans div{
    width: 100%;
    height: 8rem;
    background: #F4F4F4;
    transform: scaleY(0);
    
}