body {
    margin: 0;
    padding: 0;
    width: auto;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: whitesmoke;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: #cfbb59 #2f2e2e;
}

/* BARRE D'ENTÊTE (AU DESSUS DU MENU DE NAVIGATION) */

.bande_entete {
    background-color: #cfbb59;
    display: flex;
    justify-content: space-between;
    height: 40px;
}

.social_entete {
    flex: 100%/3;
    text-align: left;
    margin-left: 20px;
}

.facebook-mini,
.instagram-mini,
.mail-mini {
    height: 30px;
    width: auto;
    color: #2F2E2E;
    margin: 5px 10px 2px 10px;
}

.facebook-mini:hover,
.instagram-mini:hover,
.mail-mini:hover {
    color: #444444;
}

.valeurs_entete {
    flex: 100%/3;
    text-align: center;
    margin-top: -16px;
    font-family: 'Dancing Script', cursive;
}

.valeurs_entete p {
    font-size: 1.5rem;
}

.sites_instances_federales {
    flex: 100%/3;
    text-align: right;
    margin-right: 20px;
}

.district,
.ligue,
.federation {
    height: 30px;
    width: auto;
    margin: 5px 10px 2px 10px;
    filter: grayscale(1);
}

.district:hover,
.ligue:hover,
.federation:hover {
    filter: grayscale(0);
}

/* MENU DE NAVIGATION (bande comprenant le logo + le menu) */

.bande_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2F2E2E;
    padding: 10px 50px;
    border-bottom: solid #cfbb59 5px;
}

.bande_menu .logo {
    flex: .1;
    text-align: center;
}

.bande_menu #logo_scs {
    height: 100px;
    width: auto;
}

.bande_menu nav {
    flex: .9;
}

.bande_menu .menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 1.8rem;
    font-family: 'Konkhmer Sleokchher', cursive;
    padding: 0;
    margin: 0;
}

.bande_menu .menu a {
    text-decoration: none;
    color: #cfbb59;
}

.bande_menu .menu li>a:hover {
    color: white;
    transition: .3s;
}

.bande_menu nav ul li {
    position: relative;
    padding: 0 20px;
}

.bande_menu nav li {
    list-style-type: none;
    text-decoration: none;
    float: left;
    line-height: 20px;
}

.bande_menu nav ul li ul {
    display: none;
    position: absolute;
    background-color: #2F2E2E;
    font-size: .9rem;
    z-index: 100;
    min-width: 100%;
    width: max-content;
    list-style-type: none;
    margin-left: -20px;
    margin-top: 10px;
    padding: 10px 0px 5px 0px;
    box-shadow: 0 5px 20px #2f2e2e;
}

.bande_menu nav ul li:hover ul {
    display: list-item;
    animation: fadeMenu .3s ease-out;
    padding-bottom: 0;
}

