/* Background Parallax Container - Fullscreen Fixed */
#background-parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -10;
    pointer-events: none;
}

/* Base Layer Styles */
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    /*padding-top: 80px;*/
    width: 100%;
    height: 100%;
    will-change: transform;
}

/* 1. Distant Scene (Sky) - Z-Index -5 */
.layer-distant {
    z-index: -5;
}