/* Global styles */
body {
    font-family: 'Arial', sans-serif; /* Police simple et moderne */
    background-color: #f9fafb; /* Fond gris clair */
    color: #333; /* Texte sombre pour bonne lisibilité */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    color: #2c3e50; /* Couleur foncée et élégante pour le titre */
    margin-top: 50px;
    font-size: 2.5em;
    padding-bottom: 20px;
    border-bottom: 2px solid #3498db; /* Ligne sous le titre pour le mettre en valeur */
}

/* Paragraphe */
p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

/* Liens */
a {
    font-size: 1.2em;
    color: #3498db; /* Couleur bleue claire pour les liens */
    text-decoration: none; /* Enlever le soulignement par défaut */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a:hover {
    background-color: #3498db;
    color: white; /* Changer la couleur du texte lors du survol */
}

/* Boîtes et sections */
section {
    background-color: white; /* Fond blanc pour les sections */
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre douce */
}

section h2 {
    font-size: 1.8em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

section p {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    line-height: 1.6;
}

/* Bouton */
button {
    padding: 12px 25px;
    background-color: #3498db; /* Bleu similaire au lien */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button:hover {
    background-color: #2980b9; /* Bleu plus foncé pour le survol */
}

/* Footer */
footer {
    text-align: center;
    background-color: #2c3e50; /* Fond sombre pour le footer */
    color: white;
    padding: 20px;
    position: absolute;
    width: 100%;
    bottom: 0;
}

/* Modale pour afficher l'image zoomée */
.modal {
    display: none; 
    position: fixed; 
    z-index: 999; 
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto;
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