@keyframes fadeMenu {
    from {
        opacity: 0;
        transform: translateY(-5%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bande_menu nav ul li:hover ul li {
    float: none;
    padding: 0;
}

.bande_menu nav ul li:hover ul li a {
    display: block;
    padding: 10px 20px;
}

.bande_menu nav ul li ul li a:hover {
    background-color: #2a2a2a;
    box-shadow: 0 0 5px #2a2a2a;
}

/* Menu mobiles */

.container_nav-mobile {
    display: none;
}

/* GESTION DU SYSTEME DE FLEXBOX */

.page_flex {
    width: 90%;
    margin: 0 5% 20px 5%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: top;
    flex-wrap: wrap;
    overflow: wrap;
    text-align: justify;
    gap: 3%;
}

main {
    flex: .68;
    max-width: 1200px;
}

aside {
    flex: .32;
    max-width: 1200px;
}

/* GESTION DE LA MISE EN FORME GENERALE (titres, gras, souligné, images, etc...) */

h2 {
    font-size: 2rem;
    border-bottom: solid #181818 4px;
    text-align: left;
    font-family: 'Fira Sans', sans-serif;
    color: #181818;
}

main h2,
aside h2 {
    letter-spacing: 1px;
    padding: 0;
    margin: 20px 0;
}

h3 {
    font-size: 1.5rem;
    text-align: left;
    font-family: 'Fira Sans', sans-serif;
    color: #181818;
}

h4 {
    font-size: 1.2rem;
    text-align: left;
    font-family: 'Fira Sans', sans-serif;
    color: #181818;
}

p,
ul,
ol {
    color: #181818;
    font-size: 1.2rem;
    line-height: 1.8rem;
}

a {
    text-decoration: none;
    color: rgba(5, 99, 193, .7);
}

strong {
    font-weight: inherit;
}

abbr {
    cursor: help;
}

address {
    font-style: normal;
}

.red {
    color: red;
}

.bold {
    font-weight: bold;
}

.underline {
    text-decoration: underline;
}

.italic {
    font-style: italic;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

main img,
aside img,
.entete_equipes img {
    width: 100%;
}

.line-height {
    margin-bottom: -15px;
}

.mise-en-forme-unordered-list {
    font-size: 1.2rem;
    line-height: 1.8rem;
}

.mise-en-forme-unordered-list a {
    text-decoration: underline;
    text-decoration-color: rgba(5, 99, 193, .7);
    text-decoration-thickness: 2px;
}

.mise-en-forme-unordered-list a:hover {
    text-decoration: none;
}

/* Icônes */

/* Icônes de pays */

.flag-icon {
    border-radius: 4px;
    vertical-align: 0rem;
}

.flag-icon-squared {
    border-radius: 50px;
    box-shadow: 0 0 2px #2f2e2e;
}

/* Icônes infos joueurs (naissance, poste, taille...) */

.material-symbols-outlined {
    vertical-align: -.15rem;
    color: #cfbb59;
    font-size: 1.2rem;
    font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 200;
}

/* Partie documents de toutes les pages (icônes et nom des documents) */

.documents {
    display: grid;
    grid-template-columns: 1fr 6fr;
    grid-template-rows: auto;
    column-gap: 2%;
    text-align: center;
    align-items: center;
}

.bi-file-earmark-pdf {
    font-size: 2.5rem;
    color: red;
}

.bi-file-earmark-image {
    font-size: 2.5rem;
    color: #00a20c;
}

.bi-file-earmark-play {
    font-size: 2.5rem;
    color: #740bd7;
}

.bi-file-earmark-music {
    font-size: 2.5rem;
    color: #0b5ed7;
}

.nom_documents {
    text-align: left;
    font-style: italic;
    line-height: 1.5rem;
}

.documents_2colones {
    grid-column-start: 1;
    grid-column-end: 3;
    text-align: left;
    padding-left: 5%;
}

/* Mise en forme des tableaux */

table {
    width: 100%;
    border-collapse: collapse;
    vertical-align: middle;
    font-family: Dejavu Sans, Arial, Verdana, sans-serif;
}

th {
    border: 1px solid #2F2E2E;
    text-align: center;
    font-weight: bold;
    height: 50px;
    background-color: #2F2E2E;
    color: white;
}

td {
    border: 1px solid #2F2E2E;
    text-align: center;
    height: 50px;
}

.deuxcolonnes {
    width: 50%;
    height: 50px;
    vertical-align: middle;
}

tr:nth-child(odd) {
    /* Ou 'even' à la place de 'odd' pour inverser l'ordre */
    background-color: #d4d4d4;
}

aside table {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

aside table th,
aside table td {
    height: 30px;
}

/* PAGE D'ACCUEIL */

/* Stylisation des vignettes de blog */

.articles-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, auto);
    gap: 15px;
}

.vignette-blog {
    border-radius: 15px;
    height: auto;
    box-shadow: 0px 0px 10px #999;
    background-color: white;
}

.vignette-blog:hover {
    background-color: rgb(245, 245, 245);
    transform: scale(99%);
    transition: ease .3s;
}

.vignette-blog a {
    text-decoration: none;
    color: black;
}

.vignette-blog img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.informations-blog {
    padding: 0 10px;
}

.informations-blog .date-article {
    font-size: .9rem;
    color: #777;
    margin: 0;
    padding: 0;
}

.informations-blog h3 {
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* start showing ellipsis when 2nd line is reached */
    white-space: pre-line;
    /* let the text wrap preserving spaces */
}

.informations-blog p {
    font-size: 1rem;
    text-align: left;
    font-style: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* start showing ellipsis when 2nd line is reached */
    white-space: pre-line;
    /* let the text wrap preserving spaces */
}

/* NOS PARTENAIRE (slide automatique) */

.SlidesPartenairesPrivesAccueil,
.SlidesPartenairesPublicsFooter,
.SlidesPartenairesPrivesFooter {
    animation: opacity-partenaires-on 1s ease-in;
}

@keyframes opacity-partenaires-on {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* NOUS SUIVRE (partie de la barre latérale sur la page d'accueil) */

.nous_suivre {
    text-align: center;
}

.facebook,
.instagram {
    width: 20%;
    color: #181818;
    margin: 0 40px;
}

.facebook:hover,
.instagram:hover {
    color: #cfbb59;
    border-bottom: solid #cfbb59 5px;
    padding-bottom: 10px;
    margin-bottom: -15px;
}

/* PAGES D'ARTICLES (tous les articles de "blog" publiés sur un fichier HTML séparé) */

article h2 {
    border: none;
    text-align: left;
    font-size: 2rem;
}

.grid_infos_articles_actualites {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
}

.grid_infos_articles_actualites .align-right {
    text-align: right;
}

.grid_infos_articles_actualites .align-right img {
    width: 25px;
    margin: 0 5px;
}

.grid_infos_articles_actualites .align-right img:hover {
    transform: scale(95%);
}

.contenu-article-blog {
    padding: 10px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px #999;
}

/* PAGE BOUTIQUE */

.bouton_boutique {
    box-shadow: inset 1px 1px 0px 0px #ffffff;
    background: linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
    background-color: #ededed;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    display: inline-block;
    cursor: pointer;
    color: #2f2e2e;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #ffffff;
    letter-spacing: 2px;
}

aside .bouton_boutique {
    width: 100%;
}

.bouton_boutique:hover {
    background: linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
    background-color: #dfdfdf;
}

.bouton_boutique:active {
    position: relative;
    top: 1px;
}

/* PAGE "LE CLUB" */



#songeons {
    float: left;
    width: 315px;
    margin-right: 20px;
    border-radius: 15px;
}

.contact_association {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
}

.vignette-contact {
    width: 220px;
    border-radius: 15px;
    padding: 15px 5px;
    text-align: center;
    box-shadow: 0px 0px 10px #999;
    background-color: white;
}

.vignette-contact:hover {
    transform: translateY(-5px);
    transition: ease .3s;
}

.vignette-contact img {
    width: 50%;
    border-radius: 1000px;
    box-shadow: 0px 0px 10px #999;
}

.informations-contact {
    text-align: center;
    margin-bottom: -20px;
}

.informations-contact h3 {
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
    border: none;
    margin-bottom: -10px;

}

.informations-contact a {
    color: #2F2E2E;
}

.informations-contact i {
    color: #cfbb59;
}

.informations-contact p {
    font-size: 1.2rem;
    font-style: normal;
}

/* PAGE NOTRE HISTOIRE */

/* Slider temporaire pour faire patienter les gens */

.slider-container-histoire {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.slider-container-histoire .slider-histoire {
    display: flex;
    overflow: hidden;
}

.slider-container-histoire .slide-histoire {
    display: none;
    animation: fade 2s ease-in-out;
}

.slider-container-histoire img {
    width: 100%;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.grid-presidents {
    display: grid;
    grid-template-columns: 1fr 4fr 4fr 6fr;
    grid-template-rows: repeat(auto, auto);
    align-items: center;
    gap: 0;
    text-align: center;
}

.entete_grid-presidents {
    background-color: #2f2e2e;
    color: white;
    font-weight: bold;
}

.grid-presidents div {
    padding: 10px;
}

.background_grid-presidents {
    background-color: #d4d4d4;
}

/* PAGE ORGANIGRAMMES */

.carousel-container-organigrammes {
    overflow: hidden;
    width: auto;
    position: relative;
}

.carousel-container-organigrammes i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    color: #cfbb59;
    background: #2f2e2e;
    border: 3px solid #cfbb59;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform .01s linear;
    z-index: 1000;
}

.carousel-container-organigrammes i:active {
    transform: translateY(-50%) scale(0.90);
}

.carousel-container-organigrammes i:first-child {
    left: 0;
}

.carousel-container-organigrammes i:last-child {
    right: 0;
}

.carousel-container-organigrammes .carousel-wrapper-organigrammes {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
    overflow: visible;
}

.carousel-container-organigrammes .carousel-wrapper-organigrammes .vignette-contact {
    min-width: 220px;
    max-width: 220px;
    margin: 10px;
}

.carousel-container-organigrammes .prev,
.carousel-container-organigrammes .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    line-height: 1.5;
    cursor: pointer;
    background-color: #2f2e2e;
    color: #cfbb59;
    border: 3px solid #cfbb59;
    border-radius: 50%;
}

.carousel-container-organigrammes .prev {
    left: 0;
    padding: 0 8px 0 6px;
}

.carousel-container-organigrammes .next {
    right: 0;
    padding: 0 6px 0 8px;
}

/* INSTALLATIONS */

.img-installations {
    border-radius: 15px;
    box-shadow: 0 0 10px #2f2e2e;
}

.infos-installations {
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.infos-installations .items {
    width: 350px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.infos-installations .items img {
    width: 40px;
}

.infos-installations .items object {
    width: 40px;
    height: 40px;
}

.infos-installations .items p {
    margin: 5px 0;
    line-height: 1.2rem;
}

/* PAGE "DEVENIR EDUCATEUR OU DIRIGEANT */

.plan_page_devenir_educateur_ou_dirigeant {
    border: solid 5px #2f2e2e;
    border-radius: 15px;
    background-color: #cfbb59;
    color: #2f2e2e;
    padding: 0 10px;
}

.plan_page_devenir_educateur_ou_dirigeant p {
    font-size: 2rem;
    color: #2f2e2e;
}

.plan_page_devenir_educateur_ou_dirigeant a {
    color: #2f2e2e;
}

.plan_page_devenir_educateur_ou_dirigeant a:hover {
    text-decoration: underline;
}

.plan_page_devenir_educateur_ou_dirigeant nav ul {
    display: block;
    line-height: 2.5rem;
    list-style-type: none;
    text-decoration: none;
}

/* PAGE "NOS PARTENAIRES" */

#div_brochurepartenaires {
    position: relative;
}

#img_brochurepartenaires {
    border-radius: 10px;
}

#button_brochurepartenaires {
    width: 51.4%;
    height: 44%;
    position: absolute;
    top: 45%;
    right: 2.6%;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
}

/* Vignettes partenaires (début de page) */

.flex_vignettes-partenaires {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: start;
}

.vignette_partenaire {
    width: 250px;
    background-color: #181818;
    border: 5px solid #cfbb59;
    border-radius: 20px;
    box-shadow: 0 0 5px #2f2e2e;
    color: #cfbb59;
    margin-bottom: 10px;
}

.vignette_partenaire:hover {
    transform: translateY(-5px);
    transition: ease-in-out .3s;
}

.vignette_partenaire .logo_partenaire_vignette_partenaire {
    position: relative;
    margin-bottom: 15px;
    /* A ajuster une fois que les icones auront été placées entre l'image et le nom du partenaire */
}

.vignette_partenaire:hover .logo_partenaire_vignette_partenaire img {
    opacity: .85;
    transition: ease-in-out .3s;
}

.logo_partenaire_vignette_partenaire img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    /* Ajustement de la bordure de l'image pour qu'elle soit en cohérence avec la bordure du conteneur = border-radius - épaisseur bordure */
}

.logo_partenaire_vignette_partenaire .icones_partenaire_vignette_partenaire {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.icones_partenaire_vignette_partenaire .material-symbols-outlined {
    background-color: #cfbb59;
    color: #2f2e2e;
    border-radius: 50%;
    box-shadow: #2f2e2e 0 0 10px;
    padding: 5px;
    z-index: 2;
}

.infos_partenaire_vignette_partenaire {
    text-align: center;
    padding: 10px 5px 20px 5px;
}

.infos_partenaire_vignette_partenaire h2 {
    font-size: 1.5rem;
    line-height: 0;
    text-align: center;
    border: none;
    color: #cfbb59;
}

.infos_partenaire_vignette_partenaire h3 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .8rem;
    font-style: italic;
    text-align: center;
    border: none;
    color: #cfbb59;
}

.infos_partenaire_vignette_partenaire a {
    color: #181818;
}

.infos_partenaire_vignette_partenaire button {
    font-family: arial, sans-serif;
    font-weight: bold;
    font-size: 1rem;
    padding: 10px;
    margin-top: 10px;
    color: #181818;
    background-color: #cfbb59;
    border: 2px solid #cfbb59;
    border-radius: 3px;
}

.infos_partenaire_vignette_partenaire button:hover {
    background-color: #181818;
    color: #cfbb59;
    border: 2px solid #cfbb59;
    transition: ease-in-out .3s;
    cursor: pointer;
}

/* Partie "En savoir un peu plus sur nos partenaires privés" (système de DIV ouvrable/fermable) */

.accordionpartenaires {
    background-color: whitesmoke;
    color: #2f2e2e;
    cursor: pointer;
    padding: 20px;
    margin-bottom: -20px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #2f2e2e;
    text-align: left;
    outline: none;
    font-size: 1.2rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: 0.5s;
}

.accordionpartenaires:hover {
    background-color: #cfbb59;
    color: black;
}

.accordionpartenaires.active {
    background-color: #2f2e2e;
    color: white;
}

.accordionpartenaires:after {
    content: '\002B';
    color: #2f2e2e;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.accordionpartenaires.active:after {
    content: "\2212";
    color: white;
}

.partenaires-prives {
    padding: 10px;
    background-color: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.description_partenaire {
    display: grid;
    align-items: center;
    grid-template-columns: .4fr .6fr;
    grid-template-rows: 1fr;
    gap: 3%;
    padding: 1rem;
    margin: 30px 0 20px 0;
    border: solid 3px #cfbb59;
    border-radius: 20px;
    background-color: #181818;
    box-shadow: 0 0 10px #181818;
}

.description_partenaire p {
    color: white;
    font-size: inherit;
}

.description_partenaire img {
    border-radius: 10px;
}

.infos_partenaire {
    display: grid;
    grid-template-columns: 4fr 6fr;
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.grid-element {
    border: solid 3px #cfbb59;
    border-radius: 20px;
    padding: .5rem;
    background-color: #181818;
    box-shadow: 0 0 10px #181818;
}

.grid-element table {
    font-size: inherit;
    line-height: 1.5rem;
    color: white;
    height: 100%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.grid-element table td {
    background-color: #181818;
    border: none;
}

.tableau_horaires_partenaires_colG {
    width: 40%;
    text-align: right;
    padding-right: 10px;
    color: #cfbb59;
}

.tableau_horaires_partenaires_colD {
    width: 60%;
    text-align: left;
    padding-left: 10px;
}

.grid-element p {
    color: white;
    line-height: 2rem;
    font-size: inherit;
}

.grid-element a {
    color: white;
}

.div1 p {
    line-height: 3.8rem;
}

.grid-element i {
    font-size: 2rem;
    color: #cfbb59;
}

.div1 {
    grid-area: 1 / 1 / 5 / 2;
}

.div2 {
    grid-area: 1 / 2 / 2 / 3;
}

.div3 {
    grid-area: 2 / 2 / 3 / 3;
}

.div4 {
    grid-area: 3 / 2 / 4 / 3;
}

.div5 {
    grid-area: 4 / 2 / 5 / 3;
}

.toggle-el {
    width: 100%;
    transition: all .2s linear;
    opacity: 1;
    overflow: visible;
    margin: 0 0 2rem 0;
    padding: 0;
}

input[type=checkbox].hide-input:checked+.toggle-el {
    /* Caractéristiques de la DIV lorsqu'elle est "fermée" */
    height: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
}

input.hide-input {
    position: absolute;
    left: -100px;
}

label.toggle {
    display: block;
    cursor: pointer;
    width: 100%;
    padding: 0;
    margin: 0;
    user-select: none;
    position: relative;
}

/* PAGE TOURNOI DE SIXTE */

/* Logo du tournoi */

#logo-tournoi-de-sixte {
    text-align: center;
}

#logo-tournoi-de-sixte img {
    max-width: 250px;
    margin-bottom: -20px;
    filter: drop-shadow(0 0 5px #2f2e2e);
}

/* Compte à rebours juqu'à la prochaine édition du tournoi */

.countdown-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: Orbitron;
    color: #cfbb59;
    text-shadow: 1px 1px 5px #2f2e2e;
}

.countdown-label {
    font-size: 1rem;
    font-family: Verdana;
    font-weight: bold;
}

/* Barre de progression (nombre d'équipes inscrites) */

.progress-container {
    max-width: 350px;
    background-color: #2f2e2e;
    border: 2px solid #2f2e2e;
    border-radius: 15px;
    margin: -15px auto;
    overflow: hidden;
}

.progress-bar {
    width: 0;
    height: 30px;
    background-color: #cfbb59;
    text-align: center;
    line-height: 30px;
    color: white;
    position: relative;
}

/* Partie partenaires soutenant le tournoi de sixte */

/* Style de la div conteneur du slider */
.slider_partenaire_tournoi-de-sixte {
    max-width: 500px;
    margin: 30px auto;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 0 5px #2f2e2e;
}

/* Lorsque vous survolez la div .slider_partenaire_tournoi-de-sixte, ajustez l'opacité des boutons et indicateurs */
.slider_partenaire_tournoi-de-sixte:hover .mannual-btn,
.slider_partenaire_tournoi-de-sixte:hover .navigation-auto div {
    opacity: 1;
}

/* Lorsque vous survolez la div .slider_partenaire_tournoi-de-sixte, ajustez l'opacité des images de chaque diapositive */
.slider_partenaire_tournoi-de-sixte:hover .slides_partenaire_tournoi-de-sixte img {
    opacity: .8;
    transition: opacity .5s;
}

/* Style de la div contenant les différentes images du slider */
.slides_partenaire_tournoi-de-sixte {
    width: 500%;
    display: flex;
}

/* Cache les boutons radio utilisés pour la navigation */
.slides_partenaire_tournoi-de-sixte input {
    display: none;
}

/* Style d'une image individuelle dans le slider */
.slide_partenaire_tournoi-de-sixte {
    width: 20%;
    transition: 1.5s;
}

/* Style des images elles-mêmes */
.slide_partenaire_tournoi-de-sixte img {
    width: 100%;
    margin-bottom: -3px;
}

/* Style de la div contenant les boutons de navigation manuelle */
.navigation-mannual {
    position: absolute;
    bottom: 0;
    padding: 5px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Style des boutons de navigation manuelle */
.mannual-btn {
    border: 2px solid rgba(0, 0, 0, 0);
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
    opacity: 0.3;
    /* Opacité par défaut */
    transition: opacity 0.5s;
}

.mannual-btn:not(:last-child) {
    margin-right: 40px;
}

/* Au survol, change la couleur de fond et la bordure des boutons de navigation manuelle */
.mannual-btn:hover {
    background-color: #cfbb59;
    border: 2px solid #2f2e2e;
    transition: .5s;
}

/* Position des images en fonction du bouton radio sélectionné */
#radio1:checked~.first {
    margin-left: 0;
}

#radio2:checked~.first {
    margin-left: -20%;
}

#radio3:checked~.first {
    margin-left: -40%;
}

#radio4:checked~.first {
    margin-left: -60%;
}

