/* Ancora Fluida — ancora-fluida.css */

.af-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

.af-col {
    flex: 0 0 auto;
    height: 100%;
    will-change: transform;
    transform: scaleY(0);
    transform-origin: top center;
    /* background iniettato via inline CSS dal PHP */
}

/* Blocca scroll durante la transizione */
html.af-covering {
    overflow: hidden;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .af-col { animation: none !important; transition: none !important; }
}
