body {
    font-family: Ubuntu , sans-serif;
    background-color: #F5F5F5;
    box-sizing: border-box;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

.navigation {
    padding: 16px 64px;
    background-color: transparent;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* gap: 6rem; */

    position: sticky;
    top: 0;

    z-index: 5;

    transition: opacity 0.5s ease, background-color 0.5s ease, filter 0.5s ease;
}

.navigation.scrollnav {
    background-color: rgba(0, 0, 0, 0.5);
}

.navigation.scrollnav .rubrique-site ul li a, .navigation.scrollnav .reseaux img {
    color: white;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7452%) hue-rotate(202deg) brightness(96%) contrast(103%);
}

.navigation .burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
}
.navigation .burger span {
    display: block;
    height: 3px;
    background: black;
    transition: 0.3s;
    width: 100%;
    border-radius: 2px;
}

/* Menu mobile par défaut caché */
#nav-links {
    transition: transform 0.3s ease;
}

#nav-links.active {
    transform: translateX(0);
}

.navigation .rubrique-site {
    width: 45%;

    align-self: center;

}

.navigation .rubrique-site ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    width: 100%;
}

.navigation .rubrique-site ul li {
    font-size: 24px;
    width: 33.3%;
}

.navigation .rubrique-site ul li a {
    cursor: pointer;
    color: black;
    text-decoration: none;
    text-align: center;

    display: block;
    width: 100%;
    position: relative;

    transition: font-family 0.35s;
}

.navigation .rubrique-site ul li a:hover {
    font-family: UbuntuBold;
}

.navigation .rubrique-site ul li a.effect-underline {
    position: relative;
}

.navigation .rubrique-site ul li a.effect-underline:after {
	content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    display: inline-block;
    height: 1em;
    width: 100%;
    border-bottom: 1px solid;
    opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

.navigation .rubrique-site ul li a.effect-underline:hover:after {
    opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.navigation .logo {
    width: 10%;

    display: flex;
    justify-content: center;
}

.navigation .logo img {
    height: 72px;
    width: 72px;
}

.navigation .logo a {
    position: relative;
}

.navigation .logo .stream {
    border: solid 1px rgba(255, 0, 0, 0.5);
    border-radius: 50%;
}

.navigation .logo .stream:hover {
    transform: scale(1.2);
    transition: all 0.5s;
}

.navigation .logo #logo_live.live::after{
    content: "LIVE";

    background-color: red;
    padding: 5px 8px;
    border-radius: 8px;

    font-family: UbuntuBold;
    color: white;

    position: absolute;
    bottom: -8px;
    left: 12px;

    box-shadow: 0px 0px 16px rgba(255, 0, 0, 0.5);

    animation: heartbeat 2s infinite;
}

.navigation .reseaux {
    width: 45%;

    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 2rem;
}

.navigation .reseaux a {
    align-self: center;
}

.navigation .reseaux img {
    height: 2rem;
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7498%) hue-rotate(21deg) brightness(82%) contrast(103%);
}

.navigation .reseaux a:hover img {
    transform: scale(1.3) rotate(10deg);
    filter: brightness(0) saturate(100%) invert(90%) sepia(18%) saturate(7498%) hue-rotate(332deg) brightness(97%) contrast(97%);

    transition: transform 0.5s ease-in-out;
}

.home {
    display: flex;
    flex-direction: row;
    gap: 2rem;

    margin: 5rem 0;

    position: relative;
}

.cube-intro {
    position: absolute;
    top: 0;
    right: 50%;
}

.cube-intro.cube-position {
    position: absolute;
    bottom: 16px;
    left: 16%;
    top: initial;
    right: initial;
}

.cube-intro .cube {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    background-color: #F3A333;
    border-radius: 16px;
}

.cube-intro .cube-grand {
    position: absolute;
    top: -56px;
    left: 56px;
    opacity: 15%;
    transform: rotate(60deg);
}

.cube-intro.cube-position .cube-grand {
    top: 0px;
    left: 32px;
}

