body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f2f9ff;
    color: #333;
}

header {
    background-color: #ff6347;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.highlight {
    color: #ffd700;
}

nav ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

    nav a:hover {
        text-decoration: underline;
    }

footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 20px;
    margin-top: 40px;
}

header {
    background-color: #ff6347;
    padding: 20px 0;
}

.header-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-container {
    position: absolute;
    left: 20px;
}

.logo-rond {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

.header-center {
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

    nav a:hover {
        background-color: white; /* surlignement doux */
        color: #ff6347; /* texte devient orange au survol */
    }

.highlight {
    color: #ffd700;
}

.description {
    max-width: 900px; /* limite la largeur */
    margin: 40px auto; /* centre la section */
    padding: 0 20px;
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
}

.cta {
    text-align: center;
    margin-top: 50px;
}

.btn {
    background-color: #ff6347;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

    .btn:hover {
        background-color: #ff8266;
    }
.itineraire {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 900px;
    overflow: hidden;
    text-align: left;
}

/* Galerie avec deux images */
.galerie-parcours {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 15px;
}

    .galerie-parcours img {
        flex: 1;
        height: 250px;
        object-fit: cover;
        border-radius: 10px;
    }

/* Texte descriptif */
.texte-itineraire {
    padding: 20px;
}

    /* Nouveau style H3 pour bien les distinguer */
    .texte-itineraire h3 {
        background-color: #e0f0ff;
        padding: 10px 15px;
        border-left: 6px solid #0077b6;
        margin-bottom: 20px;
        color: #023e8a;
        font-size: 1.5em;
    }

    /* Liste Jours */
    .texte-itineraire ul {
        padding-left: 20px;
        line-height: 1.6;
    }

/* Premier h3 (bleu) */
.itineraire:nth-of-type(1) h3 {
    background-color: #e0f0ff;
    border-left: 6px solid #0077b6;
    color: #023e8a;
}

/* Deuxième h3 (rouge) */
.itineraire:nth-of-type(2) h3 {
    background-color: #ffe5e5;
    border-left: 6px solid #c62828;
    color: #b71c1c;
}

/* Troisième h3 (vert) */
.itineraire:nth-of-type(3) h3 {
    background-color: #e0f7e9;
    border-left: 6px solid #2e7d32;
    color: #1b5e20;
}

.parcours h2 {
    font-size: 2.2em;
    font-weight: bold;
    margin: 60px 0 30px 40px; /* Espace autour, décalage du bord gauche */
    color: #023e8a; /* bleu foncé élégant, comme dans d'autres pages */
    font-family: 'Segoe UI', sans-serif;
    border-left: 6px solid #ff6347;
    padding-left: 15px;
}