body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #fdf6e3; /* fond crème doux */
    color: #5b3e2b; /* texte brun chaud */
    margin: 0;
    text-align: center;
}

nav {
    display: flex;            /* active flexbox */
    justify-content: center;  /* centre les boutons horizontalement */
    flex-wrap: wrap;          /* permet aux boutons de passer à la ligne si trop larges */
    background-color: #8c5e3c; 
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

nav a {
    color: #fff;
    margin: 8px 12px;           /* un peu plus petit pour éviter chevauchement */
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    background: linear-gradient(145deg, #c2885e, #b06e3b);
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: 0.3s;
    white-space: nowrap;        /* empêche le texte de casser */
}

nav a:hover {
    background: linear-gradient(145deg, #b06e3b, #c2885e);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 10px rgba(0,0,0,0.35);
}

h1 {
    font-family: 'Garamond', serif;
    color: #a75e2c; /* titre cuivre chaleureux */
    margin-top: 40px;
}

p {
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.6;
    font-size: 18px;
}

ul {
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
    line-height: 1.6;
}

.button {
    display: inline-block;
    margin: 15px;
    padding: 12px 28px;
    background: linear-gradient(145deg, #d49f6a, #c28550);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.button:hover {
    background: linear-gradient(145deg, #c28550, #d49f6a);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 14px rgba(0,0,0,0.35);
}

img {
    margin-top: 20px;
    border-radius: 12px;
    border: 3px solid #5b3e2b; /* cadre brun chaud */
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
}