/* GSAP Scroll Carousel - Stili base */

section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

section .outer {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

section .inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

section .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Colori di sfondo per ogni sezione */
section.first .bg {
    background-color: #1a1a2e;
}

section.second .bg {
    background-color: #16213e;
}

section.third .bg {
    background-color: #0f3460;
}

section.fourth .bg {
    background-color: #533483;
}

section.fifth .bg {
    background-color: #e94560;
}

/* Stile heading */
.section-heading {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    position: relative;
}

/* Miglioramenti responsive */
@media (max-width: 768px) {
    .section-heading {
        font-size: clamp(1.5rem, 6vw, 3rem);
        padding: 0 15px;
    }
}
