*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Segoe UI, sans-serif;
    background:#fdf8f6;
    color:#333;
}

.hero{
    min-height:100vh;
    padding:60px;
}

h1{
    text-align:center;
    color:#8b1e3f;
    font-size:4rem;
    margin-bottom:20px;
}

.intro{
    text-align:center;
    font-size:1.2rem;
    margin-bottom:50px;
}

.menu{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;

    max-width:1200px;
    margin:auto;
}

.menu{
    justify-items:center;
}

.card{
    background:white;

    text-decoration:none;
    color:#333;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 20px rgba(0,0,0,.08);

    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.card{
    width:100%;
    max-width:320px;
}


.emoji{
    font-size:3rem;
    margin-bottom:15px;
}

.card h2{
    color:#8b1e3f;
    margin-bottom:10px;
}

.card p{
    color:#666;
}

.couverture{
    width:100%;
    max-width:900px;

    height:350px;

    object-fit:cover;

    border-radius:25px;

    margin-bottom:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

