
/* FOND GLOBAL */
body {
background: #f4f6f8;
font-family: Arial, sans-serif;
}
/* HEADER FIXE */
.site-header {
position: sticky;
top: 0;
background: linear-gradient(90deg, #2c3e50, #34495e);
color: white;
text-align: center;
padding: 15px;
z-index: 1000;
}
/* TITRE PRINCIPAL */
h1 {
font-size: 34px !important;
text-align: center;
font-weight: bold;
color: #2c3e50;
}
/* SOUS-TITRE */
h2 {
font-size: 26px !important;
text-align: center;
color: #555;
}
/* BLOCS MENU (STYLE CARTES) */
.wp-block-button__link {
display: block;
background: white;
color: #2c3e50 !important;
font-size: 22px;
font-weight: bold;
padding: 20px;
margin: 10px 0;
border-radius: 15px;
text-align: left;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: 0.3s;
}
/* HOVER */
.wp-block-button__link:hover {
background: #eaf2f8;
transform: scale(1.02);
}
/* TEXTE */
p {
font-size: 20px;
text-align: center;
}
/* FOOTER */
footer {
text-align: center;
padding: 20px;
color: #777;
}