/* fade-crossfade.css */


.fade-container.fullviewport {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;

    opacity: 0;
    pointer-events: none;
    transform: scale(0.98);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-container.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}






/* === Fade Pagination  === */
.fade-pagination {
    position: fixed;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    height: 48px;
    user-select: none;
    z-index: 1000;

}

/* Standard-Dot (inaktiv) */
.fade-pagination .dot {
    position: relative;
    width: 24px;
    height: 24px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-inline: 5px;
    box-sizing: border-box;
}

/* Innerer Punkt (inaktiv) */
.fade-pagination .dot::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Aktiver Dot */
.fade-pagination .dot.active {
    width: 34px;
    height: 34px;
    border-color: #ffffff;
}

/* Innerer Punkt aktiv */
.fade-pagination .dot.active::before {
    width: 8px;
    height: 8px;
    background-color: #F26161;
}

/* SVG Fortschrittsring */
.fade-pagination .dot svg.progress-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 36px;
    height: 36px;
    transform: rotate(-90deg);
    pointer-events: none;
    z-index: 2;
}

/* Fortschrittskreis-Pfad */
.fade-pagination .dot .progress-ring__circle {
    stroke: #F26161;
    stroke-width: 3.2;
    fill: transparent;
    r: 22.4;
    cx: 25;
    cy: 25;
    stroke-dasharray: 140.77; /* 2πr ≈ 2×π×23 */
    stroke-dashoffset: 140.77;
    transition: stroke-dashoffset linear;
}





