/* Style général */
body { font-family: 'Montserrat', sans-serif; margin:0; background:#f7f3f0; color:#333; }
header { display:flex; justify-content:space-between; align-items:center; padding:15px; background:#f7f3f0; box-shadow:0 2px 5px rgba(0,0,0,.1); }
.logo { display:flex; align-items:center; gap:10px; font-weight:700; }
.logo img { height:90px; width:290px; }
nav { display:flex; gap:20px; }
nav a { text-decoration:none; color:#8A8481; }
.burger { display:none; font-size:24px; cursor:pointer; }

/* Conteneur des widgets */
.widgets-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Widget */
.widget {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Effet au survol */
.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Titre */
.widget h3 {
    margin-top: 0;
    color: #333;
}

/* Texte */
.widget p {
    color: #555;
    line-height: 1.6;
}
