.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #f4f5ec;
    box-shadow: 0 2px 15px rgba(0,0,0,.05);
}

.nav-inner {
    max-width: 1400px;
    margin: auto;
    padding: 15px 25px;

    display: flex;
    align-items: center;
    gap: 25px;
}

.logo img {
    width: 180px;
    display: block;
}

/* MENU */

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}

.nav-center {
    flex: 1;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;

    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    white-space: nowrap;
}

.nav-links a.active {
    color: #D06C31;
}

/* ACTIONS */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* BOUTONS */

.btn-reserve,
.btn-auth {
    text-decoration: none;
    white-space: nowrap;

    padding: 10px 15px;

    border-radius: 12px;

    font-weight: 600;
}

.btn-reserve {
    background: #D06C31;
    color: white;
}

.btn-reserve:hover {
    background: #b85b26;
}

.btn-auth {
    border: 2px solid #C3C594;
    color: #D06C31;
    background: white;
}

.btn-auth:hover {
    background: #f5f5f5;
}

/* LANGUE */

.btn-lang {
    display: flex;
    align-items: center;
    gap: 6px;

    text-decoration: none;

    border: 2px solid #C3C594;
    border-radius: 12px;

    padding: 10px 14px;

    color: #D06C31;
    font-weight: 700;
}

.lang-menu {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);

    min-width: 180px;

    background: white;
    border-radius: 12px;

    box-shadow: 0 8px 20px rgba(0,0,0,.1);

    opacity: 0;
    visibility: hidden;

    transition: .25s;
}

.lang-menu:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.lang-dropdown li {
    list-style: none;
}

.lang-dropdown a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #444;
}

.lang-dropdown a:hover {
    background: #f4f4f4;
}

/* HAMBURGER */

.nav-toggle {
    display: none;

    width: 45px;
    height: 45px;

    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle__line {
    display: block;

    width: 100%;
    height: 3px;

    margin: 6px 0;

    background: #444;
}

/* MOBILE */

@media (max-width: 1200px) {

    .nav-inner {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(0,0,0,.05);
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        padding-top: 15px;
    }

    .nav-actions > * {
        width: 100%;
    }

    .btn-reserve,
    .btn-auth,
    .btn-lang {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}