/* Homepage (index.htm): full-page pattern + parallax zones */

body.page-home {
    background-color: #e8dcc8;
    background-image: url("fond.jpg");
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: top center;
}

.home-parallax-zone {
    position: relative;
    overflow: visible;
    z-index: 1;
}

body.page-home .content-section {
    position: relative;
}

/* Clip parallax drift inside section bounds (prevents overlap with hero / next block) */
.home-parallax-zone--content {
    overflow: hidden;
}

.home-parallax-zone .home-parallax-foreground {
    position: relative;
    z-index: 1;
}

.home-parallax-zone .archive-highlights {
    position: relative;
    z-index: 2;
}

/* Parallax on column wrappers only (not carousel/img innards) */
.home-parallax-zone .home-parallax-layer {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .home-parallax-layer[data-speed] {
        transform: none !important;
    }
}
