/* styles.css pour page Accueil - version améliorée */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #fef6f6, #f3eaea);
    color: #3d1f1f;
}

main {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.welcome h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2a0e0e;
    line-height: 1.4;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 2rem;
}

.feature {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 25px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature h2 {
    font-size: 1.4rem;
    color: #642c2c;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    color: #5a3b3b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.feature img {
    height: 120px;
    object-fit: contain;
    margin-top: 10px;
}
