body {
    background-color: #f5efe6;
    font-family: 'Inria Serif', serif;
}

.container {
    padding: 40px;
}

.titre-principal {
    font-size: 1.8em;
    background-color: #a0765e;
    color: white;
    padding: 20px 30px;
    display: inline-block;
    border-radius: 15px;
}

.sous-titre {
    font-size: 1.1em;
    margin-top: 10px;
    margin-bottom: 30px;
    color: #5a4636;
}

.grid-evenements {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.carte-evenement {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.carte-evenement:hover {
    transform: translateY(-5px);
}

.img-evenement {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.footer-carte {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.titre-evenement {
    font-size: 1.1em;
    font-weight: bold;
    color: #4a3a2d;
}

.notification-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}
