/***************************/
/* NAV */
/***************************/

.navbar {                       height: 110px;position: absolute;top: 0;left: 0;width: 100%;z-index: 1000;background-color: var(--blanc);min-height: 80px;}
.navbar.transparent {           background-color: transparent;box-shadow: none;}
/*.nav-container {                max-width: 1200px;margin: 0 auto;display: flex;justify-content: space-between;align-items: center;padding: 0 20px;}*/
.nav-container {    display: flex;justify-content: space-between;align-items: center;position: relative;}
.nav-logo img {                 height: 120px;width: auto;position: relative;}
.nav-links {                    list-style: none;display: flex;gap: 30px;margin: 0;}
.nav-links a {                  font-size: 14px; text-decoration: none;color: #0a1633;font-weight: 100;text-transform: uppercase; transition: color 0.3s;}
.nav-links a:hover {            color: var(--orange);}

/* --- Le bouton Hamburger (caché sur ordinateur) --- */
.hamburger {                    display: none; }/*flex-direction: column;  cursor: pointer;  background: none;  border: none;  gap: 5px;}*/
.hamburger span {               width: 25px;  height: 3px;  background-color: #000;  transition: 0.3s;}
.hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
