:root {
  --body-bg-color: black;
  --font-title-citation: "Montserrat", sans-serif;
  --font-paragraph : "Inter", sans-serif;
}
*{ box-sizing: border-box; }
html{ font-size: 16px;}
body{ background-color: var(--body-bg-color); color: white; }
main{margin: 0 16px; position: relative;}
h1,h2,h3,h4,h5{
    font-weight: 700;
    font-family: var(--font-title-citation);
    font-style: normal;
}
h2{ 
    font-size: 1.375rem;  
    margin: 16px 0;
}
h3{ 
    font-size: 1.375rem;
    text-align: left;
}
h4,h5{
    font-size: 1.125rem;
    
}
h5{
    color:#D48E00;
    margin: 16px 0 8px;
}
p{
    font-family: var(--font-paragraph);
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
header{
    margin: 16px 16px 24px;
}
main section:first-child{
    margin-top: 40px;
}
section{ 
    text-align: center; 
    margin: 48px 0;
}
article{ text-align: left; font-size: 0;}
aside{
    display: inline-block;
    width: 47%;
    margin: 0 auto;
    text-align: center;
    background-color: #212121;
    border-radius: 15px;
    padding: 24px 0;
}
.bold{
    font-weight: 700;
}
.WhatsApp{
    background-color: #25D366;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    padding: 10px;
    top: auto;
    right: 16px;
    position: fixed;
    z-index: 1;
}
ul{
    padding-left: 16px;
    margin-top: 5px;
}
li{
    font-size: 1rem;
    font-weight: 400;
    list-style-type: disc;
    line-height: normal;
    font-family:var(--font-paragraph);
}
a{
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;
    color: white;
    font-family:var(--font-paragraph);
    font-weight: 700;
    line-height: normal;
}
.lien-logo{
    font-size:unset ;
    display: inline-block;
    line-height: unset;
}
aside img{
    display: block;
    font-size: 0;
    width: 25px;
    height: 25px;
    text-align: center;
    margin: 0 auto;

}
.date{
    font-size: 5vw;
    font-family:var(--font-paragraph);
    font-weight: 700;
    display: block;
    margin: 0 auto;
    text-align: center;
    color:#D48E00;
    padding: 6px 0 12px;
} 
.accompagnement{
    width: 100%;
    padding: 16px 0 0;
    text-align: left;
}
.cadre-icone{
    padding: 10px;
    border-radius: 15px;
    background-color: #D48E00;
    margin: 0 auto 16px;
    width: 46px;
    height: 46px;

}
img{
    width: 100%;
    border-radius: 15px;
    /* max-width: 338px; */
}
.citation{
    font-family: var(--font-title-citation);
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    line-height: 22px;
    margin-bottom: 24px;
}
.btn-or{
    background-color: #D48E00;
    font-family: var(--font-paragraph);
    width: 265px;
    margin: 16px auto 0 ;
    padding: 12px 16px;
    border-radius: 40px;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: inherit; 
    display: inline-block;
    text-align: center;
}

.logo-kasslakage-martho{
    /* width: 50%; */
    margin-bottom: 0px;
    max-width: 200px;
}
.card{
    border-radius: 15px;
    background-color: #212121;
    padding: 16px;
    margin: 16px 0;
}
.card p{
    text-align: center;
    padding-bottom: 16px;
}
.card-accompagnement p {
    text-align: left;
    padding-bottom: 0px;
}
.align-left{
    margin: 0 0 16px;
}
.intro{
    margin:16px 0 24px;
}
footer{
    background-color: #212121;
    margin: 16px 16px 28px;
    padding: 30px 0;
    text-align: center;
    border-radius: 15px;
}
footer a {
    font-weight: 500;
}
footer img{
    width: 23px;
    height: 23px;
    vertical-align: text-bottom;
}
footer article{
    text-align: center;
}
.margin-top{
    margin-top: 48px;
}


.container {
  display: flex;
  margin-top: 16px;
  flex-wrap: wrap;          /* permet le retour à la ligne */
  gap: 12px;                /* espace entre les blocs */
}

.bloc {
  width: calc(50% - 10px);  /* 2 blocs par ligne */
  height: 150px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.title-mon-acommpagnement{
    margin: 0 16px;
}

/* ===== BURGER ===== */
.burger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: #212121;
  border: none;
  cursor: pointer;
  z-index: 1001;
  border-radius: 5px;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  margin-bottom: 6px;
  transition: 0.3s;
}
.burger span:last-child{
    margin:0;
}

/* ===== MENU ===== */
.menu {
  position: fixed;
  inset: 0; /* top right bottom left = 0 */
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  flex-direction: column;
}

.menu ul {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 90%;
}

.menu li {
  margin: 25px 0;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
  display: inline-block;
  width: 100%;
}

/* ===== MENU OUVERT ===== */
.menu.open {
    transform: translateX(0);
    margin: 0 16px;
    padding-top: 40px;
}
.menu.open li{
    list-style-type:none;
    font-size: 1rem;
    background-color: #212121;
    border-radius: 15px;
}
.wrap-menu{
    width: 100%;
    height: 100%;
    padding-top: 10px;
}
.container-menu{
    margin: 0;
}
.container-menu .bloc{
    width: 100%;
    padding: 0;
    height: 78px;
    padding-left: 16px;
    margin-bottom: 16px;
    text-align: left;
}
.container-menu .cadre-icone {
    display: inline-block;
    vertical-align: middle;
    margin: 0 16px 0 0 ;

}
/* ===== ANIMATION BURGER ===== */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 4px);
  
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.joueurs-accompagnes-desktop{
    display: none;
}