/* Style de la div contenant les indicateurs de navigation automatique */
.navigation-auto {
    position: absolute;
    bottom: 0;
    padding: 5px 0;
    display: flex;
    width: 100%;
    justify-content: center;
}

/* Style des indicateurs de navigation automatique */
.navigation-auto div {
    border: 2px solid #2f2e2e;
    background-color: #2f2e2e;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
    opacity: 0.2;
    /* Opacité par défaut */
    transition: opacity 0.5s;
}

.navigation-auto div:not(:last-child) {
    margin-right: 40px;
}

/* Au survol, change la couleur de fond et la bordure des indicateurs de navigation automatique */
#radio1:checked~.navigation-auto .auto-btn-1 {
    background: #cfbb59;
    border: 2px solid #cfbb59;
}

#radio2:checked~.navigation-auto .auto-btn-2 {
    background: #cfbb59;
    border: 2px solid #cfbb59;
}

#radio3:checked~.navigation-auto .auto-btn-3 {
    background: #cfbb59;
    border: 2px solid #cfbb59;
}

#radio4:checked~.navigation-auto .auto-btn-4 {
    background: #cfbb59;
    border: 2px solid #cfbb59;
}

/* Partie FAQ (Foire aux questions) */

.accordion {
    background-color: whitesmoke;
    color: #2f2e2e;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #2f2e2e;
    text-align: left;
    outline: none;
    font-size: 1.2rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: 0.5s;
}

