/* ==================================== DEBUT global ====================================*/
main {
    padding-bottom: 0;
}
.container {
    padding-bottom: 8%;
}
/*FIN global*/

/* ==================================== DEBUT présentation ====================================*/
#presentation {
    float: left;
    width: 70%;
    height: 70%;
}
#presentation div {
    padding: 20px 20px 20px 0;
    column-count: 2;
    column-gap: 40px;
}
#presentation p {
    break-inside: avoid;
    orphans: 2;
    widows: 2;
}
/*FIN présentation*/


/* ==================================== DEBUT Chiffre clés ====================================*/
#chiffre {
    position: relative;
    width: 30%;
    height: 60%;
    float: right;
}
#chiffre h2 {
    padding-left: 36%;
}
.bulle {
    position: absolute;
    top: 55px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-basis: 100%;
    max-width: 100%;
}
.bulle-chiffre {
    top: 0px;
    width: 90px;
    height: 90px;
    background: rgba(187, 65, 68, 0.60);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin: 0 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 3.20);
    overflow: hidden;
    flex: 0 1 90px;
    margin-bottom: 15px;
}
.chiffre {
    font-size: 2.5em;
    font-weight: bolder;
    text-align: center;
    line-height: 1;
    margin-bottom: 10px;
    z-index: 1;
}
.titre-bulle {
    color: black;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
    margin-bottom: 14px;
}
#chiffre1 {
    color: #BF4C52;
}
#bulle1 {
    background: rgba(187, 65, 68, 0.20);
    width: 120px;
    height: 120px;
    flex: 0 1 120px;
}
#titre1 {
    padding-top: -10px;
}
#chiffre2 {
    color: #BF4C52;
    font-size: 3.5em;
    margin-bottom: -5px;
}
#bulle2 {
    background: rgba(187, 65, 68, 0.20);
    margin-top: 75px;
}
#titre2 {
    font-size: 10px;
    padding-bottom: 5px;
}
#chiffre3 {
    color: #E6AAB2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: -5px;
    font-size: 3.5em;
}
#bulle3 {
    background: rgba(187, 65, 68, 0.60);
    margin-top: 10px;
}
#chiffre4 {
    color: #E6AAB2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: -5px;
    font-size: 2.8em;
}
#bulle4 {
    background: rgba(187, 65, 68, 0.90);
    margin-right: 30px;
    margin-top: -20px;
}
#chiffre5 {
    color: #E6AAB2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: -5px;
    font-size: 4em;
}
#bulle5 {
    background: rgba(187, 65, 68, 0.60);
    margin-left: 5px;
}
#titre5 {
    font-size: 10px;
    padding-bottom: 5px;
}
#chiffre6 {
    color: #E6AAB2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: -5px;
    font-size: 3em;
}
#bulle6 {
    background: rgba(187, 65, 68, 0.80);
    width: 70px;
    height: 70px;
    flex: 0 1 70px;
    margin-top: -40px;
}
#titre6 {
    font-size: 10px;
    padding-bottom: -5px;
}
/*FIN Chiffre clés*/


/* ==================================== DEBUT équipe ==================================== */
#equipe {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
#lequipe {
    margin-bottom: 30px;
}
.equipe-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: auto;
    width: 100%;
}
.equipe-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    position: relative;
}
.equipe-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    background: #fff;
    position: relative;
}
.equipe-card:hover .overlay {
    opacity: 1;
    pointer-events: auto;
}
.equipe-card p {
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.8em;
    text-align: left;
    width: 160px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 12px 0 8px 16px;
    box-sizing: border-box;
    line-height: 1.5;
}
.equipe-card::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 100%;
    transform: translateY(-100%);
    width: 12px;
    height: 80px;
    background:
        radial-gradient(circle at center, #bb4144 30%, transparent 30%) 0 0/12px 12px,
        radial-gradient(circle at center, #c85659 30%, transparent 30%) 0 16px/12px 12px,
        radial-gradient(circle at center, #d56b6e 30%, transparent 30%) 0 32px/12px 12px,
        radial-gradient(circle at center, #e28083 30%, transparent 30%) 0 48px/12px 12px,
        radial-gradient(circle at center, #f0d5d7 30%, transparent 30%) 0 64px/12px 12px;
    background-repeat: no-repeat;
    z-index: 100;
    pointer-events: none;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .5s ease;
    display: flex;
    margin-top: 80%;
    align-items: end;
    justify-content: center;
    pointer-events: none;
}
.Nom {
    font-weight: bold;
}
/*FIN équipe*/


/* ==================================== DEBUT responsive ====================================*/
@media screen and (max-width: 1465px) {
    .container {
        width: 100%;
    }
    #presentation {
        position: relative;
        float: none;
        left: 0;
        width: 90%;
        height: auto;
        margin: auto;
        display: block;
        column-count: 1;
    }
    #presentation div {
        column-count: 1;
    }
    #chiffre {
        position: relative;
        float: none;
        right: 0;
        width: 90%;
        height: auto;
        margin: 40px auto;
        margin-right: auto;
    }
    .bulle {
        position: relative;
        top: 0;
    }
    #chiffre h2 {
        padding-left: 0;
        margin-bottom: 30px; 
    }
    #equipe {
        width: 90%;
        margin: 40px auto;
    }
    .equipe-row {
        gap:  5%;
    }
    .equipe-card {
        margin-bottom: 20px;
    }
    .overlay {
        margin-top: 60%;
    }
}

@media screen and (min-width: 2000px) {
    .bulle {
        width: 900px;
        height: auto;
        top: 40%;
    }
    .equipe-card img {
        width: 320px;
        height: 320px;
    }
    .equipe-card {
        width: 320px;
    }
    .equipe-card p {
        width: 320px;
    }
}
/*FIN responsive*/