
html {
}

body {
    margin: 0;
    /* Height will be set by JavaScript based on the number of sections */
}

.scroll-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Prevents content from spilling out */
}

.scroll-container > * { /* Sections */
    position: absolute;
    top: 0; /* Below navbar */
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 48px 16px;
    opacity: 0; /* Initially all sections are transparent */
    /* Transitions are removed for direct scroll-based opacity */
}

.scroll-container > *.active {
    opacity: 1; /* The very first section is made visible by JS */
}

/* Adjustments for hero and footer */
.hero {
    background-color: transparent;
}

footer {
    background-color: transparent;
    padding: 32px 16px;
}
