/* --------- GLOBAL STYLES --------- */
html {
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Permet au body de prendre toute la hauteur de la page */
}

a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
}

a2 {
    text-decoration: none;
    color: #00adef;
    font-size: 1rem;
    cursor: pointer;
}

a:hover {
    color: #00adef;
}

li {
    list-style-type: none;
}

/* --------- HEADER --------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    background-color: rgba(255, 255, 255, 0.9); /* Légère transparence pour un effet visuel */
    z-index: 1000; /* Assure que l'en-tête reste au-dessus des autres éléments */
}

.navbar {
    width: 100%;
    max-width: 1200px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

.navbar .button-menu {
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
    display: none; 
}

/* --------- MENU --------- */
.button-menu-ph {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 200px;
    background: rgba(0, 0, 0, 0.67);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.button-menu-ph.open {
    display: block;
}

.button-menu-ph li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
