/* Police style journal */
li,a,p, h1,h2,h3,h4,h5,h6 {
    font-family: 'Raleway', serif;
    font-size: 16px;
}

.menu-luxe .nav-link {
    font-size: 1.15rem;
    color: #1a1a1a !important;
    padding: 0.5rem 1.2rem;
    position: relative;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Soulignement doré animé */
.menu-luxe .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #b38203; /* doré élégant */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-luxe .nav-link:hover {
    color: #b38203 !important;
}

/* Page courante */
.menu-luxe .current-menu .nav-link {
    color: #b38203;
    border-bottom-color: #b38203;
    font-weight: 600;
}

.menu-luxe .nav-link:hover::after {
    width: 60%;
}

