/* --- POLICES --- */
@font-face {
    font-family: Roboto;
    src: url("./Fonts/Roboto-Regular.ttf"),
         url("./Fonts/Roboto-Regular.woff"),
         url("./Fonts/Roboto-Regular.woff2");
}

@font-face {
    font-family: Lato;
    src: url("./Fonts/Lato-Regular.ttf");
}

/* --- RESET & BASES --- */
body, * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    padding: 35px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

img {
    width: 100%;
    display: block;
    height: auto;
}

/* --- TYPOGRAPHIE & COULEURS COMMUNES --- */
.subtitle {
    font-family: Roboto, sans-serif;
    text-align: center;
    margin: 40px 0;
    font-size: 18px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

p.subtitle { font-weight: 900; }

span.rouge, span.rouge-gras { color: #8A2033; }
span.rouge-gras { font-weight: 700; }

/* --- SECTION BIENVENUE & FACEBOOK --- */
.bienvenue {
    padding-top: 70px;
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
}

.fb-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #8A2033;
    padding-bottom: 5px;
    border-radius: 18px;
    box-shadow: 4px 4px 10px 3px rgba(51, 51, 51, 0.25);
    background: #fff;
    width: 100%;
}

.fb-follow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fb-button-container {
    padding: 15px 20px;
}

.fb-button {
    padding: 0.5em 1em;
    background: linear-gradient(92.04deg, #8A2033 0.33%, #FD612F 97.61%);
    border-radius: 10px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 0.06em;
    text-decoration: none;
    display: inline-block;
}

.fb-plugin {
    width: 80%;
}

div.tac_facebookpage {
    width: 100%;
    min-height: 700px; /* Force la boîte à la taille du module FB */
}

/* --- SECTION EQUIPE REVISITÉE & SIMPLIFIÉE --- */
.equipe-section {
    width: 100%;
    max-width: 1100px;
    padding: 20px 30px;
    margin-top: 30px;
}

.equipe-section .subtitle {
    padding-top: 20px;
    margin-bottom: 30px;
}

/* Style de l'image de famille */
.image-famille-centree {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.image-famille-centree img {
    box-shadow: 4px 4px 10px 3px rgba(51, 51, 51, 0.25);
    border-radius: 18px;
}

/* Style du texte de présentation */
.txt-presentation.equipe-details {
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    width: 100%;
}

.txt-presentation.equipe-details p {
    margin-bottom: 20px; /* Espace entre les paragraphes */
}

/* CLASSE UNIQUE POUR CHAQUE MEMBRE : ÉMOJI, NOM EN GRAS, BORDURE ROUGE */
p.membre-equipe {
    padding-left: 15px; /* Espace pour la bordure bordeaux */
    border-left: 4px solid #8A2033; /* Barre décorative bordeaux */
    line-height: 1.7;
    font-weight: normal; /* Le texte de description est normal */
}

/* S'assurer que les noms et les émojis sont en gras/stylisés dans .membre-equipe */
p.membre-equipe strong, 
p.membre-equipe .rouge-gras {
    font-weight: bold; /* Noms en gras */
}

/* Style des émojis stylisés (grands) */
p.membre-equipe .emoji {
    font-size: 1.3rem; /* Emoji plus grand */
    margin-right: 5px; /* Espace après l'émojis */
    display: inline-block;
    vertical-align: middle;
}

/* --- RESPONSIVE DESKTOP ACCUEIL (900px+) --- */
@media screen and (min-width: 900px) {
    .bienvenue {
        padding-top: 130px;
        display: flex;
        gap: 50px;
        align-items: flex-start;
    }

    .img-bienvenue { flex: 2; }
    
    .fb-container { 
        flex: 1; 
        min-width: 350px; 
        max-height: 75vw;
        margin: 0;
        overflow: hidden;
    }

    .fb-button { font-size: 20px; }

    .subtitle { font-size: 25px; margin-top: 20px; margin-bottom: 0; }
    h2.famille { font-size: 28px; padding-bottom: 50px; }

    .txt-presentation.equipe-details {
        font-size: 18px;
        line-height: 1.8;
    }
}

/* --- TRES GRAND ECRAN (1400px+) --- */
@media screen and (min-width: 1400px) {
    .fb-container { min-width: 540px; }
    
    .equipe-section .subtitle { font-size: 40px; }

    main > * {
        max-width: 1200px;
    }
    
    .txt-presentation.equipe-details {
        font-size: 22px;
        padding: 0 5%;
    }
}