@font-face {
    font-family: "Receipt";
    src: url(../font/receipt.woff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 1.5px;
    font-size: 11px;
    text-transform: capitalize;
    font-weight: 400;
}

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: "Receipt";
    background: #131313;
    min-height: 100vh;
    color: rgb(130, 130, 130);
}

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

.nav {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.menu {
    width: 340px;
    height: auto;
    padding-top: 20px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;
    list-style: none;
    gap: 40px;
}

@media (max-width: 768px) {
    .menu {
            padding-top: 20px;
    }
}

a {
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(130, 130, 130);
    font-size: 11px;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

section:nth-of-type(1) {
    background: #131313;
}

section:nth-of-type(2) {
    background: #131313;
}

section:nth-of-type(3) {
    background: #131313;
}

/* Spline container wrapper */
.spline-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* ADDED: keep Spline below menu */
}

/* ADDED: Ensure spline-viewer stays below menu */
spline-viewer {
    position: relative;
    z-index: 1;
}

/* Mobile scroll overlay - Option 4 */
.mobile-scroll-overlay {
    display: none;
}

@media (max-width: 768px) {
    .mobile-scroll-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        pointer-events: auto;
    }

    spline-viewer {
        pointer-events: none;
        touch-action: pan-y;
    }
}

.title {
    position: fixed;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
    top: 0;
    left: 0;
}

footer {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    bottom: 0;
    pointer-events: none;
}