﻿/* Base page styling */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: Arial, sans-serif;    
}


/* Full screen sections */
.section {
    height: 100vh;
    width: 100%;
}

/* Wave container (first section) */
.wave-container {
    position: relative;
    overflow: hidden;
    z-index: 10;
    background: linear-gradient(to bottom, white 0%, white 50%, #696969 100%);
}

/* The WebGL canvas area */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Content below the wave */
.content {
    
    padding: 80px 40px;
    z-index: 0;
}


.section-two {
    position: relative;
    background: linear-gradient(to bottom, #696969 0%, black 50%, black 100%);
    height: 100vh;
    scroll-snap-align: start;
}


.particles-second {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* or full height if desired */
    pointer-events: none;
    z-index: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 5;
}

.scroll-indicator-two {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 5;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}



/*
html, body {
    height: 100%;
}

body {
    margin: 0;
    background: linear-gradient(to bottom, white 0%, white 50%, #696969 100%);
}

canvas {
    display: block;
}

.particles {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

*/
