/* -------------------------------
   POLICE PERSONNALISÉE
--------------------------------*/
@font-face {
    font-family: "IMFellEnglish";
    src: url("IMFellEnglish.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "UncialAntiqua";
    src: url("UncialAntiqua.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* -------------------------------
   COULEURS
--------------------------------*/
:root {
    --gold: #d4af37;
    --gold-light: #f5e6b3;
    --text: #f8f8f8;
}

/* -------------------------------
   GÉNÉRAL
--------------------------------*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "IMFellEnglish", serif;
    color: var(--text);

    background: #000;
    background-image: url("images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    /* CENTRAGE VERTICAL DU CONTENU */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* -------------------------------
   CONTENEUR
--------------------------------*/
.conteneur {
    max-width: 850px;
    width: 90%;
    padding: 40px 20px;
    text-align: center;

    background: rgba(0, 0, 0, 0.35); /* un peu moins opaque */
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(1px); /* flou fortement réduit */
}

/* -------------------------------
   TITRES DORÉS
--------------------------------*/
    /*color: var(--gold);*/
h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #d4af37; /* doré */
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(212, 175, 55, 0.4); /* léger halo doré pour renforcer l'effet */
}


strong {
    font-family: "UncialAntiqua", serif;
}

/* -------------------------------
   TEXTE & LISTES
--------------------------------*/
.texte {
    font-size: 1.25rem;
    line-height: 1.7;
}

.liste {
    list-style: none;
    padding: 0;
}

.liste li {
    margin: 12px 0;
    font-size: 1.2rem;
    color: var(--gold-light);
}

/* -------------------------------
   LOGO ÉDITEUR (HORS CONTENEUR)
--------------------------------*/
.edit {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.edit img {
    width: 150px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.edit img:hover {
    opacity: 1;
}

/* Accessibilité : éléments utilisables par les lecteurs d'écran */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* -------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }
    .texte, .liste li {
        font-size: 1.1rem;
    }
    .edit img {
        width: 120px;
    }
}

@media (max-width: 600px) {
    html, body {
        justify-content: flex-start; /* pour éviter un centrage vertical trop haut sur petits écrans */
        padding-top: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .texte, .liste li {
        font-size: 1rem;
    }

    .conteneur {
        padding: 20px 10px;
    }

    /* LOGO QUI PASSE AU CENTRE EN BAS DU CONTENU */
    .edit {
        position: static;
        margin-top: 20px;
        text-align: center;
    }

    .edit img {
        width: 100px;
    }
}