.accordion:hover {
    background-color: #cfbb59;
    color: black;
}

.accordion.active {
    background-color: #2f2e2e;
    color: white;
}

.accordion.active:hover {
    background-color: #2f2e2e;
    color: white;
}

.accordion:after {
    content: '\002B';
    color: #2f2e2e;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.accordion.active:after {
    content: "\2212";
    color: white;
}

.faq_tournoi-de-sixte {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.faq_tournoi-de-sixte p {
    font-size: 1.1rem;
}

.faq_tournoi-de-sixte iframe {
    margin-bottom: 20px;
}

/* PAGE "LES EQUIPES" */

.table-cotisations {
    font-size: 1.25rem;
    margin-bottom: -20px;
}

.flex_aides_licence_page_equipes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px 5%;
}

.aides_licence_page_equipes {
    width: 220px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 0px 10px #999;
    background-color: white;
}

.aides_licence_page_equipes:hover {
    transform: translateY(-5px);
    transition: ease .3s;
}

.aides_licence_page_equipes img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -1px 5px #999;
    margin-bottom: -5px;
}

.aides_licence_page_equipes:hover img {
    filter: brightness(.7);
    transition: ease .5s;
}

.aides_licence_page_equipes .informations_aides_licence {
    padding: 0 5px;
}

.aides_licence_page_equipes .informations_aides_licence h2 {
    border: none;
    font-size: 1.1rem;
    text-align: center;
}

.aides_licence_page_equipes .informations_aides_licence p {
    font-size: 1.1rem;
}

.aides_licence_page_equipes .informations_aides_licence i {
    color: #cfbb59;
}

/* PAGES EQUIPES (séniors, U18, U15, etc...) : en tête, grilles effectifs... */

.entete_equipes {
    position: relative;
}

.entete_equipes img {
    width: 100%;
    filter: brightness(25%);
}

.entete_equipes h2 {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
    margin: 0;
    padding: 0;
    color: white;
    border: none;
    font-size: 12rem;
    font-family: 'Sriracha', sans-serif;
}

.images-equipes {
    border-radius: 5px;
    box-shadow: 0 0 10px #2F2E2E;
}

.onglets {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.onglet button {
    padding: 10px;
    margin: 0;
    width: 200px;
    background-color: #2f2e2e;
    border: 2px solid #cfbb59;
    color: white;
    border-radius: 20px;
    font: inherit;
}

.onglet button:hover {
    cursor: pointer;
    background-color: #cfbb59;
    border: 2px solid #2F2E2E;
    color: #2F2E2E;
    transition: ease .3s;
}

.contenu-onglet {
    display: none;
}

/* Animation de transition vers le bas */
@keyframes slideDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.slideDown {
    animation-name: slideDown;
}


.grille_effectif {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    margin-bottom: 20px;
}

.grille_effectif img {
    max-width: 220px;
    border-radius: 10px;
    box-shadow: 0 0 5px #999;
    cursor: pointer;
}

.player-card {
    display: flex;
    height: fit-content;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}

.player-card img:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease-in-out;
}

.player-card.open .player-info {
    display: block;
    animation: fadeDown 0.5s ease-in-out;
}

@keyframes fadeDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.player-info {
    display: none;
    text-align: center;
    width: 100%;
    padding: 5px 0;
    margin-top: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 5px #999;
}

.player-info h3 {
    font-size: 1.2rem;
    font-weight: normal;
    text-align: center;
    color: #cfbb59;
    border: none;
    margin: 0;
    padding: 10px 0 5px 0;
}

.player-info p,
.player-info .material-symbols-outlined {
    font-size: 1rem;
    line-height: .8rem;
}

.player-info .footprint {
    height: 15px;
    vertical-align: -.1rem;
}

.player-info .bi {
    color: #cfbb59;
}

/* Classement des équipes */

.classement {
    width: 100%;
    overflow-x: auto;
    background-color: whitesmoke;
}

.classement img {
    height: 20px;
    width: auto;
    vertical-align: -.2rem;
}

.classement th,
.classement td {
    border: none;
    text-align: center;
    padding: 10px 10px;
    white-space: nowrap;
    height: 20px;
    vertical-align: middle;
}

