/* Palette des couleurs pour la navbar */
:root {
    --primary-blue: #0072ce;
    --primary-orange: #f7941e;
    --primary-black: #000000;
    --white: #ffffff;
    --medium-gray: #6c757d;
}

/* Logo styles */
.logo {
    line-height: 1;
}

.navbar-brand.logo img {
    height: 30px;
    margin-right: 8px;
}

.logo h1 {
    font-size: 26px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

@media (max-width: 1200px) {
    .logo {
        order: 1;
    }
}

/* Navbar styling */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-link {
    color: var(--primary-black) !important;
}

.nav-link.active {
    color: #fff !important;
    background-color: var(--primary-blue);
    border-radius: 4px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 20px;    /* espace entre les liens */
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-orange);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
}
.breadcrumb-custom a {
    text-decoration: none;
}
