/* Footer CSS */
footer{
    background-color: var(--bleufonce);
    color: var(--blanc);
    padding-top:3.5vw;
    font-size: 0.9rem;
    position: relative;
    z-index:2
}
footer .bottom{
    padding-top:1.25rem;
    padding-bottom:1.25rem;
    margin-top:2rem;
    font-size:0.8rem;
}
footer .content, footer .bottom .content{
    width:90%;
    max-width:1280px;
    margin: 0 auto
}
footer .bdr{
    border-bottom: 1px solid rgba(255,255,255,.3)
}
footer ul{
    list-style: none;
    margin:0; padding:0;
}
footer ul li{
    margin:0.5rem 0;
    font-weight: bold;
}
footer ul li a{
    color: var(--blanc);
}
footer ul li a:hover{
    color: var(--bleuelectric);
}
footer .rezos{
    align-items: center;
    gap:0 1rem
}
footer .rezos a{
    width:35px; height: 35px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}
footer .rezos a:hover{
    transform: scale(1.1);
}
footer .rezos a.fbk{
    background-image: url(../img/fbk.svg);
}
footer .rezos a.lkd{
    background-image: url(../img/lkd.svg);
}
footer a.bt{
    display: inline-flex;
    justify-content: center;
    padding:0.75rem 1.5rem;
    border-radius: 2rem;
    color: var(--blanc);
    background-color: var(--bleuelectric);
    border:1px solid transparent;
    font-weight: bold;
}
footer a.bt:hover{
    border-color: var(--blanc)
}
footer a.bt.vert{
    background-color: var(--emeraude)
}
footer .bottom .menu-mentions-container ul{
    display: flex;
    flex-direction: column;
    gap:0.5 0rem;
}
footer .bottom .menu-mentions-container ul li{
    font-weight: normal;
    margin:0.25rem 0;
}
footer .bottom .menu-mentions-container ul li a:hover{
    color: var(--blanc);
    text-decoration: underline dotted;
}
.nav-mobile{
    position: fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow: auto;
    background: var(--bleufonce);
    color: var(--blanc);
    z-index:998;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: all 0.5s ease-out
}
.nav-mobile.opened{
    transform: translateX(0);
}
.nav-mobile .content{
    width:80%;
    max-width:540px;
    padding-top:100px;
}
.nav-mobile ul{
    list-style: none;
    margin:0; padding:0;
}
.nav-mobile ul li{
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.3);
    font-weight: bold
}
.nav-mobile ul li a{
    display: block;
    padding:1rem 0;
    color: var(--blanc)
}
@media screen and (min-width:578px){
    footer ul li{
        text-align:left;
    }
}
@media screen and (min-width:768px){
    footer .bottom .menu-mentions-container ul{
        flex-direction: row;
        gap:0 1rem;
    }
}

@media screen and (min-width:992px){
    footer .bdr{
        border-right: 1px solid rgba(255,255,255,.3);
        border-bottom: none
    }
}

#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: 50px;
    height: 50px;
    border: 2px solid var(--bleuelectric);
    border-top: 2px solid var(--emeraude);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}