:root{
    /* les couleurs du site */
    --ecru: #fff8dc;
    --jaune: #e4a600;
    --bleu: #1550c6;
    --bRoi: #4169E1;

    font-size: 12px;
    /* font-family: 'Roboto','Philosopher'; */
}

@font-face {
    font-family: 'coolveticaRegular';
    src: url('/fonts/coolvetica rg.otf');
    font-weight: normal; /* Définit le poids (normal, bold, etc.) */
    font-style: normal;  /* Définit le style (normal, italic, etc.) */
}

@font-face {
    font-family: 'sansationRegular';
    src: url('/fonts/Sansation_Regular.ttf');
    font-weight: normal; /* Définit le poids (normal, bold, etc.) */
    font-style: normal;  /* Définit le style (normal, italic, etc.) */
}

body{
    font-family: 'sansationRegular', sans-serif;
}

h1 {
    text-align: center;
    margin: 30px;
}

h2 {
    text-align: center;
}

.affiche{
    text-align: center;
    margin: 10px;
}

.affiche img {
    height: 250px;
    width: 250px;
}

.affiche a {
    text-decoration: none;
    font-size: 2rem;
    margin-left: 10px;
    color: black;
}

.btn-info {
    color: black;
    height: 100%;
}

a.btn:hover{
    color: white;
}

.btn-danger {
    color: black;
}

.btn-secondary {
    color: black;
    height: 100%;
}

.boutons{
    display: flex;
    justify-content: space-evenly;
    margin: 20px;
}

.col-4 {
    text-align: center;
}

.recru {
    margin-left: 20px;
}
/* page 'index' pour les équipes */
.btn-primary{
    margin-left: 10px;
}

/* .btnAction a{
    margin-right: 10px;
} */
.btnAction a{
    padding: 15px;
}
.photo, .photoGroupe{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    text-align: center;
}

/* .photo img{
    max-width: 100%;
    height: auto;
} */

.imgPoule img{
    width: 100%; /* Prend toute la largeur de l'écran */
    height: auto; /* Garde les proportions */
}

.photoGroupe img{
    width: 100%;
    height: auto;
}

.equipe{
    flex-direction: column; /* Met tout en colonne sur les petits écrans */
    align-items: center;
}

.info{
    width: 100%; /* Prend toute la largeur de l'écran */
}

.info a{
    color: white;
}

.salle img{
    height: 250px;
    width: 100%;
    display: block;
    margin: 0;
}

.adresse{
    display: flex;
    align-items: flex-start; /* Aligne les éléments en haut */
    justify-content: space-around;
    max-width: 1200px; /* Largeur maximale du conteneur */
    width: 100%;
    margin: 0 auto; /* Centre horizontalement */ 
    gap: 10px;
}

.adresse div{
    margin-top: 15px;
}

.bouton{
    margin: 20px;
}
/* Fin de la vue portable */
/* Ecran d'au moins 1024px de largeur */
@media screen and (min-width:601px) {
    :root {
        font-size: 16px;
    }

    h1{
        margin: 20px;
    }

    #affiche_manif{
        margin-left: 300px;
    }
    
    .mb-3 {
        width: 600px;
    }
    
    .boutons {
        display: flex;
        justify-content: space-around;
    }

    .photo{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%; 
        text-align: center;
    }
    
    /* .photo img{
        max-width: 100%;
        height: auto;
    } */
    
    .imageEquipe img, .imagePoule img{
        width: 300px;
        height: auto;
    }
    
    .imgPoule img{
        width: 500px;
        height: auto;
    }
    
    .equipe{
        display: flex;
        flex-direction: row; /* Réinitialise la disposition en ligne sur les grands écrans */
        justify-content: space-between; /* Distribution des éléments */
        align-items: flex-start; /* Aligne les éléments en haut */
        gap: 20px; /* Espace entre l'image et les informations */
        max-width: 1200px; /* Définir une largeur maximale */
        width: 100%; /* Prend toute la largeur disponible */
        margin: 0 auto; /* Centre horizontalement */
    }

    .no-poule {
        text-align: center; /* Centrer le texte si pas d'image */
    }

    .photoGroupe {
        width: 700px;
        height: auto;
    }
}
/* fin de la vue ordinateur */