/* Importation des polices */
@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Montserrat:wght@400;700&display=swap');

/* Réinitialisation des styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1E1445;
    background-color: #FFFFF;
    line-height: 1.6;
}

header {
    background-color: #C20E1A;
    color: white;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-family: 'Caveat Brush', cursive;
    font-size: 2.8em;
}

nav {
    background: #FEB900;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #1E1445;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Contenu principal */
main {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    font-family: 'Caveat Brush', cursive;
    color: #C20E1A;
    font-size: 2.2em;
    margin-bottom: 15px;
}

p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

/* Listes */
ul {
    padding-left: 20px;
}

ul li {
    font-size: 1.1em;
    margin-bottom: 5px;
}

/* Témoignages */
blockquote {
    font-style: italic;
    background: #1E1445;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

/* Tableaux */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #1E1445;
}

th, td {
    padding: 10px;
    text-align: center;
}

th {
    background-color: #C20E1A;
    color: white;
}

/* Pied de page */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    background-color: #1E1445;
    color: white;
    padding: 30px 50px;
    text-align: left;
}

.footer-section h4 {
    font-size: 1.2em;
    color: #FEB900;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
    font-size: 0.95em;
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: #C20E1A;
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.9em;
}

.footer-bottom a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
