/* ===========================
   HERO SECTION HARMONYE
=========================== */

.hero-harmonye {
    background: #F5F5F5;
    padding: 80px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #333333;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #C0392B;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    transition: 0.3s ease;
}

.hero-button:hover {
    background-color: #A93226;
}

/* ===========================
   MENU - PALETTE ORIGINE
=========================== */

#sp-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #DDDDDD;
}

.sp-megamenu-parent > li > a {
    color: #111111;
}

.sp-megamenu-parent > li:hover > a,
.sp-megamenu-parent > li.active > a {
    color: #C0392B;
}

#sp-header .sp-megamenu-parent .sp-dropdown li a:hover {
    color: #C0392B;
}

/* ===========================
   TITRES & LIENS
=========================== */

h1, h2, h3, h4, h5 {
    color: #111111;
    font-weight: 700;
}

.article-details .article-title {
    color: #111111;
}

a {
    color: #C0392B;
    text-decoration: none;
}

a:hover {
    color: #A93226;
    text-decoration: underline;
}

/* ===========================
   BOUTONS GLOBAUX
=========================== */

.btn, .button, button, input[type="submit"] {
    background-color: #C0392B;
    border: none;
    color: white;
    border-radius: 4px;
    padding: 10px 20px;
    transition: 0.3s ease;
}

.btn:hover, .button:hover, button:hover, input[type="submit"]:hover {
    background-color: #A93226;
}

/* ===========================
   STRUCTURE GLOBALE
=========================== */

body {
    background-color: #FFFFFF;
    color: #333333;
}

.article-body {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

/* ===========================
   MODULES
=========================== */

.sp-module {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    padding: 20px;
    border-radius: 6px;
}

.sp-module-title {
    color: #111111;
    border-bottom: 2px solid #C0392B;
}

/* ===========================
   FOOTER
=========================== */

#sp-footer {
    background-color: #F5F5F5;
    color: #333333;
    border-top: 1px solid #DDDDDD;
}

#sp-footer a {
    color: #C0392B;
}

#sp-footer a:hover {
    color: #A93226;
}

/* ===========================
   IMAGES D'ARTICLES
=========================== */

.img-fulltext img,
.img-intro img {
    max-width: 50%;
    margin: 0 auto;
    display: block;
}

/* ===========================
   ARTICLE BODY - TEXTURE PARCHEMIN
=========================== */

.article-body {
    background-image: url('/images/Images%20de%20Parchemin.png');
    background-size: cover; /* texture plus présente */
    background-position: center top;
    background-repeat: no-repeat;

    background-color: rgba(250, 245, 235, 0.75); /* voile plus léger pour laisser la texture ressortir */

    filter: contrast(1.15) brightness(0.92) sepia(0.15);


    padding: 25px !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    margin-bottom: 40px;
}
/* ===========================
   RECETTE - INGREDIENTS
=========================== */

.article-body .recette-ingredients {
    background: rgba(255, 255, 255, 0.65);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #C0392B;
}

.article-body .recette-ingredients h2 {
    margin-top: 0;
    color: #C0392B;
    font-weight: 700;
}

/* ===========================
   RECETTE - REALISATION
=========================== */

.article-body .recette-etapes {
    background: rgba(255, 255, 255, 0.55);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #A93226;
}

.article-body .recette-etapes h2 {
    margin-top: 0;
    color: #A93226;
    font-weight: 700;
}
.article-body .recette-ingredients {
    background: red !important;
}