.classement th:nth-child(3) {
    text-align: left;
}

.classement tr:nth-child(even) {
    background-color: white;
}

.classement tr:nth-child(odd) {
    background-color: white;
}

.classement td:nth-child(1),
.classement td:nth-child(4),
.classement td:nth-child(12),
.classement td:nth-child(13) {
    font-weight: bold;
}

.classement td:nth-child(2) {
    text-align: center;
    padding: 0;
}

.classement td:nth-child(3) {
    text-align: left;
}

.classement td:nth-child(1),
.classement td:nth-child(2),
.classement td:nth-child(3),
.classement td:nth-child(9),
.classement td:nth-child(10),
.classement td:nth-child(11),
.classement td:nth-child(12) {
    background-color: whitesmoke;
}

.classement td:nth-child(4),
.classement td:nth-child(5),
.classement td:nth-child(6),
.classement td:nth-child(7),
.classement td:nth-child(8),
.classement td:nth-child(9) {
    background-color: #75757541;
}

.classement td:nth-child(13) {
    background-color: #444444;
    color: white;
}

.classement .highlighted {
    font-weight: bold;
    color: #cfbb59;
}

/* Calendrier des équipes */

.calendrier button {
    white-space: nowrap;
    background-color: whitesmoke;
    color: #2f2e2e;
    font-weight: bold;
    font-size: .9rem;
    padding: 10px 15px;
    margin-bottom: 20px;
    margin-right: -4px;
    border: none;
    border-top: 2px solid whitesmoke;
    border-radius: 0;
    cursor: pointer;
    width: 50%;
}

.calendrier button:hover {
    background-color: #2f2e2e;
    color: #cfbb59;
    transition: ease-in-out .3s;
    border-top: 2px solid #cfbb59;
}

/* Style pour l'onglet actif */
.calendrier .onglet-actif button {
    background-color: #2f2e2e;
    /* Changez la couleur de fond selon vos préférences */
    color: #fff;
    /* Changez la couleur du texte selon vos préférences */
    border-top: 2px solid #cfbb59;
}

.calendrier-equipes-simple {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: #2f2e2e;
}

.calendrier-equipes-simple tr {
    height: 50px;
    vertical-align: middle;
}

.calendrier-equipes-simple tr:hover td {
    background-color: #d4d4d4d4;
    transition: all .3s;
}

.calendrier-equipes-simple td {
    background-color: whitesmoke;
    border: none;
}

.calendrier-equipes-simple td:nth-child(1),
.calendrier-equipes-simple td:nth-child(5) {
    padding: 0 5px;
    max-width: 25px;
}

.calendrier-equipes-simple td:nth-child(2),
.calendrier-equipes-simple td:nth-child(4) {
    width: 30%;
}

.calendrier-equipes-simple td:nth-child(2) {
    text-align: left;
}

.calendrier-equipes-simple td:nth-child(4) {
    text-align: right;
}

.calendrier-equipes-simple td:nth-child(3) {
    padding: 0 2px;
}

.calendrier-equipes-simple img {
    height: 20px;
    width: auto;
    vertical-align: -.3rem;
}

/* Accordéon pour le calendrier des matches des équipes à 11 */

.calendrier-equipes {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: #2f2e2e;
}

