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;
    }

.intro {
    text-align: center;
    padding: 40px 20px;
}

.destinations {
    background-color: #fff8dc;
    padding: 40px 20px;
}

.parcours {
    background-color: #7be3cb;
    padding: 40px 20px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.card {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
    }

    .card img {
        width: 100%;
        height: auto;
    }

    .card h3 {
        margin: 10px;
        color: #ff6347;
    }

    .card p {
        margin: 0 10px 15px;
    }

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;
    }