@font-face {
    font-family: "TIMMONSNY-Regular";
    src: url("https://db.onlinewebfonts.com/t/26b4978e67a51484ed7bccea1ffb38b8.eot");
    src: url("https://db.onlinewebfonts.com/t/26b4978e67a51484ed7bccea1ffb38b8.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/26b4978e67a51484ed7bccea1ffb38b8.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/26b4978e67a51484ed7bccea1ffb38b8.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/26b4978e67a51484ed7bccea1ffb38b8.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/26b4978e67a51484ed7bccea1ffb38b8.svg#TIMMONSNY-Regular")format("svg");
}

@font-face {
    font-family: "AkkuratMono-Regular";
    src: url("https://db.onlinewebfonts.com/t/2ae387e9fd826eca2b02f780e91333c7.eot");
    src: url("https://db.onlinewebfonts.com/t/2ae387e9fd826eca2b02f780e91333c7.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/2ae387e9fd826eca2b02f780e91333c7.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/2ae387e9fd826eca2b02f780e91333c7.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/2ae387e9fd826eca2b02f780e91333c7.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/2ae387e9fd826eca2b02f780e91333c7.svg#AkkuratMono-Regular")format("svg");
}

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

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

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

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

a, 
p {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "AkkuratMono-Regular", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 500;
}

nav,
footer {
    position: fixed;
    width: 100%;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: exclusion;
    z-index: 2;
}

nav {
    top: 0;
}

footer {
    bottom: 0;
}

.nav-items a {
    white-space: nowrap; 
    padding: 0 8px; 
}


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

.logo a {
    font-family: "TIMMONSNY-Regular", Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-weight: lighter;
}

.nav-items:nth-child(3) {
    justify-content: flex-end;
}

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

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

.slide {
    position: absolute;
    width: auto;
    max-width: 400px;
    height: auto;
    aspect-ratio: 4 / 5;
    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;
    font-size: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background: radial-gradient(
        circle,
        rgba(0,0,0,0) 60%,
        rgba(0,0,0,1) 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;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.loader-content {
    color: white;
    text-align: center;
}
.progress {
    width: 200px;
    height: 4px;
    background: #333;
    margin-top: 10px;
}
.progress-bar {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 0.3s ease;
}


@media screen and (max-width: 768px) {
    nav,
    footer {
        padding: 0.5em;
    }

    nav > div {
        gap: 0.5em;
    }

    .logo a {
        font-size: 24px;
    }

    a, p {
        font-size: 10px;
    }

    .slide{
        width: 50%;
    }

    .slide-copy {
        font-size: 8px;
    }
   
    
}

@media screen and (max-width: 480px) {
    .logo a {
        font-size: 18px;
    }

    a, p {
        font-size: 8px;
    }

    

    .slide-copy {
        font-size: 6px;
    }

    nav > div {
        flex-direction: column;
        gap: 0.2em;
    }

    
   
}

@media screen and (max-width: 1024px) and (max-height: 600px) {
    .slide {
        width: 70%;
        height: 70%;
    }
}

