body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
header {
    background-color: #f2f2f2;
    padding: 10px 20px;
}

.bandeau {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bandeau img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

.titre-site {
    font-size: 22px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    margin-left: 15px;
}

.menu-header {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

.menu-header li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* PAGE PRINCIPALE */
.page-main {
    width: 90%;
    margin: auto;
    margin-top: 20px;
}

/* SECTION BIENVENUE */
.bienvenue {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.bienvenue img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.bienvenue h1 {
    margin: 0;
}

.separator {
    width: 100%;
    height: 2px;
    background-color: #ddd;
    margin: 30px 0;
}

/* SECTION ATTRACTIONS */
.title-category {
    text-align: center;
    margin-bottom: 20px;
}

.picture-propos {
    display: flex;
    justify-content: center;
}

.infos-picture-propos {
    display: flex;
    gap: 30px;
}

.picture-propos-text {
    text-align: center;
    width: 200px;
}

.picture-propos-text img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* SECTION MOTIVATIONS */
.motivations {
    text-align: center;
}

.motiv-block {
    background-color: #f7f7f7;
    width: 60%;
    margin: 15px auto;
    padding: 15px;
    border-radius: 8px;
}

/* FOOTER */
footer {
    background-color: #f2f2f2;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}

/* AJOUT — cartes attractions/horaires/avis */
.liste-attractions,
.liste-horaires,
.liste-avis {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 90%;
    margin: 20px auto;
}

.card {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card h3 {
    margin-top: 0;
}

/* AJOUT — menu du header (le HTML utilise .menu_liens, pas .menu-header) */
.menu_liens ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu_liens li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
