/* Corps principal */
body {
    font-family: 'Raleway', sans-serif;
    background: #161b22; /* Fond sombre et mystérieux */
    color: #e1e4e8; /* Texte clair pour contraster avec le fond sombre */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* En-tête */
header {
    background: linear-gradient(135deg, #f8a5b8, #f1c40f);
    color: white;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin: 0;
}

header p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    margin-top: 10px;
    color: darkorange;
}

/* Sections */
main {
    padding: 20px 5%;
    background-color: rgba(0, 0, 0, 0.8); /* Ombre pour plus de profondeur */
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    margin-top: 30px;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    color: #f1c40f; /* Jaune lumineux */
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

p {
    margin: 20px 0;
    color: #b9b9b9;
    font-size: 1rem;
    text-align: justify;
}

/* Images */
img {
    display: block;
    max-width: 100%;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Pied de page */
footer {
    text-align: center;
    background: #161b22;
    color: #b9b9b9;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}

footer p {
    font-family: 'Raleway', sans-serif;
}

/* Effets visuels */
h3:hover {
    color: #ff6347; /* Changement de couleur au survol */
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* Effet sombre pour les sections */
section {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 25px;
}

section h3 {
    font-size: 1.6rem;
    text-transform: uppercase;
}

section p {
    font-size: 1rem;
    line-height: 1.8;
}