.cube-intro .cube-moyen {
    position: absolute;
    top: 64px;
    left: 40px;
    opacity: 50%;
    transform: rotate(70deg);
} 

.cube-intro.cube-position .cube-moyen {
    top: -8px;
    left: -80px;
}

.cube-intro .cube-mini {
    position: absolute;
    top: 16px;
    opacity: 25%;
    transform: rotate(45deg);
}

.cube-intro.cube-position .cube-mini {
    top: -64px;
    left: 0px;
}

.cube-grand {
    height: 89px;
    width: 89px;
}

.cube-moyen {
    height: 68px;
    width: 68px;
}

.cube-mini {
    height: 44px;
    width: 44px;
}

.home .home-intro {
    width: 50%;

    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;

    padding: 0 0 0 10%;
}

.home .home-intro h1 {
    font-family: UbuntuBold;
    font-size: 64px;
    line-height: 80px;
}

.home .home-intro h1 span {
    font-size: 70px;
    color: #F3A333;

    position: relative;
}

.home .home-intro h1 span::after {
    content: "VICTOIRE";
    color: rgba(243, 163, 51, 0.2);
    /* opacity: 20%; */

    position: absolute;
    top: 8px;
    left: 8px;

    animation: fade-out 0.2s ease-in-out forwards;
}

.home .home-intro h2 {
    font-family: UbuntuBold;
    font-size: 32px;
}

.home .home-intro .cta-home {
    display: flex;
    justify-content: flex-end;

}

.home .home-intro .cta-home button {
    padding: 0.5rem 2rem;
    border: solid 1px #F3A333;
    border-radius: 16px;

    background-color: #F5F5F5; /* Ajout d'une couleur de fond normale */
    transition: all 0.3s ease; /* Transition fluide pour tous les changements */
}

.home .home-intro .cta-home button:hover, .choose-coaching-container .btn-choose-coaching button:hover {
    background-color: #F3A333; /* Couleur de fond au hover */
    color: white; /* Couleur du texte au hover */
    transform: scale(1.05); /* Grossissement de 5% au hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Ombre plus prononcée au hover */
}

.home .home-intro .cta-home button a {
    text-decoration: none;
    color: #F3A333 ;
    font-size: 32px;
    text-transform: capitalize;
    font-family: UbuntuBold;

    transition: color 0.3s ease; /* Transition pour la couleur du texte */
}

.home .home-intro .cta-home button:hover a, .choose-coaching-container .btn-choose-coaching button:hover a {
    color: white; /* Couleur du texte au hover */
}

.home .home-img {
    width: 50%;
    position: relative;

    display: flex;
    justify-content: flex-end;
}

.home .home-img .decor1 {
    animation: slide-left 0.9s ease-in-out forwards, fade-out 0.9s ease-in-out 0.2s forwards;
    border-radius: 16px;
}


.home .home-img .decor2 {
    position: absolute;
    top: 0;
    transform: translateX(0%);
    animation: slide-left 1s ease-in-out 0.2s forwards, fade-out 0.9s ease-in-out 0.2s forwards;
}

.body-site {
    margin: 16px auto;
    width: 1312px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 4rem;
}


/* text pour les nom des rubrique */

h2 {
    font-family: UbuntuBold;
    font-size: 56px;
    padding: 24px 0;
   
}

h2 span {
    display: inline-block;
    position: relative;
}

h2 span::before{
    content: "";
    position: absolute;
    bottom: 8px;
    height: 24px;
    width: 100%;
    background-color: #F3A333;
    border-radius: 8px;
    transform: rotate(-4deg);
    z-index: -1;
}

/* ----------------------- */

.about-me {
    position: relative;
}

.about-me-container {
    /* display: flex;
    flex-direction: row; */

    display: grid;
    grid-template: auto auto / 66% 10% 24%;

    margin: 24px 0;
}

.about-me-container .about-me-container-text {
    height: fit-content;
    padding: 24px;

    background-color: white;
    border-radius: 16px;

    grid-area: 1 / 1 / 2 / 3;
    
    display: flex;
    flex-direction: column;
    gap: 24px;

    position: relative;

}

