/* ============================================================
   Breakdance GSAP Parallax - Visual Cleanup
   ============================================================ */

/* Background parallax */
[data-bd-anim="parallax"] {
    position: relative;
    background-size: 130% auto !important;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Image parallax - container */
[data-bd-anim="image-parallax"] {
    position: relative;
    overflow: hidden;
}

/* Image parallax - image */
[data-bd-anim="image-parallax"] img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Mobile */
@media screen and (max-width: 768px) {
    [data-bd-anim="parallax"] {
        background-size: cover !important;
    }

    [data-bd-anim="image-parallax"] img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
    }
}