/* ====== menu.css - Header commun ====== */

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw;
    height: 8vh;
    background-color: #052D23;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

/* Logos */
#Logo {
    height: 5.5vh;
    width: auto;
}

#Logo_Ecrit {
    height: 7.5vh;
    width: auto;
}

/* Menu UL */
header ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4vw;
    margin: 0;
    padding: 0;
}

/* Menu LI */
header ul li {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: aeonik, sans-serif;
    cursor: pointer;
}

/* Menu A */
header ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.5s ease;
}

header ul li a:hover {
    color: #D6EE7B;
}

/* Sticky scroll effet */
header.sticky-scroll {
    box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
}