* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

.background {
    display: flex;
    height: 100vh;
    background-image: url("img/background-desktop.jpg");
    background-position: top; /* Caler le background en haut pour mobile aussi */
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.column {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-column {
    /* Vous pouvez ajouter une image ou un contenu ici si nécessaire */
}

.right-column {
    display: flex;
    flex-direction: column;
    padding-right: 80px;
    justify-content: center; /* Centrer verticalement */
}

h1 {
    font-size: 30px;
    color: white;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px; /* Espacement entre le H1 et la div velo */
}

.velo {
    font-size: 25px;
    color: white;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.cta {
    display: inline-block;
    padding: 2% 4%; /* Marge haut/bas 2%, droite/gauche 4% */
    background-color: #8B4513; /* Marron */
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

/* Version mobile */
@media (max-width: 768px) {
    .background {
        background-image: url("img/background-mobile.jpg");
        background-position: top; /* Caler le background en haut pour mobile aussi */
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .left-column {
        display: none;
    }

    .column {
        width: 100%;
    }

    .right-column {
        justify-content: center; /* Centrer verticalement */
        padding-right: 0;
        align-items: center; /* Centrer horizontalement */
        margin-top: 0; /* Ajustement de la marge */
    }

    h1 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 10px; /* Ajustement du spacing */
  
    }

    .velo {
        font-size: 16px;
        text-align: center;
    }
    .cta {
        width: auto;
        text-align: center;
        padding: 2% 4%; /* Marge mobile identique */
    }
}
