/*******************************************
    MENU
*******************************************/
.padding-bottom-page {
    padding-bottom: 200px;
}

.navbar {
    z-index: 1020 !important;
    width: 100% !important;
    margin: auto !important;
}

.navbar.sticky {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.container {
    margin-top: -50px; /* Compense la hauteur de la navbar */
}

.container-fluid {
    width: 60% !important;
}

h1 {
    color: #fff;
}

.card-img-top {
    height: 300px;
    width: 100%;
    object-fit: cover; /* Recadre l'image pour qu'elle remplisse bien le cadre sans déformation */
}

nav.navbar li.nav-item {
    list-style: none !important;
}

nav.navbar li.nav-item a {
    font-family: Arial, sans-serif;
    letter-spacing: 0.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #2c3e50, #34495e);
    left: 0;
    bottom: -1px;
    transition: width 0.3s ease; /* Effet de soulignement progressif */
}

li a:hover::after {
    width: 95%; /* Soulignement plein sur le hover */
}