.navbar {
    position: sticky;
    top:0;
    z-index: 1020; /* Valeur standard Bootstrap pour sticky-top */
    background-color: var(--bs-navbar-bg); /* Pour s'assurer qu'elle n'est pas transparente au scroll */
}
.header {
    padding-top: 10rem;
    padding-bottom: 10rem;
    margin-top: 56px;
  }
@media (max-width: 768px) {
    .header {
        padding-top: 5rem;
    }
}

/* SCROLL TO TOP */
#btn-back-to-top {
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    right: 20px;
    display: none;
    --bs-btn-border-color: none;
    color: var(--wrk-beige-sable);
    background-color:var(--wrk-anthracite);
}