/* Parallax Styles */
.parallax-container {
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* Ensure content is above bg */
}

/* 
 * The background layer.
 * Height > 100% to allow movement without showing gaps.
 * Top < 0 to start "above" and scroll down/up.
 */
.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    /* 40% extra height for movement buffer */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    will-change: transform;
    pointer-events: none;
    /* Let clicks pass through to content */
}

/* Ensure content sits on top */
.parallax-content {
    position: relative;
    z-index: 2;
}