/*
Theme Name: Boite a Malice Modern
Author: Custom
Version: 1.0
Description: Thème modernisé pour boiteamalice.org
*/

body{
font-family:Arial,Helvetica,sans-serif;
margin:0;
background:#f7f7f7;
color:#333;
}

.container{
max-width:1200px;
margin:auto;
padding:20px;
}

header{
background:#fff;
border-bottom:1px solid #ddd;
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:70px;
}

nav ul{
list-style:none;
display:flex;
gap:20px;
margin:0;
padding:0;
}

nav a{
text-decoration:none;
color:#333;
font-weight:bold;
}

.hero{
background:#eaf4ff;
padding:60px;
text-align:center;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:#fff;
padding:20px;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

footer{
background:#222;
color:white;
padding:40px;
margin-top:40px;
}