/* Reset et polices */
:root {
    --couleur-primaire: #3a2c1a;
    --couleur-secondaire: #5e4a2f;
    --couleur-accent: #a07838;
    --couleur-texte: #f9f4e6;
    --couleur-texte-sombre: #333;
    --police-titre: 'Times New Roman', serif;
    --police-texte: 'Georgia', serif;
}

body {
    font-family: var(--police-texte);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    color: var(--couleur-texte-sombre);
    background-color: #f9f4e6;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23a07838" opacity="0.1"/><circle cx="80" cy="20" r="1" fill="%23a07838" opacity="0.1"/><circle cx="20" cy="80" r="1" fill="%23a07838" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23a07838" opacity="0.1"/></svg>');
}

/* En-tête : style victorien */
header {
    background: var(--couleur-primaire);
    color: var(--couleur-texte);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px double var(--couleur-accent);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M10,50 Q50,10 90,50 Q50,90 10,50" fill="none" stroke="%23a07838" stroke-width="0.5" opacity="0.3"/></svg>');
}

header h1 {
    font-family: var(--police-titre);
    font-size: 2.5rem;
    margin: 0;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

header p {
    font-style: italic;
    font-size: 1.2rem;
    margin: 0.5rem 0 0;
}

/* Navigation : style mécanique */
nav {
    background: var(--couleur-secondaire);
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--couleur-accent);
}

nav a {
    color: var(--couleur-texte);
    margin: 0 1.5rem;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.3rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--couleur-accent);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Contenu principal : style manuscrit et engrenages */
.container {
    width: 85%;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--couleur-accent);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 3px;
}

.section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--couleur-accent);
}

.section h2 {
    font-family: var(--police-titre);
    color: var(--couleur-primaire);
    border-bottom: 1px solid var(--couleur-accent);
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
}

.section p {
    font-size: 1.05rem;
}

/* Pied de page : style gravure */
footer {
    background: var(--couleur-primaire);
    color: var(--couleur-texte);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 2rem;
    border-top: 3px double var(--couleur-accent);
}

/* Effet mécanique sur les liens */
a {
    color: var(--couleur-primaire);
    text-decoration: none;
    transition: all 0.2s;
}

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