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

@font-face {
  font-family: 'SolareVF';
  src: url('fonts/SolareVF.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow-x: hidden;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a,
p {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'SolareVF', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

nav {
  position: fixed;
  width: 100%;
  padding: 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10em;
  z-index: 10;
}


.nav-item a {
  position: relative;
  top: 20px;
  text-decoration: none;
  color: #fff;
  opacity: 0.35;
}

.nav-item a#active {
  opacity: 1;
}


nav > div {
  flex: 1;
  display: flex;
  gap: 2em;
} 

.logo {
  display: flex;
  justify-content: center;
}

.logo a {
  font-size: 100px;
  font-weight: lighter;
}


.container {
  width: 100%;
  height: 2000vh;
}

.slider {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  transform-style: preserve-3d;
  perspective: 500px;
  overflow: hidden;
  z-index: 2;
}

.slide {
  position: absolute;
  width: 400px;
  height: 500px;
  will-change: transform, opacity;
}

.slide-img {
  width: 100%;
  height: 100%;
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
}

.slide-copy {
  position: absolute;
  width: 100%;
  bottom: -24px;
  display: flex;
  justify-content: space-between;
}

.slide-descriptionLeft {
  position: absolute;
  width: 530px;
  right: -580px; /* Adjust based on your design */
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-family: 'SolareVF', sans-serif;
  font-size: 19px;
  text-align: left;
}

.slide-descriptionRight {
  position: absolute;
  width: 530px;
  left: -580px; /* Adjust based on your design */
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-family: 'SolareVF', sans-serif;
  font-size: 19px;
  text-align: righ;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