.accordionMatch {
    color: #2f2e2e;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    height: 50px;
    vertical-align: middle;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.accordionMatch:hover td {
    background-color: #d4d4d4;
    color: black;
    transition: all .3s;
}

.calendrier-equipes.activeMatch td {
    background-color: #d4d4d4;
}

.calendrier-equipes td {
    background-color: whitesmoke;
    border: none;
}

.calendrier-equipes td:nth-child(1),
.calendrier-equipes td:nth-child(5) {
    padding: 0 5px;
    width: 25px;
}

.calendrier-equipes td:nth-child(2),
.calendrier-equipes td:nth-child(4) {
    width: 30%;
}

.calendrier-equipes td:nth-child(2) {
    text-align: left;
}

.calendrier-equipes td:nth-child(4) {
    text-align: right;
}

.calendrier-equipes td:nth-child(3) {
    padding: 0 2px;
}

.calendrier-equipes img {
    height: 20px;
    width: auto;
    vertical-align: -.3rem;
}

.contenu_accordionMatch {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    box-shadow: inset 0 0 5px #d4d4d4;
}

.contenu_accordionMatch_infoMatch {
    text-align: center;
    margin: 10px 0;
    line-height: 1.2rem;
    font-size: 1rem;
    border: 1px solid #2f2e2e;
    border-radius: 10px;
    background-color: #2f2e2e;
    color: #cfbb59;
    padding: 5px;
    font-weight: bold;
}

.contenu_accordionMatch_but {
    font-size: 1rem;
    margin: 0 0 5px 0;
}

/* Accordéon pour le calendrier des plateaux U6/U7 et U8/U9 */

.accordionPlateaux {
    background-color: whitesmoke;
    color: #2f2e2e;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: 0.5s;
}

.accordionPlateaux:hover {
    background-color: #d4d4d4;
    color: black;
}

.activePlateaux {
    background-color: #d4d4d4;
    color: #2f2e2e;
}

.accordionPlateaux.active:hover {
    background-color: #2f2e2e;
    color: white;
}

.accordionPlateaux:after {
    content: '\002B';
    color: #2f2e2e;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.activePlateaux:after {
    content: "\2212";
    color: #2f2e2e;
}

.contenu_accordionPlateaux {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.contenu_accordionPlateaux p {
    font-size: 1rem;
    text-align: left;
}

.calendrier-plateaux {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: #2f2e2e;
}

.calendrier-plateaux tr {
    height: 50px;
    vertical-align: middle;
    background-color: transparent;
}

.calendrier-plateaux td {
    border: none;
}

.calendrier-plateaux td:nth-child(1) {
    width: 25px;
    padding: 0 15px 0 0;
}

.calendrier-plateaux td:nth-child(2) {
    text-align: left;
}

.calendrier-plateaux img {
    vertical-align: -.3rem;
}

/* Classement des buteurs */

.ongletsClassementButeurs {
    width: 100%;
    display: flex;
    overflow-x: auto;
}

.ongletsClassementButeurs button {
    white-space: nowrap;
    background-color: whitesmoke;
    color: #2f2e2e;
    font-weight: bold;
    font-size: .9rem;
    padding: 10px 15px;
    margin-bottom: 5px;
    border: none;
    border-top: 2px solid whitesmoke;
    border-radius: 0;
    cursor: pointer;
}

.ongletsClassementButeurs button:hover {
    background-color: #2f2e2e;
    color: #cfbb59;
    transition: ease-in-out .3s;
    border-top: 2px solid #cfbb59;
}

.contenu-ongletClassementButeurs {
    margin-top: 20px;
}

.contenu-ongletClassementButeurs table td {
    border: none;
    padding: 0 5px;
}

.contenu-ongletClassementButeurs table tr:nth-child(even) {
    background-color: #d4d4d4;
}

.contenu-ongletClassementButeurs table tr:nth-child(odd) {
    background-color: whitesmoke;
}

/* Style pour l'onglet actif */
.ongletsClassementButeurs .onglet-actif button {
    background-color: #2f2e2e;
    /* Changez la couleur de fond selon vos préférences */
    color: #fff;
    /* Changez la couleur du texte selon vos préférences */
    border-top: 2px solid #cfbb59;
}


/* PAGE RESSOURCES */

.carousel-container-ressources {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px #2f2e2e;
}

.carousel-container-ressources .carousel-wrapper {
    display: flex;
    width: 500%;
    transition: transform .5s ease-in-out;
}

.carousel-container-ressources .carousel {
    display: flex;
    transition: transform 1s ease;
}

.carousel-container-ressources a {
    line-height: 0;
}

.carousel-container-ressources img {
    width: 100%;
    object-fit: contain;
}

.carousel-container-ressources button {
    position: absolute;
    top: 50%;
    padding: 5px;
    height: 100%;
    transform: translateY(-50%);
    font-size: 48px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    color: #cfbb59;
}

.carousel-container-ressources button:hover {
    color: rgba(217, 187, 89, .8);
    transition: .3s ease;
}

.carousel-container-ressources .prev {
    left: 0;
}

.carousel-container-ressources .next {
    right: 0;
}

/* PAGE LICENCES */

.flex_licences {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.entete_licences a img {
    border-radius: 15px;
    box-shadow: 0 0 8px #2f2e2e;
    max-width: 250px;
}

.entete_licences a img:hover {
    transform: scale(98%);
    transition: .3s;
}

/* Accordéon licences */

.accordion_licences {
    background-color: whitesmoke;
    cursor: pointer;
    width: 100%;
    text-align: left;
    outline: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: 0.5s;
    margin-bottom: 0;
}

.accordion_licences:hover {
    color: #cfbb59;
    transform: translateX(10px);
}

.accordion_licences_contenu {
    max-height: 0;
    overflow: hidden;
    background-color: whitesmoke;
    transition: max-height 1s ease-in-out;
    padding: 0 10px;
}

/**/

.infos_licence {
    border: solid 3px #cfbb59;
    border-radius: 20px;
    box-shadow: 0 0 10px #181818;
    background-color: #181818;
    padding: 0 2rem;
    margin-top: 20px;
}

.infos_licence p {
    color: #cfbb59;
}

.infos_licence a {
    color: white;
}

.infos_licence ul {
    color: #cfbb59;
    margin-left: -20px;
}

.infos_licence_titre {
    font-size: 2rem;
    color: #cfbb59;
    text-align: center;
}

.infos_licence_titre .bi-info-circle-fill {
    display: inline-block;
    margin-bottom: 15px;
}

.aides_licence {
    margin: 10px 0;
}

.aides_licence img {
    border-radius: 10px;
}

.aides_licence:hover {
    filter: brightness(.8);
    transform: scale(.98);
    transition: .5s ease;
}

/* PAGE EXERCICE */

.carousel-exercices {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px #2f2e2e;
    margin-bottom: 40px;
}

.carousel-exercices .carousel-wrapper {
    display: flex;
    width: 500%;
    transition: transform .5s ease-in-out;
}

.carousel-exercices .carousel {
    display: flex;
    transition: transform 1s ease;
}

.carousel-exercices a {
    line-height: 0;
}

.carousel-exercices img {
    width: 100%;
    object-fit: contain;
}

.carousel-exercices button {
    position: absolute;
    top: 50%;
    padding: 5px;
    height: 100%;
    transform: translateY(-50%);
    font-size: 48px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    color: #cfbb59;
}

.carousel-exercices button:hover {
    color: rgba(217, 187, 89, .8);
    transition: .3s ease;
}

.carousel-exercices .prev {
    left: 0px;
}

.carousel-exercices .next {
    right: 0px;
}

/* Système d'accordéon et flexbox des différentes sections contenant les exercices */

.accordion-exercices {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.flex-exercices {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 10px;
    gap: 20px;
}

.flex-exercices-icone_et_nom_document {
    display: flex;
    align-items: center;
    width: 200px;
}

.flex-exercices-icone_et_nom_document i {
    margin-right: 10px;
}

/* PAGE LIVRET DU STAGIAIRE */

.flex-livret-stagiaire {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 10px;
    gap: 20px;
}

.flex-livret-stagiaire-icone_et_nom_document {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.flex-livret-stagiaire-icone_et_nom_document p {
    margin: 10px 0;
    text-align: center;
}

/* PAGE PHOTOS/VIDEOS */

#gallery {
    margin: 20px 0;
    padding: 10px 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.album {
    margin-bottom: 20px;
}

.album h3 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
    margin-bottom: 20px;
}

.photos img {
    height: 100px;
    width: 150px;
    box-shadow: 0 0 3px #2f2e2e;
    border-radius: 5px;
    cursor: pointer;
}

.photos img:hover {
    transform: scale(.99);
}

#gallery button {
    padding: 10px;
    color: #cfbb59;
    font-weight: bold;
    border: 2px solid #cfbb59;
    border-radius: 10px;
    background-color: #2f2e2e;
    cursor: pointer;
}

/* Image page en cours de construction */

.page_construction {
    margin-top: 20px;
}

/* PAGE CONTACT */

.contact form input,
.contact form textarea {
    display: block;
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid black;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1rem;
}

.contact form input[type=submit] {
    width: 100%;
    cursor: pointer;
}

/* BOUTON DE PAIEMENT "Faire un don" (HelloAsso) */

.pay_button {
    -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
    -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
    box-shadow: inset 0px 1px 0px 0px #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf));
    background: -moz-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: -webkit-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: -o-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: -ms-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf', GradientType=0);
    background-color: #ededed;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    display: inline-block;
    cursor: pointer;
    color: #2F2E2E;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
    width: 100%;
    text-decoration: none;
    text-shadow: 0px 2px 0px #ffffff;
    text-align: center;
    letter-spacing: 2px;
}

.pay_button:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed));
    background: -moz-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: -webkit-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: -o-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: -ms-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed', GradientType=0);
    background-color: #dfdfdf;
}

.pay_button:active {
    position: relative;
    top: 1px;
}

/* FOOTER (PIED DE PAGE) */

footer {
    margin-bottom: -20px;
    background-color: #cfbb59;
    border-top: solid #2F2E2E 10px;
    font-family: Arial, 'Century Gothic', sans-serif;
}

footer>h2 {
    text-align: center;
    font-size: 3rem;
    font-family: 'Fira Sans', sans-serif;
    color: #2F2E2E;
    margin: 30px 0;
    border: none;
}

/* Caroussel partenaires public */
.slider-container_partenaires-publics {
    overflow: hidden;
    margin: 0 5.5% 30px 5.5%;
    position: relative;
    height: auto;
    /* Ajustez la hauteur selon vos besoins */
}

.slider-container_partenaires-publics::before,
.slider-container_partenaires-publics::after {
    background: linear-gradient(to right, rgb(217, 187, 89) 0%, rgba(217, 187, 89, 0) 100%);
    content: "";
    height: 200px;
    position: absolute;
    width: 100px;
    z-index: 2;
    margin: 0;
}

.slider-container_partenaires-publics::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider-container_partenaires-publics::before {
    left: 0;
    top: 0;
}

.slider_partenaires-publics {
    display: flex;
    animation: scroll_partenaires-publics 24s
        /* 4s par image */
        linear infinite;
    /* La durée en secondes correspond au temps d'un cycle : temps qu'il faut pour que toutes les images parcourent un cycle (sans prendre en compte les images en doublon) */
}

.slider_partenaires-publics .slide {
    flex: 0 0 auto;
    padding-right: 40px;
    /* Espacement entre les images */
}

