body {
    /* thème sombre */
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/**********************************/
/* En-tête */
header {
    background-color: #1e1e1e;
    padding: 15px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Navigation */
nav {
    display: flex; /* ᕙ(｡˃ ᵕ ˂)ᕗ */
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo à gauche */
.logo {
    display: flex; /* je conaissait pas mais apparament c'est bien pour faire des sites responsive ? */
    align-items: center;
    margin-left: 0;
    position: absolute; /* sinon le texte du menu sont pas centré */
}

.logo img {
    height: 40px;
    width: auto;
}

.logo a {
    display: flex; /* ᕙ(｡˃ ᵕ ˂)ᕗ */
    align-items: center;
    height: 40px;
    width: auto;
}

/* Menu centré */
nav ul {
    display: flex; /* ᕙ(｡˃ ᵕ ˂)ᕗ */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Version en haut à droite */
.version {
    color: #888888;
    font-size: 12px;
    font-weight: 300;
    position: absolute;
    top: 5px;
    right: 5px;
}
/**********************************/

/**********************************/
/* Content */
.content {
    flex: 1;
    padding: 20px;
    min-height: 200px; /* Hauteur minimale pour éviter que le footer soit trop proche du header */
}
/**********************************/

/**********************************/
/* Footer */
footer {
    background-color: #1e1e1e;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

footer p {
    margin: 0;
    color: #b0b0b0;
    font-size: 14px;
    display: flex; /* ᕙ(｡˃ ᵕ ˂)ᕗ */
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-links {
    margin-top: 10px;
    display: flex; /* ᕙ(｡˃ ᵕ ˂)ᕗ */
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 3px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}
/**********************************/

/**********************************/
/* Social icons */
.social-icons {
    margin: 10px 0;
    display: flex; /* ᕙ(｡˃ ᵕ ˂)ᕗ */
    justify-content: center;
    gap: 8px;
}

.social-icons a {
    display: inline-block;
    padding: 5px;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

.social-icons img {
    width: 16px;
    height: 16px;
    filter:  invert(42%) brightness(0.8) grayscale(1); /*au hazard mais ça passe*/
    transition: filter 0.3s ease;
}

.social-icons a:hover img {
    filter: invert(42%) brightness(1) grayscale(0);
}
/**********************************/

/**********************************/
/* Home content */
.home-content {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.home-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-weight: bold;
}

.home-content p {
    font-size: 1.2em;
    color: #b0b0b0;
    line-height: 1.6;
}
/**********************************/