body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 20px;
}
/* Titre principal de la recette */
h1 {
    text-align: center;            /* centre le titre */
    color: #ab7c46;                /* couleur harmonieuse */
    font-family: 'Poppins', sans-serif; /* police moderne */
    font-size: 36px;               /* taille du titre */
    font-weight: 600;              /* semi-bold */
    margin-top: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;     /* optionnel, majuscules */
    letter-spacing: 1px;           /* espacement entre les lettres */
    text-shadow: 1px 1px 2px rgba(171, 124, 70, 0.4); /* ombre légère pour relief */
}

h1, h2 {
    text-align: center;
    color: #ab7c46;
}

h3 {
    margin-top: 20px;
    color: #6b4a2f;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: #ab7c46;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


div img {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
    border-radius: 8px;
}
.grilletape {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.etape {
    background-color: #ffffff;
    box-shadow: 0 4px 12px #ab7c46;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}
.etape:hover {
    transform: scale(1.03);             /* léger zoom */
    box-shadow: 0 15px 35px rgba(171, 124, 70, 0.5); /* ombre plus marquée */
}

.etape img {
    width: 100%;
    max-width: 200px; /* réduire taille */
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}
/* Photo principale de la recette - style pro */
.result {
    display: block;                     /* centrer l'image */
    margin: 30px auto;                  /* espacement vertical et centrage */
    width: 50%;                         /* largeur responsive */
    max-width: 400px;                   /* limite largeur max */
    max-height: 400px;                   
    border-radius: 16px;                /* coins arrondis plus doux */
    box-shadow: 0 10px 25px rgba(171, 124, 70, 0.4); /* ombre subtile */
    border: 2px solid #f5f5f5;         /* fine bordure claire */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* animation hover */
}

/* Effet hover */
.result:hover {
    transform: scale(1.03);             /* léger zoom */
    box-shadow: 0 15px 35px rgba(171, 124, 70, 0.5); /* ombre plus marquée */
}
/* Section Ingrédients */
.ingredients {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(171, 124, 70, 0.4);
    border-radius: 12px;
}

.ingredients h2 {
    text-align: center;
    color: #ab7c46;
    margin-bottom: 15px;
}

.ingredients ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}


