@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap');

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f4f9 0%, #e6efff 100%);
}

.banniere_haut {
    position: relative;
    width: 100%;
    height: 45vh;
    background-image: url('../img/360_F_78089331_Gg57V2EkQ566wPisVY08N2PYNs319UhF.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.filtre_sombre {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.titre_principal {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.titre_principal h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.titre_principal h4 {
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: 400;
    opacity: 0.9;
}

.conteneur_menu {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 40vh;
    background: linear-gradient(180deg, #f0f4f9 0%, #ffffff 100%);
}

.message_bienvenue {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: center;
}

.liste_boutons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.bouton_chat,
.bouton_mdp,
.bouton_deco,
.bouton_connexion,
.bouton_inscription {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.bouton_chat a,
.bouton_mdp a,
.bouton_deco a,
.bouton_connexion a,
.bouton_inscription a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #1f1f1f !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    height: 100%;
}

.bouton_chat:hover,
.bouton_mdp:hover,
.bouton_deco:hover,
.bouton_connexion:hover,
.bouton_inscription:hover {
    transform: translateY(-5px);
    background: #0084ff;
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.3);
    border-color: #0084ff;
}

.bouton_chat:hover a,
.bouton_mdp:hover a,
.bouton_deco:hover a,
.bouton_connexion:hover a,
.bouton_inscription:hover a {
    color: #fff !important;
}

.bouton_chat p,
.bouton_mdp p,
.bouton_deco p,
.bouton_connexion p,
.bouton_inscription p {
    margin: 0;
    width: 100%;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}