.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* Hauteur fixe */
    padding: 0 2rem;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 10;
    overflow: hidden;
    /* Rien ne dépasse */
}

.main-header:hover {
    background-color: #1a1a1a;
}

.navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.navigation {
    width: 100%;
    display: flex;
    justify-content: center;
}


/* Logo */
.logo img {
    height: 100px;
    /* 👈 plus grand que le header */
    width: auto;
    margin-top: 20px;
    /* ajustement visuel pour bien le centrer */
}


/* Liens de nav */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffbd44;
}