body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#scroll-container {
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#scroll-container::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}
.left-layout .svg-trigger {
    left: 20px;
    right: auto;
}
.left-layout .text-overlay {
    right: 20%;
    left: auto;
}

.right-layout .svg-trigger {
    right: 20px;
    left: auto;
}
.right-layout .text-overlay {
    left: 20%;
    right: auto;
    transform: translateY(-50%) translateX(-20px);
}
.right-layout .text-overlay.visible {
    transform: translateY(-50%) translateX(0);
}
.top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5), transparent);
    z-index: 3;
    pointer-events: none;
}
.bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5), transparent);
    z-index: 3;
    pointer-events: none;
}

.light-reveal-section {
    padding-top: 60px;
    padding-bottom: 60px;
}
.intro-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}

.intro-logo img {
    height: 150px;
    width: auto;
    opacity: 0.95;
}


