/* Import de la police */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* STYLE GLOBAL */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    color: #fff;
    padding-top: 60px; /* ajusté à la vraie hauteur du menu */
}

/* MENU FIXE EN HAUT */
.menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

/* Icônes du menu */
.menu-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-bar img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: 0.2s ease;
}

/* Effet au survol */
.menu-bar img:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* Contenu centré */
.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}