/* Footer CSS */
footer{
    background-color: var(--jaune);
    padding: 5vw 0;
    color: var(--blanc)
}
footer .content{
    width:90%;
    max-width:1280px;
    margin:0 auto;
}
footer .ttl-footer{
    text-transform: uppercase;
    font-weight: bold;
}
footer .rezos{
    gap:1rem
}
footer .rezos a{
    display:inline-flex;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--blanc);
}
footer .rezos a:hover{
    box-shadow: 0 0 1rem var(--blanc)
}
footer .rezos a img{
    width: 35px;
    height: auto
}
footer .mentions{
    font-size:0.8rem;
}
footer .filet-v{
    width:1px;
    min-height:8vw;
    flex: 1 1 auto;
    background-color: var(--blanc)
}
footer ul{
    list-style:none;
    margin:1rem 0;
    padding:0;
}
footer ul li{
    margin:0.25rem 0;
    text-align:center;
    font-size:0.9rem;
}
@media screen and (min-width:992px){
    footer ul li{
    text-align:left;
}
}

footer ul li a{
    display:inline-block;
    padding:0.25rem 0;
    color: var(--blanc)
}
footer ul li a:hover{
    color: var(--darkblue)
}
footer .coordos{
    font-size:0.9rem;
}
footer .coordos a{
    color: var(--blanc)
}
footer .coordos img{
    width:150px;
    height: auto;
    border-radius:50%;
}
footer a:hover{
    color: var(--darkblue)
}
@media screen and (min-width:1920px){
    footer .content{
        max-width:1440px;
    }
}

.nav-mobile{
    position: fixed;
    z-index:998;
    left: 0;
    top:0;
    width:100%;
    height: 100%;
    overflow: auto;
    display: flex;
    justify-content: center;
    background-color: var(--blanc);
    transform: translate(-100%);
    transition: all 0.5s ease-out
}
.nav-mobile.opened{
    transform: translate(0);
}
.nav-mobile .inner{
    width: 80%;
    max-width:500px;
    margin-top:250px;
}
.nav-mobile ul{
    margin:1rem 0;
    list-style: none;
    padding: 0;
}
.nav-mobile ul ul.sub-menu{
    display: none;
    border-left: 1px dashed var(--darkblue);
    padding-left:1rem;
    margin-left:1rem;
}
.nav-mobile ul li a{
    display: flex;
    justify-content: space-between;
    gap:0.5rem;
    color: var(--darkblue);
    padding:0.75rem 0;
    text-decoration: none;
    font-weight: bold;
    text-decoration: none;
}
.nav-mobile ul ul.sub-menu li a{
    font-weight: normal;
}
.nav-mobile ul li.menu-item-has-children > a::after{
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-top:10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg); /* chevron down */
    margin-right: 8px;
    transition: transform 0.3s ease;
}
.nav-mobile ul li.menu-item-has-children > a.open::after{
    transform: rotate(225deg);
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid var(--darkblue);
    border-top: 2px solid var(--vert);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.points-forts{
    width:90%;
    max-width: 1280px;
    margin:0 auto;
}

@media screen and (min-width:1920px){
    .points-forts{
        max-width: 1440px;
    }
}
.points-forts .item{
    border: 1px solid var(--darkblue);
    background-color: var(--blanc);
    border-radius: 0.75rem;
    padding:1rem;
    flex:1 0 auto
}
.points-forts .item img{
    width:50px;
}
