/*
	Theme Name: Formans
	Theme URI: https://formans.co.uk/
	Author: Sam Briggs
	Author URI: https://streamstudio.co.uk/
	Version: 1.0.0
*/

.parallax-section {
    height: 100vh;
    position: relative;
}
.parallax-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #000;
}
.parallax-layer {
    position: absolute;
    inset: 0;
    will-change: transform;
    transform: translate3d(0,0,0);
}
.parallax-media,
.parallax-layer iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}
.parallax-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,.45);
    padding: 24px;
    max-width: 700px;
    margin: auto;
}
@media (prefers-reduced-motion: reduce) {
    .parallax-layer { transform: none !important; }
}
