/* =========================
   Palette de couleurs
   =========================
   Vert menthe  : fraîcheur, sans alcool
   Orange       : agrumes, jus
   Rouge framboise : fruits rouges
   Bleu clair   : eau, bulles
   Beige clair  : neutralité, gastronomie
*/

/* Styles généraux */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F4F9F8; /* bleu très clair, effet eau */
    color: #2E2E2E;
    margin: 0;
    padding: 20px;
}

/* Titres */
h1 {
    color: #2FAF8E; /* vert menthe */
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    color: #E67E22; /* orange agrumes */
    border-bottom: 2px solid #E67E22;
    padding-bottom: 5px;
    margin-top: 40px;
}

/* Paragraphes */
p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Liens */
a {
    color: #C0392B; /* rouge fruits rouges */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #E74C3C;
    text-decoration: underline;
}

/* Images */
img {
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Sections (optionnel si tu ajoutes des div plus tard) */
section {
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 6px solid #2FAF8E;
}

/* Pied de page (si tu en ajoutes un) */
footer {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    margin-top: 40px;
}
