/* ======================================================
MENU
====================================================== */

.menu{
    text-align:center;
    padding:20px;
}

/* Boutons */

.menu a{
    display:inline-block;
    padding:15px 25px;
    margin:10px;
    border-radius:15px;
    text-decoration:none;
    color:white;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.menu a:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

/* Couleurs */

.bt-accueil{
    background:#3498db;   /* bleu */
}

.bt-demo{
    background:#e74c3c;   /* rouge */
}

.bt-fonctions{
    background:#27ae60;   /* vert */
}

.bt-contact{
    background:#f39c12;   /* orange */
}

/* ======================================================
PAGE DEMO
====================================================== */

.bloc-demo{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 4px 15px rgba(0,0,0,0.15);
    margin-top:25px;
}

/* ======================================================
BANDEAU LOGO
====================================================== */

.bandeau-menu{
    text-align:center;
    background:white;
    padding:5px 0 0 0;
}

.bandeau-menu img{
    max-width:300px; /* à ajuster */
    width:90%;
    height:auto;
}

/* ======================================================
DEMOS
====================================================== */

.intro-demo{
    text-align:center;
    font-size:18px;
}

.grille-demos{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:30px;
}

.carte-demo{
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.demo-image img{
    width:100%;
    border-radius:15px;
}

.demo-contenu h2{
    color:#3498db;
}

.demo-contenu ul{
    padding-left:20px;
}

.bouton-demo{
    display:inline-block;
    margin-top:15px;
    background:#e74c3c;
    color:white;
    padding:15px 25px;
    border-radius:15px;
    text-decoration:none;
    font-weight:bold;
}

.bouton-demo:hover{
    background:#c0392b;
}

@media screen and (max-width:1000px){

    .grille-demos{
        grid-template-columns:1fr;
    }

}