/* Ausgangszustand (transparent) */
.elementor-location-header {
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

header {
    position: fixed;
    z-index: 99;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
}

/* Zustand beim Scrollen */
.scrolled {
    /* background-color: rgba(255, 253, 243, 0.9); Floral White with transparency */
    background-color: rgba(238, 245, 224, 0.9);
    z-index: 99;
    position: fixed;
} 

.work-card.one {
    transform: rotate(-4deg);
    z-index: 1;
}

.work-card.two {
    transform: rotate(4deg);
    z-index: 2;
}

.work-card.three {
    transform: rotate(-4deg);
    z-index: 3;
}

.work-card {
    position: sticky;
    top: var(--section-spacing);
}

.work-content {
    position: sticky;
    top: var(--section-spacing);
}