h1{
    margin-top: 32px;
    padding-left: 16px;
    text-align: center; /* CENTRAGE HORIZONTAL */
}


h2.contact_title{
    padding-left: 16px; 
    margin-top: 16px;
    text-align: center; /* CENTRAGE HORIZONTAL */
}

.info_button:hover{
    color: #295861;
    background-color: #e9e6df;
    box-shadow: 0 0 0 0.25rem rgba(41, 88, 97, 0.5); /* Vert semi-transparent */   
}

.ContactFormWrapper {
    width: 60%;
    margin: 0 auto;
    padding: 8px 16px;
}

.HomeContainer {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    align-items:flex-start;
    justify-content: space-between;
    padding: 16px;
    gap: 32px;
    flex-wrap: wrap;
}

.HomeText {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ou center selon ton besoin */
    box-sizing: border-box;
    padding: 16px;
}

.HomeImage {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden; /* empêche les débordements */
}

.HomeImage img {
    width: 100%;
    height: auto;
    max-height: 75vh; /* l'image ne dépassera jamais la hauteur visible */
    object-fit: cover; /* ou "contain" si tu préfères tout voir sans rognage */
    border-radius: 8px;
}

/* Responsive: stack in column under 768px */
@media (max-width: 768px) {
    .HomeContainer {
        flex-direction: column;
        text-align: center;
    }

    .HomeText {
        order: 1;
    }

    .HomeImage {
        order: 2;
    }

    .HomeText button {
        order: 3;
        margin-top: 16px;
    }

    .ContactFormWrapper {
        width: 100%;
        margin: 0 auto;
        padding: 0 12px;
        display: flex;
        justify-content: center;
    
}
}