/* style.css */

/* Couleurs principales */
:root {
    --couleur-fond: #fff8f0;       /* fond crème doux */
    --couleur-texte: #4b2e2b;      /* brun foncé, rappel du bois/fumé */
    --couleur-accent: #d94f3d;     /* rouge piment épicé */
    --couleur-titre: #a63e2a;      /* orange feu, rappel cidre fumé */
    --couleur-lien: #b23c2f;       /* rouge foncé pour liens */
    --couleur-lien-hover: #d94f3d; /* rouge vif au survol */
    --couleur-bordure: #e1b07e;    /* ambré clair, rappel pomme */
}

/* Style général */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--couleur-fond);
    color: var(--couleur-texte);
    line-height: 1.6;
    margin: 0;
    padding: 0 20px;
}

/* Titres */
h1 {
    color: var(--couleur-titre);
    text-align: center;
    margin-top: 30px;
    font-size: 2.5em;
    text-shadow: 1px 1px 2px #f0d9c5;
}

h2 {
    color: var(--couleur-accent);
    margin-top: 25px;
    border-bottom: 2px solid var(--couleur-bordure);
    padding-bottom: 5px;
}

/* Paragraphes */
p {
    font-size: 1.1em;
    margin: 15px 0;
}

/* Liens */
a {
    color: var(--couleur-lien);
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: var(--couleur-lien-hover);
    text-decoration: underline;
}

/* Image */
img {
    display: block;
    max-width: 250px;
    height: auto;
    margin: 20px auto;
    border: 3px solid var(--couleur-bordure);
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

/* Conteneur principal pour centrer le contenu */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff5eb;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