.about-me-container .about-me-container-text span, .explain-coaching h3 span {
    color: #F3A333;
    font-family: UbuntuBold;
}

.about-me-container .about-me-container-text::after {
    content: "";
    background-color: #F3A333;
    opacity: 20%;
    position: absolute;
    top: 16px;
    left: 16px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: -1;
} 

.about-me-container .about-me-container-text p {
    font-size: 24px;
}

.about-me-container .about-me-img {
    grid-area: 1 /2 / 3 / 4;
    z-index: 1;
    position: relative;
}

.about-me-container .about-me-img::after {
    content: url(../img/draw_fairy_background.svg);
    /* background-color: #F3A333; */
    /* background-image: url(../img/draw_fairy_background.svg); */
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: -32px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: -1;
}

.about-me-container .about-me-img img {
    border-radius: 16px;
}

.about-me-container .about-me-img figcaption {
    font-size: 12px;
    text-align: center;
    font-family: UbuntuLightItalic;
    opacity: 50%;
}

.about-me .cube-aboute-me {
    right: 20%;
}

.about-me .cube-aboute-me .cube-grand {
    top: 16px;
    left: 80px;
}

.about-me .cube-aboute-me .cube-moyen {
    top: 16px;
    left: -32px;
}

.about-me .cube-aboute-me .cube-mini {
    top: -24px;
    left: 40px;
}


.about-me .cube-aboute-me-other {
    bottom: 80px;
    right: 90%;
    top: initial;
}

.about-me .cube-aboute-me-other .cube-grand {
    top: -72px;
    left: -80px;
}

.about-me .cube-aboute-me-other .cube-moyen {
    top: -40px;
    left: 40px;;
}

.about-me .cube-aboute-me-other .cube-mini {
    top: 32px;
    left: 0;
}

.explain-coaching h3 {
    font-size: 24px;
}

.explain-coaching .stepper-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 64px;
    padding-bottom: 24px;
    /* padding: 48px 0; */
}

.explain-coaching .stepper-container .stepper {
    position: relative;
    padding: 5rem 0;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.explain-coaching .stepper-container .stepper h4 {
    font-family: UbuntuBold;
    font-size: 32px;
    text-align: center;
}

.explain-coaching .stepper-container .stepper p {
    font-size: 24px;
    text-align: center;
} 

.explain-coaching .stepper-container .stepper img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    height: 25rem;
}

.explain-coaching .stepper-container .stepper::after {
    content: " ";
    animation: rotate 2s infinite;
    width: 300px;
    height: 300px;
    display: block;
    position: absolute;
    top: 16%;
    right: 0;
    border-radius: 50%;
    border: 3px dotted rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.explain-coaching .stepper-container .stepper:nth-child(2)::after {
    top: 8%;
}

.explain-coaching .stepper-container .stepper:last-child::after {
    top: 24%;
}

.choose-coaching h3 {
    font-size: 24px;
}

.choose-coaching h3:nth-child(3) {
    padding-top: 40px;
}

.choose-coaching-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;

    padding: 3rem 0;
}

.choose-coaching-container .coaching {
    display: flex;
    flex-direction: column;
    justify-content: space-between;    

    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    width: 24%;
    height: 576px;

    position: relative;

    transition: transform 0.3s ease;
}

.choose-coaching-container .coaching::after {
    content: "";
    background-color: #F3A333;
    opacity: 20%;
    position: absolute;
    top: 16px;
    left: 16px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: -1;
    filter: blur(16px);
}

.choose-coaching-container .coaching h4, .choose-coaching-container .coaching .price {
    font-family: UbuntuBold;
    font-size: 40px;
    cursor: context-menu;
}

.choose-coaching-container .coaching:hover h4, .choose-coaching-container .coaching:hover .price {
    font-size: 48px;
    color: #F3A333;

    /* transform: scale(1.2); */

    transition: all 0.5s ease-in-out;
}

