nav.blc-navbar {
    background: #2D4A3E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 56px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
    box-sizing: border-box;
    margin: 0;
}

nav.blc-navbar .blc-nav-logo {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

nav.blc-navbar .blc-nav-links {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

nav.blc-navbar .blc-nav-links a,
nav.blc-navbar .blc-nav-right a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 15px;
    transition: .2s;
    font-weight: 500;
    display: inline-block;
    background: transparent;
}

nav.blc-navbar .blc-nav-links a:hover,
nav.blc-navbar .blc-nav-right a:hover {
    color: #fac32c;
    background: rgba(131, 14, 14, 0.15);
}

nav.blc-navbar .blc-nav-right {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav.blc-navbar .blc-btn-inscription {
    background: #ffffff;
    color: #2e5a44;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: bold;
}

nav.blc-navbar .blc-btn-inscription:hover {
    background: #f0f5ee;
    color: #2e5a44;
}

nav.blc-navbar .blc-btn-profil {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4bc5d;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
}

.blc-nav-spacer {
    height: 56px;
    width: 100%;
}