/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f8f4e3; /* Une couleur crème rétro */
    line-height: 1.6;
}

header {
    background-color: #556b2f; /* Vert olive rétro */
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-family: 'Courier New', Courier, monospace; /* Pour un style rétro */
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 1rem;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffd700; /* Doré rétro */
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 3rem;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #556b2f;
}

p, ul {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

ul li {
    margin-bottom: 0.5rem;
}

/* Formulaire */
form {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

form input, form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form button {
    background-color: #556b2f;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #6b8e23; /* Une teinte légèrement plus claire */
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.small-text {
    font-size: 0.8rem; /* ou utilisez un pourcentage, par exemple font-size: 80%; */
    line-height: 1.2; /* optionnel : pour ajuster l'espacement entre les lignes */
}
