/* ===================================================== */
/* MENU DESKTOP – HUMAN FIRST EUROPE                     */
/* Fichier : menu-desktop.css                             */
/* Style cohérent avec style.css global                  */
/* ===================================================== */

/* RÉINITIALISATION LÉGÈRE */
.top-menu, .top-menu ul, .top-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 9999;
    padding: 25px 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* LIENS DU MENU */
.menu-links {
    display: flex;
    gap: 40px; /* espacement large premium */
    align-items: center;
}

.menu-links li a {
    font-family: "Playfair Display", serif; /* cohérent avec ton site */
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    padding: 6px 4px;
    position: relative;
    transition: all .3s ease;
}

/* EFFET HOVER LIGNE SOUS LE TEXTE */
.menu-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #c59a6d; /* or doré du site */
    transition: width .3s ease;
}

.menu-links li a:hover::after {
    width: 100%;
}

/* Couleur au survol */
.menu-links li a:hover {
    color: #c59a6d;
}

/* RESPONSIVE : cacher pour mobile */
@media (max-width: 900px) {
    .top-menu {
        display: none !important;
    }
}
