/* Reset uniquement pour le header */
header,
header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    width: 100%;
    font-family: Arial, sans-serif;
}

/* Réseaux sociaux */
.reseaux_sociaux {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 8px 5%;
    background-color: #000;
}

.reseaux_sociaux a {
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease;
}

.reseaux_sociaux a:hover {
    color: #d63384;
    transform: scale(1.15);
}

/* Partie logo association */
.logo-lasource {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    background-color: #fff;
}

.text-logo-lasource .titre-assos {
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
}

.text-logo-lasource .nom-assos {
    font-size: 28px;
    font-weight: 500;
    color: #000;
}

.logo-lasource img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

/* Logo EroticArt */
.logo-eroticArt {
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 5%;
}

.logo-eroticArt img {
    max-width: 600px;
    width: 80%;
    height: auto;
    object-fit: contain;
}

/* Menu */
.menu-navigation {
    background-color: #000;
    padding: 16px 0;
    border-top: 1px solid #333;
}

.menu-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
}

.menu-navigation ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.menu-navigation ul li a:hover,
.menu-navigation ul li a.active {
    color: #d63384;
}

/* Responsive */
@media (max-width: 768px) {
    .reseaux_sociaux {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12px;
    }

    .logo-lasource {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .text-logo-lasource .nom-assos {
        font-size: 24px;
    }

    .logo-lasource img {
        height: 55px;
    }

    .logo-eroticArt {
        padding: 30px 5%;
    }

    .logo-eroticArt img {
        width: 90%;
    }

    .menu-navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    .menu-navigation ul li a {
        font-size: 15px;
    }
}