
/* Police pour dyslexique */

@import url('https://fonts.googleapis.com/css2?family=Shantell+Sans:wght@400;700&display=swap');


/* Gimmick */

        .gimmick-container {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
        }
        .gimmick-container button {
            margin-right: 20px;
        }

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: #000; 
            color: #fff; 
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
/* Gallerie */

        .gallery-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .character-block {
            position: relative;
            width: 300px;
            background: #222; 
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }

        .character-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .character-description {
            margin-top: 10px;
            font-size: 1rem; 
            color: #bbb;
        }

        .character-description p {
            font-size: 1rem;
        }
        .character-buttons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
        }

        .character-buttons button {
            background: transparent;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .character-buttons button:hover {
            transform: scale(1.2);
        }

        /* Général */

        h2 {
            margin-bottom: 20px;
            font-size: 2rem;
        }

        p {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        ul {
            list-style: none;
            padding: 0;
            font-size: 2.5rem;
        }

        li {
            margin: 10px 0;
            font-size: 2.5rem;
        }

          /* Dyslexic Mode */
        /* Style pour centrer et styliser les boutons en haut des slides Reveal.js */
.font-size-adjust {
    position: absolute;
    top: 0px; 
    left: 15%;
    transform: translateX(-50%); 
    display: flex;
    gap: 10px; 
    background-color: rgba(0, 0, 0, 0.7); 
    border-radius: 12px; 
    padding: 8px 12px; 
    z-index: 1000; 
}

.font-size-adjust button {
    background: #ffffff; 
    border: none; 
    border-radius: 6px; 
    padding: 6px 10px; 
    font-size: 16px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
}

.font-size-adjust button:hover {
    background: #f0f0f0; 
}

.font-size-adjust button span {
    font-size: 18px; 
}

/* Ajout d'un mode pour dyslexiques */
body.dyslexic-mode {
    font-family: "Shantell Sans", Arial, sans-serif;
}

body.dyslexic-mode .reveal .slides {
    font-family: "Shantell Sans", Arial, sans-serif; 
}
body.dyslexic-mode .h3 .h2 .h1 .p .ul .li {
    font-family: "Shantell Sans", Arial, sans-serif; 
}

#dyslexic-mode-button {
    font-family: "Shantell Sans", Arial, sans-serif; 
}

/* Styles spécifiques à Reveal.js */
.reveal .slides {
    padding-top: 50px; 
}

/* Cody Rhodes*/


.cody-rhodes-analysis {
    display: flex; 
    align-items: center; 
    gap: 20px; 
    padding: 20px; 
}

.cody-rhodes-image {
    max-height: 18px;
    height: 300px; 
    border-radius: 10%;
    flex-shrink: 0; 
}

.cody-rhodes-description {
    font-size: 1rem; 
    line-height: 1.6;
    color: #ffffff; 
}


 /* Tableau des règles */

 .rules-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    font-size: 16px;
    text-align: left;
    background-color: #2b2828;
}

 /* Immersion arbitre */


.referee-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    position: relative;
}

.referee-counter {
    font-size: 3rem;
    color: #fff;
    margin: 20px 0;
    opacity: 0;
}

.referee-commentary {
    font-size: 1.2rem;
    color: #ddd;
    text-align: center;
    margin-top: 10px;
}

.champion-image {
    display: none;
    width: 300px;
    height: auto;
    margin-top: 20px;
    opacity: 0;
    transform: scale(0.5);
}


section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222;
}

section ul {
    margin-top: 10px;
    list-style-type: disc;
    padding-left: 20px;
}

section ul li {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
}


section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #444;
}

section ul li strong {
    color: #c7bdbd;
}

 /* David/Goliath */

.david-vs-goliath {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
}

.character {
    position: absolute;
    bottom: 0;
}

#david {
    width: 50px;
}

#goliath {
    width: 150px;
}

.description {
    margin-top: 20px;
    font-size: 30px;
    line-height: 1.5;
    text-align: center;
    color: #fff9f9;
}