/* Général */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4; /* Vous pouvez laisser cette couleur ou l'enlever */
    color: #333; /* Texte sombre pour une meilleure lisibilité */
    background-image: url('./fonds.jpg'); /* Remplacez le chemin par le vôtre */
    background-size: cover; /* Couvre toute la surface */
    background-position: center; /* Centre l'image */
    background-attachment: fixed; /* Fixe l'image lorsque vous faites défiler la page */
}

/* Header */
header {
    background: linear-gradient(135deg, red, red);
    color: white;
    padding: 20px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    text-align: center;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin-top: 10px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00BFFF;
}

/* Main content */
main {
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #002B5B;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Liste à puces */
ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #002B5B;
    color: white;
    position: relative;
}

/* Button back to top */
footer button {
    background-color: #005BB5;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

footer button:hover {
    background-color: #00BFFF;
}
