.nuvero-overscroll {
    position: relative;
    overflow: visible;
    min-height: 100vh; /* Assurer une hauteur minimale */
}

.nuvero-overscroll .section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    z-index: 1;
    width: 1240px;
    margin-left: auto;
    margin-right: auto;
    /* contenu au-dessus du fond */
}



/* Background fixed */
.nuvero-overscroll .bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #f0f0f0; /* couleur de secours */
    background-size: cover;
    background-position: center;
    transition: opacity 0.4s ease;
}

.nuvero-overscroll .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Retour à 0 pour que seule l'image active soit visible */
    background-size: cover;
    background-position: center;
    transition: opacity 0.4s ease;
    z-index: 0; /* S'assurer que les images sont au même niveau que le fond */
}

.nuvero-overscroll .bg-image.is-active {
    opacity: 1;
}

/* Style du titre */
.nuvero-overscroll .section-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Style de la description */
.nuvero-overscroll .section-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Style du bouton */
.nuvero-overscroll .section-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Animations au survol du bouton */
.button-hover-animation-lift .nuvero-overscroll .section-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button-hover-animation-grow .nuvero-overscroll .section-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

