.angie-scroll-reveal-container {
    position: relative;
    width: 100%;
}

.angie-scroll-reveal-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.angie-reveal-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    clip-path: inset(0 50% 0 50%); /* Start hidden from center */
    transition: clip-path 0.1s ease-out;
}

.angie-reveal-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layer 1 is always visible or reveals first */
.layer-1 {
    z-index: 1;
}

.layer-2 {
    z-index: 2;
}

.layer-3 {
    z-index: 3;
}

.layer-4 {
    z-index: 4;
}
