                                             /*  ========= DEBUT DE PAGE ========= */
/* Titre */
h1 {
    color: white;
    text-align: center;
    margin-top: 150px;
    /* Réduisez cette marge selon vos besoins */
    margin-bottom: 0px;
    font-size: 3.5rem;
    padding-left: 200px;
    font-family: "Old Standard TT", serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}

/* Titre à l'envers */
.upside {
    color: white;
    text-align: center;
    margin: 0px;
    /* Réduisez cette marge selon vos besoins */
    font-size: 3.5rem;
    padding-left: 200px;
    transform: rotate(180deg);
    text-transform: uppercase;
}

/* Bouton réservation du haut */
.button-top {
    display: block;
    margin: auto;
    /* Ajoute une marge de 20px en haut, centre horizontalement */
    border-radius: 30px;
    text-align: center;
    padding: 15px 20px;
    font-family: "Nokora", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.2rem;
    margin-top: 50px;
}
                                             /*  ========= BOUTON TOP DE RESERVATION ========= */
/* Bouton réservation (texte) */
.button-top a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #7b0000;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

/* Bouton réservation hover */
.button-top a:hover {
    background-color: #ffffff;
    color: #7b0000;
}


                                            /*  ========= PREMIERE EXPLICATION MOTO ========= */
/* Titre niveau 2 */
h2 {
    color: white;
    font-family: "Nokora", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 3rem;
    margin-left: 180px;
    margin-top: -60px;
    flex: 1;
    word-spacing: 10px;
    margin-bottom: 50px;
}


.break-line {
    white-space: nowrap;
    display: block;
}

.container {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 60px;
}


/* Image moto transparent */
.transparent {
    width: 600px;
    height: auto;
    margin-left: 20px;
}


/* Image moto */
.image-moto {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 750px;
    width: 620px;
}


/* Texte explicatif */
p {
    color: white;
    font-family: "Nokora", sans-serif;
    font-size: 1.2rem;
    margin-left: 180px;
    margin-right: 500px;
    margin-bottom: 35px;
    word-spacing: 3px;
}



                                             /*  ========= DEUXIEME EXPLICATION ROUE ========= */
.container_wheel {
    display: flex;
}

/* Texte explicatif */
.container_wheel p {
    margin-right: 0px;
    margin-top: 280px;
    margin-right: -30px;
    white-space: pre-wrap;
}

.wheel {
    margin-top: 150px;
}

/* Image roue moto */
.wheel img {
    width: 850px;
    margin-left: 218px;
}


                                             /*  ========= TROISIEME EXPLICATION MOTEUR ========= */
.container_motor {
    display: flex;
    margin-top: 200px;
}

/* Texte explicatif */
.motor_text p {
    color: white;
    font-family: "Nokora", sans-serif;
    font-size: 1.2rem;
    width: 50%;
    margin-left: 280px;
    margin-top: 100px;
    margin-bottom: 200px;
    white-space: pre-wrap;
}

/* Image moteur moto */
.motor img {
    width: 850px;
    margin-right: -200px;
}



                                             /*  ========= BOUTON DU BAS DE RESERVATION ========= */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin-bottom: 50px;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 600px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #000;
    border: 2px solid #fff;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* Texte bouton */
.button-container h3 {
    font-size: 1.2rem;
    font-weight: 900;
    font-style: normal;
}

/* Bouton */
.button-container a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #7b0000;
    color: #ffffff;
    text-decoration: none;
    font-family: "Nokora", sans-serif;
    font-weight: 700;
    font-style: normal;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

/* Bouton hover */
.button-container a:hover {
    background-color: #ffffff;
    color: #7b0000;
}


