body{
    margin: 0;
    padding: 0;
    font-family: var(--font);
    overflow-x: hidden;
}

.grecaptcha-badge{
    display: none;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}

a:hover, a:focus, a:active, a:visited{
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}

/* NavBar */

.nav-bar{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: fixed;
    z-index: 1000;
    width: 100%;
}

.nav-bar .bulle-mobile{
    display: none;
}

.nav-bar .logo{
    background-color: var(--white-color);
    padding: 9px 30px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    width: fit-content;
}

.nav-bar .logo svg{
    width: 100%;
}

.nav-bar .menu{
    display: flex;
    flex-direction: row;
    gap: 30px;
    background-color: white;
    border-radius: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0px 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.nav-bar .menu a {
    padding: 10px 30px;
    border-radius: 50px;
    color: #2F2871;
    transition: background-color 0.5s, color 0.5s;
}

.nav-bar .menu .active{
    background-color: var(--violet-fonce-color);
    color: white;
}

.nav-bar .menu a:hover {
    background-color: var(--violet-fonce-color);
    color: white;
}

.nav-bar .contact {
    position: relative;
    background-color: var(--rose-color); 
    height: 50px;
    padding: 0px 30px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    width: fit-content;
    text-align: center;
}

.nav-bar .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--rose-color);
    border-radius: 50px;
    z-index: 0; 
    transition: filter 0.5s; 
}

.nav-bar .contact:hover::before {
    filter: saturate(0.8) brightness(0.5);
}

.nav-bar .contact p {
    color: var(--white-color);
    z-index: 10;
}

.bulle-reseau{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 35px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    
}

.bulle-reseau .tel-logo {
    background: var(--violet-clair-color);
    display: flex;
    align-items: center;
    border-radius: 50px;
    width: 50px;
    padding: 15px;
    transition: background-color 0.5s, width 0.5s ease-in-out;
    gap: 25px;
    overflow: hidden;
    position: relative;
    justify-content: flex-end;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

.bulle-reseau .tel-logo:hover {
    background-color: var(--violet-fonce-color);
}

.bulle-reseau .tel-logo p {
    display: none;
    color: var(--white-color);
    margin: 0;
    padding: 0;
    font-size: 1vw;
    opacity: 1;
    right: 50px;
    position: absolute;
    white-space: nowrap;
    transition: opacity 0.2s ease-in-out;
}

.bulle-reseau .tel-logo.active {
    width: 240px;
}

.bulle-reseau .tel-logo.active p {
    display: block;
}


.bulle-reseau .icon-reaseau{
    background: var(--violet-fonce-color);
    padding: 15px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    transition: background-color 0.5s;
    width: 50px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}

.bulle-reseau .icon-reaseau:hover{
    background-color: var(--rose-color);
}

.fleche-button-fixed {
    position: fixed;
    bottom: 20px;
    right: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: white;
    width: 50px;
    height: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Ajouter de l'ombre pour le relief */
    z-index: 99;
}
  
.progress-ring {
    position: absolute;
    width: 100%;
    height: 100%;
}
  
.progress-ring circle {
    transition: stroke-dashoffset 0.35s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

/* Menu Mobile */

.menu-mobile {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white-color);
    z-index: 1000;
    transition: display 1s ease-in-out;
}

.menu-mobile.active {
    display: flex;
    animation: top-to-bottom 1s ease-in-out;
}

.menu-mobile.closing {
    display: flex;
    animation: bottom-to-top 1s ease-in-out;
}


@keyframes top-to-bottom {
    0% {
        top: -100vh;
    }
    100% {
        top: 0;
    }
}

@keyframes bottom-to-top {
    0% {
        top: 0;
    }
    100% {
        top: -100vh;
    }
}

.menu-mobile .menu-mobile-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.menu-mobile .menu-mobile-content h3{
    color: var(--violet-fonce-color);
    font-size: 1.5vw;
    margin: 0;
    margin-bottom: 50px;
}


.menu-mobile .menu-mobile-content a{
    color: var(--violet-fonce-color);
    font-size: 2vw;
    padding: 10px 0;
    width: fit-content;
}

.menu-mobile .menu-mobile-content a.active{
    font-weight: 700 !important;
}

.menu-mobile .menu-mobile-content a:hover{
    color: var(--rose-color);
}

.menu-mobile .menu-mobile-content .contact{
    background-color: var(--rose-color); 
    height: 50px;
    padding: 0px 30px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    width: fit-content;
    text-align: center;
    position: relative;
}

.menu-mobile .menu-mobile-content .contact p{
    color: var(--white-color);
    z-index: 10;
    font-size: 1.5vw;
}

.menu-mobile .menu-mobile-content .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--rose-color);
    border-radius: 50px;
    z-index: 0; 
    transition: filter 0.5s; 
}

.menu-mobile .menu-mobile-content .contact:hover::before {
    filter: saturate(0.8) brightness(0.5);
}

.menu-mobile .menu-mobile-content .bulle-reseau-mobile{
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin: auto;
    margin-top: 50px;
}

.menu-mobile .menu-mobile-content .bulle-reseau-mobile .icon-reaseau {
    background: var(--violet-fonce-color);
    padding: 15px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    transition: background-color 0.5s;
    width: 50px;
    height: 50px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}

.menu-mobile .menu-mobile-content .bulle-reseau-mobile .icon-reaseau:nth-child(1) {
    background: var(--violet-clair-color);
}

.menu-mobile .menu-mobile-content .bulle-reseau-mobile .icon-reaseau:hover {
    background-color: var(--rose-color);
}


.menu-mobile .menu-mobile-content .close-menu-mobile{
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0px 30px;
    background-color: var(--violet-fonce-color);
    border-radius: 50px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    height: 50px;
    display: flex;
    align-items: center;
}

.menu-mobile .menu-mobile-content .close-menu-mobile p{
    color: var(--white-color);
    font-size: 1.5vw;
}

@media screen and (max-width: 1250px){

    .bulle-reseau{
        display: none;
    }

    .nav-bar{
        padding: 20px;
        justify-content: space-between;
    }

    .nav-bar .logo{
        width: fit-content;
    }
   
    .nav-bar .menu{
        display: none;
    }

    .nav-bar .contact{
        display: none;
    }

    .nav-bar .bulle-mobile{
        background-color: var(--white-color); 
        height: 50px;
        padding: 0px 30px;
        display: flex;
        align-items: center;
        border-radius: 50px;
        overflow: hidden;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
        width: fit-content;
        text-align: center;
    }

    .nav-bar .bulle-mobile p {
        width: 100%;
        color: var(--violet-fonce-color);
        z-index: 10;
    }
    
}

@media screen and (max-width:768px){

    .menu-mobile .menu-mobile-content h3 {
        font-size: 16px;
    }

    .menu-mobile .menu-mobile-content a {
        font-size: 24px;
    }

    .menu-mobile .menu-mobile-content .contact p {
        font-size: 24px;
    }

    .menu-mobile .menu-mobile-content .close-menu-mobile p {
        font-size: 14px;
    }
    
}