.choose-coaching-container .coaching ul {
    height: 50%;
    cursor: context-menu;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.choose-coaching-container .coaching ul li {
    font-size: 24px;

    display: flex;
    flex-direction: row;
    gap: 8px;
}

.choose-coaching-container .coaching ul li::before {
    content: url("../img/checked.svg");

}

.choose-coaching-container .btn-choose-coaching {
    display: flex;
    justify-content: center;
}

.choose-coaching-container .btn-choose-coaching button {
    border: solid 2px #F3A333;
    border-radius: 16px;
    background-color: initial;
    padding: 8px 32px;

    background-color: white; /* Ajout d'une couleur de fond normale */
    transition: all 0.3s ease; /* Transition fluide pour tous les changements */
}

.choose-coaching-container .btn-choose-coaching a {
    color: #F3A333;
    font-family: UbuntuBold;
    text-transform: capitalize;
    font-size: 25px;
    text-decoration: none;

    transition: color 0.3s ease; /* Transition pour la couleur du texte */
}

.choose-coaching .choose-coaching-text {
    font-size: 32px;
    text-align: center;
    padding: 0 167px;
}

.form-coaching-main p {
    font-size: 24px;
}

.form-coaching form {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    padding: 3rem 0;
}

.form-coaching form .form-step {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-coaching form .form-step .style-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-coaching form .form-step .style-input label {
    font-size: 24px;
}

.form-coaching form .form-step .style-input input, .form-coaching form .form-step .style-input select, .form-coaching form .form-step .style-input textarea {
    border-radius: 5px;
    padding: 8px 16px;
    border: solid 1px rgba(0, 0, 0, 0.2);
    outline: solid 1px rgba(0, 0, 0, 0);
    resize: vertical;

    font-family: Ubuntu;
    font-size: 16px;
}

.form-coaching form .form-step .style-input input::placeholder, .form-coaching form .form-step .style-input textarea::placeholder {
    opacity: 50%;
}

.form-coaching form .form-step .style-input input:focus-visible, .form-coaching form .form-step .style-input select:focus-visible, .form-coaching form .form-step .style-input textarea:focus-visible {
    outline: solid 1px #F3A333;
}

.form-coaching form .form-step .style-input #rank, .form-coaching form .form-step .style-input #rank option[disabled]  {
    color: #a9a9a9;
}

.form-coaching form .form-step .style-input #rank.valid, .form-coaching form .form-step .style-input #rank option    {
    color: #000;
}

.form-coaching form .form-step .style-input .required {
    position: relative;
    display: flex;
    gap: 8px;
}

.form-coaching form .form-step .style-input .required::after {
    content: "*";
    color: #F3A333
} 

.form-coaching form .form-step .style-input .discord {
    position: relative;
}

.form-coaching form .form-step .style-input .discord img {
    height: 4rem;
    position: absolute;
    bottom: 0;
    left: 299px;
}

.form-coaching form .form-step .form-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.form-coaching form .form-step .form-container .style-input {
    width: 50%;
}

.form-coaching form .form-step .form-radio {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-coaching form .form-step .form-radio legend {
    font-size: 24px;
}

.form-coaching form .form-step .form-radio .form-radio-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    width: 50%;
}

.custom-radio {
    display: none;
}

.form-coaching form .form-step .form-radio .form-radio-container .form-radio-input {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
}

.form-coaching form .form-step .form-radio .form-radio-container .form-radio-input label  {
    font-size: 24px;
    width: 100%;

    cursor: pointer;
    position: relative; /* Nécessaire pour le positionnement de l'élément radio personnalisé */

    display: flex;
    gap: 8px;
}

/* Bouton radio personnalisé */
.form-coaching form .form-step .form-radio .form-radio-container .form-radio-input label::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: white;
    transition: all 0.2s ease;
}

/* Quand l'input est coché */
.custom-radio:checked + label::before {
    border-color: #F3A333 !important; /* Bordure orange */
    background-color: white !important; /* Fond blanc */
}