.bloc-citation{
    display: none;
}

#mon-accompagnement .card p{
    text-align: left;
    padding-bottom: 0;
    margin-top: 16px;
}
#mon-accompagnement section{
    margin: 20px 0;
}

/* =================== RESPONSIVE =================== */
/* ===== DESKTOP ===== */

@media screen and (min-width: 480px) {
    article{ text-align: center;}
    h2{
        text-align: left;
        font-size: 1.375rem;
    }
    img{  max-width: 338px; }
    #mon-accompagnement .card article{ text-align: left;}
}

/* Tablet RESPONSIVE */
@media (min-width: 768px) {
    .WhatsApp{
        right: 36px;
    }
    h2{
        margin-top: 0;
    }
    header,main,footer, .title-mon-acommpagnement{
        width: 700px;
        margin: 25px auto;
    }
    .flex{
        display: flex;
        align-items: center;
    }
    .mobile{ display: none;}

    .btn-or{ height: min-content; }
    article{ text-align: left; }
    h2{ font-size: 1.75rem; }
    .joueurs-accompagnes-mobile{  display: none; }
    .joueurs-accompagnes-desktop{  display: block; }
    
    .gallery {
        display: flex;
        justify-content: center;
        margin-top: 60px;
    }
    .gallery-img {
        text-align: center;
        background-color: transparent;
        margin: 0 auto;
        padding: 5px;
    }
    .gallery-img img {
        width: 100%;
        height: auto;
        display: block;
    }

    .middle {
        transform: translateY(-50px); /* remonte l’image du milieu */
    }
    
    .btn-or{ width: auto; }
    section{   margin: 0 auto; }

    .bloc-citation {
        position: relative;
        display: block;
        margin-bottom: 50px;
    }

    .bloc-citation img {
        width: 100%;
        display: block;
    }

    .citation-box {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background:#212121;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 15px;
    }

    .citation {
        margin: 0;
        font-size: 0.8rem;
    }

    .burger{ right:30px; }

    .callToAction{
        position: absolute;
        top: 65%;
        right: 0;
    }

    .callToAction .btn-or { margin:0; }

    .mg-bottom{ margin-bottom: 50px; }
    .wrap{
        display: flex;
        gap: 15px;
    }
    .wrap .card{ padding: 10px; }
    /* .wrap p, .wrap li{ font-size: 0.875rem;} */
    .date{  font-size: 1.25rem; }
    #mon-accompagnement .citation{ display: none;}
    #mon-accompagnement > div:last-child{
        width: 65%;
    }
    #mon-accompagnement > div:first-of-type{
        width: 34%;
    }
    #mon-accompagnement > div:first-of-type section, #mon-accompagnement > div:last-child section:first-of-type, #mon-accompagnement > div:last-child section:last-child{
        margin:0 auto
    }
    .menu.open{ padding-top: 10px;}
    .wrap-menu{padding-top: 30px;}
}

@media (min-width: 968px) {
    header,main,footer, .title-mon-acommpagnement{
        width: 800px;
        margin: 25px auto;
    }
    .WhatsApp{ right: 86px; }
    .burger{ right: 11%;}

}
/* Mini desktop RESPONSIVE */
@media (min-width: 1024px) {
    .WhatsApp{ right: 117px; }
    h2{  font-size: 1.688rem; }
    .citation, .callToAction .btn-or{ font-size: 1rem; }
    .menu a { font-size: 2.5rem; }
    .container-menu, .wrap-menu h2{
        width: 70%;
        margin: 0 auto 27px;
    }
    .wrap-menu .container {
        width: 70%;
        margin: 0 auto;
    }
    .wrap-menu a { font-size: 1rem; }
    .menu.open > a{
        width: 70%;
        padding-top: 10px;
    }
}

/* Desktop RESPONSIVE */
@media (min-width: 1200px) {
    .WhatsApp{ right: 100px; }
    h2{ font-size: 2.5rem; }
    .citation, .callToAction .btn-or{ font-size: 1.3rem; }
    header,main,footer, .title-mon-acommpagnement{
        width: 1000px;
        margin: 25px auto;
    }
    .citation-box{
        padding:30px;
        border-radius: 25px;
    }
    .btn-or{padding: 15px;}
    .burger{ right: 15%; }
    #qui-suis-je > div:last-child{
        width: 64.5%;
    }
    #qui-suis-je > div:first-of-type{
        width: 34%;
    }
}

@media (min-width: 1320px) {
    .WhatsApp{ right: 165px; }
}
@media (min-width: 1440px) {
    .WhatsApp{ right: 225px; }
    .btn-or {
        font-size: 1.2rem;
    }
}