.slider_partenaires-publics .slide img {
    /* Conserver un ratio 16/9 */
    height: 200px;
    width: 356px;
    border-radius: 10px;
}

@keyframes scroll_partenaires-publics {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-396px * 6));
        /* Dans Xpx * Y : X = largeur de l'image + margin-right ; Y = nombre de partenaires (pas le nombre d'images totales mais le nombre de partenaires, ne pas compter les images en doublon) */
    }
}

/* Caroussel MOBILE partenaires publics */

.mobile_slider-container_partenaires-publics {
    display: none;
    margin: 0 5.5% 30px 5.5%;
}

.mobile_slider-container_partenaires-publics img {
    width: 100%;
}

/* Caroussel partenaires privés */
.slider-container_partenaires-prives {
    overflow: hidden;
    margin: 0 5.5% 30px 5.5%;
    position: relative;
    height: auto;
    /* Ajustez la hauteur selon vos besoins */
}

.slider-container_partenaires-prives::before,
.slider-container_partenaires-prives::after {
    background: linear-gradient(to right, rgb(217, 187, 89) 0%, rgba(217, 187, 89, 0) 100%);
    content: "";
    height: 200px;
    position: absolute;
    width: 100px;
    z-index: 2;
}

.slider-container_partenaires-prives::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider-container_partenaires-prives::before {
    left: 0;
    top: 0;
}

.slider_partenaires-prives {
    display: flex;
    animation: scroll_partenaires-prives 32s
        /* 4s par image */
        linear infinite;
    /* La durée en secondes correspond au temps d'un cycle : temps qu'il faut pour que toutes les images parcourent un cycle (sans prendre en compte les images en doublon) */
}

.slider_partenaires-prives .slide {
    flex: 0 0 auto;
    padding-right: 40px;
    /* Espacement entre les images */
}

.slider_partenaires-prives .slide img {
    /* Conserver un ration 16/9 */
    height: 200px;
    width: 356px;
    border-radius: 10px;
}

@keyframes scroll_partenaires-prives {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-396px * 8));
        /* Dans Xpx * Y : X = largeur de l'image + margin-right ; Y = nombre de partenaires (pas le nombre d'images totales mais le nombre de partenaires, ne pas compter les images en doublon) */
    }
}

/* Caroussel MOBILE partenaires privés */

.mobile_slider-container_partenaires-prives {
    display: none;
    margin: 0 5.5% 30px 5.5%;
}

.mobile_slider-container_partenaires-prives img {
    width: 100%;
}

/* Menu de navigation footer */

.menu_footer {
    width: auto;
    background-color: #2F2E2E;
    color: white;
    margin: 0;
    padding: 50px 75px 30px 75px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px 50px;
}

.menu_footer h2 {
    color: #cfbb59;
    font-size: 1.3rem;
    text-align: justify;
    margin: 10px 0 20px 0;
    border: none;
}

.menu_footer .naviguer a:hover,
.menu_footer .informations a:hover {
    text-decoration: underline;
}

.menu_footer a,
.menu_footer p {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    line-height: 2rem;
}

.menu_footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    line-height: 2rem;
}

.menu_footer li {
    font-size: 1.1rem;
    margin: 10px 0;
}

.a_propos {
    width: 300px;
    text-align: justify;
}

.contactez_nous {
    width: 400px;
}

.mobile_menu_footer {
    display: none;
}

/* Fenêtre popup newsletter */

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
    overflow-y: scroll;
}

.popupMobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: whitesmoke;
    z-index: 99;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.popup-contenu {
    background-color: whitesmoke;
    position: absolute;
    width: 90%;
    height: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 50px 10px 20px 10px;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    animation: Newsletter .6s ease-in-out;
}

.popup-contenuMobile {
    background-color: whitesmoke;
    padding: 20px 0;
    height: fit-content;
}

@keyframes Newsletter {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fermer {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 2rem;
    color: #cfbb59;
    cursor: pointer;
}

/* PAGE LE JOURNAL DU CLUB */

.flex-journal-club {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.flex-journal-club-icone_et_nom_document {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 250px;
}

.flex-journal-club-icone_et_nom_document p {
    margin: 10px;
}

/* Barre responsable de la rédaction + hébergeur */

.footer_informations_techniques {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px 15%;
    background-color: #2f2e2e;
    color: white;
    margin-top: -10px;
    padding: 0 75px 20px 75px;
    font-family: Arial, Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}

.footer_informations_techniques h2 {
    color: #cfbb59;
    border: none;
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 25px;
}

.footer_informations_techniques p {
    color: white;
    font-size: 1rem;
    line-height: 2rem;
}

.footer_informations_techniques address {
    line-height: 2rem;
}

.responsable_redaction,
.informations_hebergeur {
    width: auto;
}

/* Barre copyright + réseaux sociaux */

.footer_social {
    background-color: #2F2E2E;
    text-align: center;
}

.footer_social .facebook-mini,
.footer_social .instagram-mini,
.footer_social .mail-mini {
    color: white;
}

.footer_social .facebook-mini:hover,
.footer_social .instagram-mini:hover,
.footer_social .mail-mini:hover {
    color: #cfbb59;
}

.copyright {
    background-color: #2F2E2E;
    margin: 0;
    padding: 10px 30px;
}

.copyright p {
    text-align: center;
    color: white;
    font-weight: bold;
    margin: 0;
    font-size: inherit;
}

/* STYLE DU BOUTON "RETOUR HAUT DE PAGE" */

#haut {
    display: none;
    position: fixed;
    bottom: 8px;
    right: 8px;
    z-index: 50;
    border: 1px solid rgb(217, 187, 83);
    outline: none;
    background-color: #2F2E2E;
    color: rgb(217, 187, 83);
    cursor: pointer;
    padding: 0;
    border-radius: 100px;
    font-size: 2rem;
    line-height: 0;
    width: 50px;
    height: 50px;
    box-shadow: 1px 1px 5px #2F2E2E;
}

#haut:hover {
    background-color: rgb(217, 183, 83);
    color: #2F2E2E;
    border: 1px solid #2F2E2E;
    transition: .3s ease-in-out;
}








/* MEDIA QUERIES (RESPONSIVE DESIGN) */

