/* =========================
   SECTION HERO (INTRODUCTION)
   ========================= */
.hero{
    max-width: 1200px;
    margin: 20px auto 40px;
    background: #ffffff;
    padding: 40px 60px;
    border-top: 4px solid #0ea574;
    border-bottom: 4px solid #0ea574;
}

.hero h1{
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0c6b3f;
    text-align: center;
}

.hero p{
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0;
}


/* =========================
   CONTENU PRINCIPAL
   ========================= */
main{
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 60px 60px;
    background: #ffffff;
}

main h2{
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #0c6b3f;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

main p{
    font-size: 1.6rem;
    line-height: 1.8;
}

/* =========================
   SÉLECTION ÉTÉ
   ========================= */
.selection-ete{
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #ffffff;
    padding: 40px 60px 60px;
    border-radius: 12px;
}

.selection-ete h2{
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #0c6b3f;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.selection-ete p{
    font-size: 1.8rem;
    line-height: 1.8;
}

.selection-ete figure{
    margin: 30px auto 0;
    text-align: center;
}

.hero{
    max-width: 1200px;
    margin: 20px auto 40px;
    background: #ffffff;
    padding: 40px 60px;
    border-top: 4px solid #0ea574;
    border-bottom: 4px solid #0ea574;
}

.hero h1{
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0c6b3f;
}

.hero p{
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0;
}

main{
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 60px 60px;
    background: #ffffff;
}

main h2{
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #0c6b3f;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

main p{
    font-size: 1.6rem;
    line-height: 1.8;
}

.selection-ete{
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #ffffff;
    padding: 40px 60px 60px;
    border-radius: 12px;
}

.selection-ete h2{
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #0c6b3f;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.selection-ete p{
    font-size: 1.8rem;
    line-height: 1.8;
}

.selection-ete figure{
    margin: 30px auto 0;
    text-align: center;
}

/* =========================
   SÉLECTION TEMPS FROIDS
   ========================= */

.selection-froid{
    max-width: 1200px;
    margin: 0 auto 60px;
    background: #ffffff;
    padding: 40px 60px 60px;
    border-radius: 12px;
}

.selection-froid h2{
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 2.6rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #0c6b3f;
    text-align: center;
}

.selection-froid-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.selection-froid-item{
    flex: 1 1 30%;
    text-align: center;
}

.selection-froid-item img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.selection-froid-item:hover img{
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

/* =========================
   COUPS DE CŒUR – BOX
   ========================= */

.cold-favorites{
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px 60px 60px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.cold-favorites h2{
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 2.6rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #0c6b3f;
}

.favorites-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.favorite-item{
    flex: 1 1 30%;
    display: block;
}

.favorite-item img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.favorite-item:hover img,
.favorite-item:focus img{
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */

@media (max-width: 768px){

    .hero,
    main{
        padding: 25px 20px 30px;
    }

    .selection-ete,
    .selection-froid{
        padding: 25px 20px 30px;
    }

    .selection-froid-grid{
        flex-direction: column;
        align-items: center;
    }

    .cold-favorites{
        padding: 25px 20px 30px;
    }

    .favorites-grid{
        flex-direction: column;
    }
}
}
