#heroSection {
    background: var(--blue-pink-gradient);
    text-align: center;
    text-wrap: balance;
}

#heroSection .btn {
    margin-left: auto;
    margin-right: auto;
}

#heroSection figure {
    margin-bottom: -4.5rem;
    margin-top: 20px;
}

#heroSection figure img {
    height: 250px;
    object-fit: contain;
}


/* Section Barometre */
#barometre nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

#barometre nav button {
    color: var(--grey);
    font-size: 14px;
    border: 1px solid var(--orange);
    cursor: pointer;
    transition: all 0.3s ease;
}

#barometre nav button.active {
    background: var(--primary-gradient);
    color: white;
}

#barometre article {
    width: 100%;
}

#barometre figure img {
    height: 250px;
    object-fit: contain;
}

#barometre article h3 {
    margin: 10px 0 20px 0;
    text-wrap: balance;
}

#barometre article a {
    margin-left: auto;
    margin-right: auto;
}

#barometre .cards-container {
    justify-content: center;
    align-items: center;
}

#barometre .spinner {
    border: 8px solid var(--grey);
    border-top: 8px solid var(--orange);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        #heroSection figure {
            margin-left: auto;
            margin-right: auto;
            margin-bottom: -6rem;
        }

        #heroSection figure img {
            height: 300px;
        }


        /* Section Barometre */
        #barometre nav {
            margin-bottom: 35px;
        }

        #barometre nav button {
            font-size: 15px;
        }

        #barometre article {
            width: calc(50% - 10px);
        }
    }



        /* Desktop Version */
        @media screen and (min-width: 992px) {
            #heroSection .section-container {
                display: flex;
                gap: 60px;
                justify-content: space-between;
                align-items: center;
            }

            #heroSection .content {
                width: 60%;
                text-align: left;
            }

            #heroSection .intro {
                text-align: left;
            }

            #heroSection .btn {
                margin-left: 0;
            }

            #heroSection figure {
                width: 40%;
                margin-bottom: -7.5rem;
            }

            #heroSection figure img {
                height: 420px;
            }


            /* Section Barometre */
            #barometre nav {
                margin-bottom: 40px;
            }

            #barometre nav button {
                font-size: 16px;
            }

            #barometre article {
                width: calc(25% - 15px);
            }
        }