@media (max-width:1080px) {

    .container_nav-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        background-color: #2f2e2e;
        color: #cfbb59;
        height: 70px;
        padding: 0 15px;
        border-bottom: 5px solid #cfbb59;
        z-index: 98;
    }

    .nav-mobile {
        display: none;
        flex-direction: column;
        position: absolute;
        width: 100%;
        top: 75px;
        left: 0;
        background-color: #2f2e2e;
        border-bottom: 5px solid #cfbb59;
        text-align: left;
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 5px 20px #2f2e2e;
    }

    .menu-item-mobile {
        list-style-type: none;
        position: relative;
        margin: 20px 0;
    }

    .nav-mobile__link {
        color: #cfbb59;
        font-weight: bold;
        font-size: inherit;
    }

    .toggle-submenu {
        cursor: pointer;
        position: fixed;
        right: 20px;
        color: #cfbb59;
        transition: transform .6s ease;
        display: inline-block;
        transform-origin: center center;
        vertical-align: middle;
        padding: 0 5px;
    }

    .submenu-mobile {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.5s ease;
        opacity: 0;
    }

    .submenu-mobile li {
        list-style: none;
        margin-left: -30px;
        margin-top: 20px;
    }

    .submenu-mobile li a {
        margin: 10px;
        color: #cfbb59;
        font-weight: bold;
        font-size: auto;
    }

    .menu-item-mobile.active .submenu-mobile {
        max-height: fit-content;
        /* Ajustez selon le contenu */
        opacity: 1;
    }

    .menu-item-mobile.active .toggle-submenu {
        transform: rotate(180deg);
    }

    .menu-item-mobile.active .nav-mobile__link,
    .menu-item-mobile.active .toggle-submenu {
        color: white;
    }

    .nav-mobile.show {
        display: flex;
        transform: translateY(0);
        animation: fadeNavMobile .3s ease;
    }

    @keyframes fadeNavMobile {
        0% {
            opacity: 0;
            top: 50px;
        }

        100% {
            opacity: 1;
            top: 75px;
        }
    }

    #logo-club {
        display: block;
        height: 50px;
    }

    #menu-text {
        font-family: 'Dancing Script', cursive;
        font-size: 2rem;
    }

    #menu-icon,
    #menu-icon.open {
        display: block;
        height: 40px;
        margin: 0;
        cursor: pointer;
    }

    #menu-icon::before {
        content: '\2630';
        font-size: 30px;
    }

    #menu-icon.open::before {
        content: '\2573';
        font-size: 24px;
        line-height: 2.4rem;
        margin-right: 2px;
    }

    /* MENUS FOOTER (ordinateur + mobile) */

    .menu_footer {
        display: none;
    }

    .mobile_menu_footer {
        display: block;
        width: auto;
        background-color: #2F2E2E;
        color: white;
        margin: 0;
        padding: 30px;
    }

    .mobile_menu_footer button {
        width: 100%;
        cursor: pointer;
        color: #cfbb59;
        background-color: inherit;
        font-size: 1.3rem;
        font-family: 'Fira Sans', sans-serif;
        font-weight: bold;
        text-align: justify;
        margin-bottom: 10px;
        padding: 20px 20px 20px 0;
        border: none;
        border-bottom: 1px solid #cfbb59;
        outline: none;
        transition: 0.5s;
    }

    .mobile_menu_footer button:after {
        content: '\002B';
        color: #cfbb59;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

    .mobile_menu_footer .active:after {
        content: "\2212";
        color: #cfbb59;
    }

    .div_mobile_menu_footer {
        padding: 0;
        background-color: #2f2e2e;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
    }

    .mobile_menu_footer .div_mobile_menu_footer ul {
        list-style-type: none;
        margin-left: -40px;
    }

    .mobile_menu_footer .div_mobile_menu_footer ul li {
        padding: 10px 0;
    }

    .mobile_menu_footer .div_mobile_menu_footer a,
    .mobile_menu_footer .div_mobile_menu_footer p {
        color: white;
    }

    .footer_informations_techniques {
        padding: 0 30px 20px 30px;
    }
}

@media (max-width:720px) {

    /* NOS PARTENAIRES */

    .description_partenaire {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description_partenaire img {
        max-width: 400px;

    }

    .infos_partenaire {
        display: block;
    }

    .infos_partenaire .grid-element {
        margin-bottom: 20px;
    }

    .tableau_horaires_partenaires tr {
        height: 60px;
    }

    /* NOS PARTENAIRES */

    /* SLIDERS PARTENAIRES FOOTER */

    .slider-container_partenaires-publics {
        display: none;
    }

    .mobile_slider-container_partenaires-publics {
        display: block;
    }

    .slider-container_partenaires-prives {
        display: none;
    }

    .mobile_slider-container_partenaires-prives {
        display: block;
    }

    /* SLIDERS PARTENAIRES FOOTER */
}

@media (min-width:1081px) and (max-width:1360px) {

    /* Ordinateur fixe ou portable */
    .bande_menu .menu {
        font-size: 1.5rem;
    }
}

@media (min-width:721px) and (max-width:1080px) {

    /* Format tablette portrait/paysage */
    /* Mise en forme générale */
    body {
        font-size: 1.1rem;
    }

    .page_flex {
        display: block;
    }

    .page_flex main {
        margin-right: 0;
    }

    .bande_entete,
    .bande_menu {
        display: none;
    }

    /* Penser à intégrer le menu hamburger dès cette résolution d'écran */

    #songeons {
        width: 200px;
    }

    .entete_equipes h2 {
        font-size: 7rem;
    }

    @keyframes scroll_partenaires-publics {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-307px * 4));
            /* Dans (-X * Y), X = largeur de l'image + 40px (margin-right) ; Y = nb partenaires */
        }
    }

    @keyframes scroll_partenaires-prives {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-307px * 9));
            /* Dans (-X * Y), X = largeur de l'image + 40px (margin-right) ; Y = nb partenaires */
        }
    }

    .slider-container_partenaires-publics,
    .slider-container_partenaires-prives {
        height: 150px;
    }

    .slider-container_partenaires-publics .slider_partenaires-publics {
        display: flex;
        width: calc(307px * 4);
    }

    .slider-container_partenaires-prives .slider_partenaires-prives {
        display: flex;
        width: calc(307px * 9);
    }

    .slider-container_partenaires-publics .slider_partenaires-publics img,
    .slider-container_partenaires-prives .slider_partenaires-prives img {
        height: 150px;
        width: 267px;
    }


}

@media (min-width: 481px) and (max-width: 720px) {
    /* Téléphones mobiles */

    /* A partir de cette résolution, essayer de transformer le menu footer en accordéon pour gagner de la place et amélioré le design */

    /* Mise en forme générale */
    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    p,
    ul,
    ol {
        font-size: 1.1rem;
    }

    .page_flex {
        display: block;
    }

    .page_flex main {
        margin-right: 0;
    }

    .bande_entete,
    .bande_menu {
        display: none;
    }

    .grid_infos_articles_actualites {
        display: block;
        text-align: right;
    }

    #songeons {
        float: none;
        display: block;
        width: 400px;
        margin: auto;
    }

    .vignette-contact p,
    .informations_aides_licence p {
        text-align: center;
    }

    .countdown-value {
        font-size: 2rem;
        text-shadow: 1px 1px 3px #2f2e2e;
    }

    .countdown-label {
        font-size: .8rem;
    }

    .entete_equipes h2 {
        font-size: 5rem;
    }

    footer>h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {

    /* Mise en forme générale */
    h2 {
        font-size: 1.5rem;
        border-bottom: 3px solid black;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p,
    ul,
    ol {
        font-size: 1rem;
    }

    .page_flex {
        display: block;
    }

    .page_flex main {
        margin-right: 0;
    }

    .bande_entete,
    .bande_menu {
        display: none;
    }

    .grid_infos_articles_actualites {
        display: block;
        text-align: right;
    }

    #songeons {
        float: none;
        display: block;
        width: 100%;
        margin: auto;
    }

    .vignette-contact p,
    .informations_aides_licence p {
        text-align: center;
    }

    .countdown-item {
        margin: 12px;
    }

    .countdown-value {
        font-size: 1.5rem;
        text-shadow: 1px 1px 2px #2f2e2e;
    }

    .countdown-label {
        font-size: .6rem;
    }

    .entete_equipes h2 {
        font-size: 3rem;
    }

    .infos_licence_titre {
        font-size: 1.2rem;
    }

    footer>h2 {
        font-size: 2rem;
    }

    .menu_footer {
        padding: 50px 30px 30px 30px;
    }
}