/* Couleurs principales
   - Vert pomme clair : #CFE8D5
   - Vert menthe frais : #8ED1B2
   - Ivoire lumineux : #F7F6F2
   - Bleu pétrole (textes) : #2F5D62
   - Rouge doux : #E27D60
   - Rouge profond : #C0392B
   - Ivoire clair : #F7F6F2
   - Brun foncé / texte : #4B2E2E
*/

/* Global */
body {
    font-family: "Georgia", "Times New Roman", serif;
    background-color: #F7F6F2;      /* Ivoire clair */
    color: #2F5D62;                 /* Bleu pétrole */
    margin: 0;
    padding: 0 20px;
    line-height: 1.6;
}

/* Titres */
h1 {
    color: #2F5D62;
    background: #CFE8D5;            /* Vert pomme */
    padding: 15px;
    border-left: 8px solid #8ED1B2; /* Accent menthe */
    font-size: 2.4em;
}

h2 {
    color: #2F5D62;
    margin-top: 30px;
    border-bottom: 3px solid #CFE8D5;
    padding-bottom: 5px;
}

/* Paragraphes */
p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Liens */
a {
    color: #5FB3A2;                 /* Menthe plus soutenue */
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    color: #2F5D62;
    text-decoration: underline;
}

/* Images */
img {
    margin: 20px 0;
    max-width: 100%;
    border: 4px solid #CFE8D5;      /* Cadre vert pomme */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(47,93,98,0.15);
}

/* Mise en forme du contenu */
body > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}