/* Pour les grands titres (On se dit Oui !) */
h1 {
    font-family: 'Parisienne', cursive;
    font-size: 75px; /* On l'affiche en grand pour l'élégance */
    font-weight: 400;
    color: #b9b28c;    /* Ou une autre couleur douce comme un rose poudré #d4a373 */
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;

}

/* Pour tout le reste du site */
body {
    font-family: 'Montserrat', sans-serif;
    background-color:#f5f5dc;
    color: #5D574F;
    background-image: linear-gradient(rgba(245, 245, 220, 0.8), rgba(245, 245, 220, 0)), url('/static/img/fond.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.date_et_lieu {
    font-weight: bold;
    font-size: 30px;
    color: #b9b28c;
}

button[type="submit"]:hover {
    background-color: #7a624d !important; /* Un ton un peu plus sombre */
    transform: translateY(-2px); /* Un léger soulèvement */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}