/* ----- GÉNÉRAL ----- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', sans-serif;
    color: #eaeaea;
    /* IMAGE DE FOND PERSONNALISÉE */
    background: #0f0f0f url("background.png") no-repeat center center fixed;
    background-size: cover;
}

/* ----- HEADER ----- */
header {
    background: rgba(15, 15, 15, 0.65);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 3px solid #b8870b;
    backdrop-filter: blur(3px);
}

    header h1 {
        margin: 0;
        font-size: 42px;
        color: #f1d28a;
        letter-spacing: 1px;
        text-shadow: 0 0 10px #0abdc6, 0 0 4px #b8870b;
    }

    header p {
        color: #dcdcdc;
        margin-top: 5px;
        font-size: 18px;
    }

/* ----- NAVIGATION ----- */
nav {
    display: flex;
    justify-content: center;
    background: rgba(10, 10, 10, 0.7);
    border-bottom: 2px solid #4d3b21;
    box-shadow: 0 2px 6px #000;
    backdrop-filter: blur(3px);
}

    nav a {
        color: #eaeaea;
        text-decoration: none;
        padding: 15px 25px;
        font-weight: bold;
        transition: 0.25s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        nav a:hover {
            background: rgba(60, 45, 25, 0.6);
            color: #f1d28a;
            box-shadow: inset 0 0 10px #0abdc6;
        }

/* ----- SECTIONS ----- */
section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(20, 20, 20, 0.80);
    backdrop-filter: blur(3px);
    border-left: 4px solid #b8870b; /* Cuivre Create */
    border-right: 4px solid #0abdc6; /* Bleu Stargate */

    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

/* ----- TITRES ----- */
h2 {
    color: #f1d28a;
    font-size: 26px;
    margin-bottom: 15px;
    text-shadow: 0 0 6px #0abdc6;
}

h3 {
    color: #dcb56e;
    margin-top: 20px;
    font-size: 20px;
}

/* ----- LISTES ----- */
ul {
    margin-left: 20px;
    margin-top: 10px;
}

    ul li {
        margin-bottom: 8px;
    }

/* ----- BOUTONS ----- */
.button {
    display: inline-block;
    background: linear-gradient(90deg, #0abdc6, #0896a3);
    padding: 12px 25px;
    color: #0f0f0f;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.25s;
    margin-top: 10px;
}

    .button:hover {
        background: linear-gradient(90deg, #0de2ef, #0abdc6);
        box-shadow: 0 0 12px #0abdc6;
    }

/* ----- CARTES DU STAFF ----- */
.staff-card {
    background: rgba(30, 30, 30, 0.85);
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #b8870b;
    border-radius: 6px;
    font-size: 18px;
    transition: 0.2s;
}

    .staff-card:hover {
        background: rgba(40, 40, 40, 0.9);
        box-shadow: 0 0 10px #0abdc6;
    }

/* ----- LIENS ----- */
a {
    color: #0abdc6;
}

    a:hover {
        color: #16e3f4;
        text-shadow: 0 0 6px #0abdc6;
    }
