/* FIX: This enables smooth, gliding scrolls */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

header {
    padding: 20px 50px;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
}

nav h1 {
    font-size: 24px;
}

main {
    text-align: center;
}

#hero {
    height: 90vh; /* Keep this at 90vh to show there's content below */
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

spline-viewer {
    width: 100%;
    height: 100%;
}

#waitlist {
    padding: 100px 20px;
    background-color: #000;
    position: relative;
    z-index: 5;
    min-height: 50vh;
}

#waitlist h2 {
    font-size: 48px;
    margin-bottom: 40px;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.button {
    background-color: #fff;
    color: #000;
    padding: 20px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.button:hover {
    background-color: #ccc;
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    position: relative;
    z-index: 5;
}