/* Overlay scuro */
#home .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Titolo principale */
#home .section-title {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 4.2em;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

/* Subtitle */
#home .section-subtitle {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 2em;
    line-height: 1.5;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    white-space: nowrap;
    color: #fff;
}

/* Animazione Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #home .section-title {
        font-size: 3em;
    }
    #home .section-subtitle {
        font-size: 1.5em;
    }
}
