@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.cdnfonts.com/css/pp-neue-montreal");


*{
   padding: 0;
   margin: 0;
   box-sizing: border-box; 
}

body{
    font-family: "PP Editorial Old", "PP Neue Montreal","Manrope", sans-serif;
    background-color: #080808;
    overflow-x: hidden;
    cursor: none;
}

h1{
    text-transform: uppercase;
    font-size: 7rem;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.25rem;
}
h2{
    text-transform: uppercase;
    font-size: 5rem;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.25rem;
    color: #ffffff;
}

a,p{
    color: #fff;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 0.9;
    /* user-select: none; */
}

nav{
    position: fixed;
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2000;
}


.logo .menu-toggler {
    padding: 1rem;
    cursor: pointer;
}

.menu-toggler p{
    font-size: 1.5rem;
}

.logo{
    /* width: 10rem; */
}

.menu-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    display: flex;
    justify-content: flex-end;
    background-color:#000000;
    pointer-events: none;
    opacity: 0;
    will-change: opacity;
    z-index: 300;
}

canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
}

.menu-links{
    position: relative;
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item a{
    color: #4d4d4d;
    font-size: 4rem;
    line-height: 1;
    background: linear-gradient(#fff,#fff) left no-repeat, #4d4d4d;
    background-size: 0% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 20000000;
}



.hero{
    position: relative;
    width: 100%;
    min-height: 100svh;
    padding: 2rem;
    display: flex;
    gap: 20px;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    background: url(/assets/imgs/hero.png) no-repeat 50% 20%;
    background-size: cover;
    overflow: hidden;
    z-index: 10;
}


.hero h1{
    width: 50%;
    color: #fff;
}
.hero p{
    width: 100%;
    font-size: 1.2rem;
}

button{
    width: 15rem;
    background-color: #FFDF2B;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 0.5rem;

}

/* who we are section */
.whoweareintro{
    display: flex;

}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wwahero, .wwaoutro, .wwaabout, .wwaintro{
    position: relative;
    width: 100%;
    height: 100svh;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
}

.wwaintro-img, .wwaoutro-img{
    width: 300px;
    aspect-ratio: 5/7;
    overflow: hidden !important;
}

.wwaservices{
    position: relative;
    width: 100%;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
}
.wwaservices-header{
    position: relative;
    width: 100%;
    padding: 0 2rem;
    background-color: transparent;
    will-change: transform;
}


.wwaservices-header img{
    object-fit: contain;
}

.wwaservices-header:nth-child(1),
.wwaservices-header:nth-child(3){
    transform: translateX(100%) translateY(0%);
}


.wwaservices-header:nth-child(2){
    transform: translateX(-100%) translateY(0%);
    z-index: 2;
}

.services-copy{
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 155svh;
    padding: 2rem 2rem 25svh 2rem;
    text-align: center;
}
.animate-text{
    position: relative;
    width: 70%;
    margin: 0 auto;
    color: #4f4f4f;
    --clip-value: 100%;
}

.animate-text::before {
    content:attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    clip-path: inset(0 0 var(--clip-value) 0);
    will-change: clip-path;
}






@media (max-width:1000px){
    h1{
        font-size: 3rem;
        letter-spacing: 0;
    }

    .hero h1{
        width: 100%;
    }

    .menu-links{
        width: 100%;
        padding: 2rem;
    }

    .menu-item a{
        font-size: 2.5rem;
    }
    .animate-text{
        width: 100%;
    }
}

@media (max-width:580px){
    .animate-text{
        font-size: 3.5rem;
    }
}






[data-hidden] {
  opacity: 0;
  filter: blur(15px);
}

[data-animation="text-reveal"] {
  display: block;
  overflow: hidden;
}

[data-animation="text-reveal"] > * {
  display: block;
  line-height: 1;
  transform: translateY(100%);
}

.spacer {
  height: 150vh;
  position: relative;
  background: radial-gradient(circle at 20% 30%, #e8e8e8 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, #e0e0e0 0%, transparent 40%),
    linear-gradient(135deg, #e6e6e6 0%, #d9d9d9 50%, #e2e2e2 100%),
    linear-gradient(to bottom, #ebebeb 0%, #dedede 100%);
  background-blend-mode: normal;
  overflow: hidden;
}

.spacer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 70% 20%,
      rgba(100, 100, 100, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(210, 210, 210, 0.5) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
  text-align: center;
}

.intro__title {
  padding: 0 3.2rem;
  line-height: 1;
  color: #333;
  /* Darker text color to contrast with light background */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* Subtle text shadow for depth */
}

.intro__center-image {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.intro__center-image img {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  filter: brightness(0.8) contrast(1.2);
}

.footer {
  position: relative;
  height: 50vh;
  width: 100%;
  overflow: hidden;
  background-color: #101010;
  display: flex;
  justify-content: center;
  align-items: center;
}

#tunnelCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bottom-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 3.2rem;
}

.bottom-text {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: white;
}

/* SplitType animation styles */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s, transform 0.5s;
}

.char.visible {
  opacity: 1;
  transform: translateY(0);
}
