/* Police simple et lisible */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #222;
}

/* MENU */
header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    letter-spacing: 1px;
}

.menu a:hover {
    color: #000;
}

/* TITRE + PHOTOS */
.titre-section {
    text-align: center;
    padding: 40px 20px;
}

.titre-site {
    font-size: 42px;
    font-weight: bold;
    margin: 20px 0;
}

.photo-large {
    margin: 20px auto;
    width: 80%;
    max-width: 900px;
}

.photo-large img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* INTRO */
.intro {
    font-size: 20px;
    margin: 30px auto;
    width: 80%;
    max-width: 900px;
    line-height: 1.6;
}

/* CONTENU TEXTE */
.contenu {
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contenu h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contenu p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}