.custom-radio:checked + label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: #F3A333; /* Couleur orange au centre */
    border-radius: 50%;
}

.form-coaching form .form-step h4 {
    font-size: 32px;
    font-family: UbuntuBold;
}

.form-coaching form .form-admin {
    gap: 8px;
}

.form-coaching form .form-admin .style-input label {
    font-size: 16px;

    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.form-coaching form .form-admin .style-input label span {
    width: 32%;
    opacity: 50%;
}

.form-coaching form .form-admin .captcha {
    display: flex;
    justify-content: flex-end;
}

.form-coaching form .form-step .submit-form {
    display: flex;
    justify-content: flex-end;
}

.form-coaching form .form-step .submit-form input[value="ENVOYER"] {
    color: #F3A333;
    font-family: UbuntuBold;
    font-size: 32px;
}

.form-coaching form .form-step .submit-form input {
    background-color: initial;
    border: solid 1px #F3A333;
    padding: 8px 128px;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-explain ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-explain ul li {
    font-size: 24px;

    display: flex;
    flex-direction: row;
    gap: 8px;
}

.form-explain ul li::before {
    content: url("../img/checked.svg");

}

/* Animation au hover */
.form-coaching form .form-step .submit-form input:hover {
    transform: scale(1.05); /* Grossissement de 5% */
    background-color: #F3A333; /* Fond orange */
    color: white; /* Changer la couleur du texte en blanc */
}

/* Animation pour revenir à la taille d'origine */
.form-coaching form .form-step .submit-form input:active {
    transform: scale(0.95); /* Réduction à 95% lors du clic */
}

.form-coaching #responseMessage p {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 3rem;
}

.footer {
    display: flex;
    flex-direction: column;

    background-color: white;
    padding: 48px 64px 24px 64px;
}

.footer .footer-info {
    display: flex;
    flex-direction: row;

    padding: 80px 0;

    position: relative;

}

.footer .footer-info::before {
    content: " ";

    width: 100%;
    height: 1px;

    position: absolute;
    top: 0;
    left: 0;

    background-color: #F3A333;
}

.footer .footer-info::after {
    content: " ";

    width: 100%;
    height: 1px;

    position: absolute;
    bottom: 0;
    left: 0;

    background-color: #F3A333;
}

.footer .footer-info .footer-info-arbo {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 1rem;
    
    width: 40%;
}

.footer .footer-info .footer-info-arbo h4 {
    font-size: 48px;
    letter-spacing: 8px;
    font-family: UbuntuBold;
    color: #F3A333;
    text-align: center;
}

.footer .footer-info .footer-info-arbo .arbo-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
}

.footer .footer-info .footer-info-arbo .arbo-container p {
    position: relative;

    width: 33.3%;
    text-align: center;
}

.footer .footer-info .footer-info-arbo .arbo-container p a {
    font-size: 24px;
    color: #F3A333;
    text-decoration: none;
}

.footer .footer-info .footer-info-arbo .arbo-container p::after {
    content: " ";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #F3A333;
}

.footer .footer-info .footer-info-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .footer-info .footer-info-text p {
    font-size: 32px;
    text-align: center;
}

.footer .footer-info .footer-info-text p.mail-pro {
    font-size: 40px;
    font-family: UbuntuBold;
    color: #F3A333;
}

.footer .footer-info .footer-reseau {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

.footer .footer-info .footer-reseau a:hover img {
    transform: scale(1.3) rotate(10deg);
    transition: all 0.5s;
}

.footer .footer-info .footer-reseau img {
    height: 2rem;
    filter: brightness(0) saturate(100%) invert(90%) sepia(18%) saturate(7498%) hue-rotate(332deg) brightness(97%) contrast(97%);
}

.footer .footer-legal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 0 0 0;
}

.footer .footer-legal p {
    color: black;
    font-size: 16px;
}

.footer .footer-legal p .made {
    text-decoration: none;
    font-size: 11px;
}

.footer .footer-legal p a {
    color: black;
}