/* Couleur du lien dans le header */
#a-volx {
    color:#05abd2;  /* Couleur du lien */
}

/* Section de présentation */
.presentation {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.presentation-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.presentation-item .presentation-image {
    width: 45%;
    height: auto;
    object-fit: cover;
}

.presentation-item .presentation-text {
    width: 50%;
    padding: 10px;
}

.presentation-item h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.presentation-item p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Inversement */
.presentation-item.reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
    .presentation-item {
        flex-direction: column;
        align-items: center;
    }

    .presentation-item .presentation-image,
    .presentation-item .presentation-text {
        width: 100%;
        text-align: center;
    }

    .presentation-item.reverse {
        flex-direction: column;
    }
}

/* Initialisation de l'image avec un état de zoom de base */
.zoom-on-scroll {
    transition: transform 0.5s ease; /* L'effet de zoom prendra 0.5 secondes */
    transform: scale(1); /* L'image commence à taille normale */
}

