/* ==========================================================================
   1. BASE & MISE EN PAGE GLOBALE
   ========================================================================== */
body {
    background: url('../img/core-img/body-blog.png') repeat;
    margin: 0;
    padding: 0;
}

/* Le vrai bouton de retour au blog, stylisé et centré au-dessus de l'article */
.back-blog {
    display: table; /* S'adapte proprement à la largeur du texte */
    margin: 40px auto -30px auto; /* Centré horizontalement */
    padding: 10px 22px;
    background: #b86b31;
    color: #fff !important; /* Force la couleur blanche textuelle */
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.back-blog:hover {
    background: #d48a45;
    transform: translateY(-2px);
}


/* ==========================================================================
   2. STRUCTURE DE L'ARTICLE
   ========================================================================== */
.mumtaz-article {
    width: 80%;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
    font-family: Georgia, serif !important;
    background-color: #fcdabf;
    color: #333;
    border: 3px solid #f4991a;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
}


/* ==========================================================================
   3. TITRE & SÉPARATEUR ORIENTAL
   ========================================================================== */
.mumtaz-article h1 {
    position: relative;
    font-family: "Cormorant Garamond", serif !important;
    font-weight: 600;
    text-align: center;
    font-size: 35px;
    margin: 50px auto 40px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.mumtaz-article h1::after {
    content: "";
    display: block;
    width: 500px;
    max-width: 80%;
    height: 3px;
    margin: 25px auto 0;
    background: linear-gradient(to right, transparent, #f4991a, transparent);
}


/* ==========================================================================
   4. TEXTE INFRASTRUCTURE (TYPOGRAPHIE)
   ========================================================================== */
.mumtaz-article .content p,
.mumtaz-article .content li,
.mumtaz-article .content span {
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: justify;
    margin: 18px 0;
    font-size: 18px;
    line-height: 1.6; /* Améliore le confort de lecture générale */
}

/* Blockquote (Citations) */
.mumtaz-article blockquote {
    border-left: 4px solid #d4a373;
    padding-left: 18px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

/* Gestion sémantique des liens dans le texte */
.mumtaz-article a {
    color: #b86b31;
    text-decoration: none;
    border-bottom: 1px solid rgba(184,107,49,0.3);
    transition: 0.2s;
}

.mumtaz-article a:hover {
    border-bottom: 1px solid #b86b31;
}


/* ==========================================================================
   5. ÉLÉMENTS MÉDIAS (IMAGES)
   ========================================================================== */
.mumtaz-article img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}


/* ==========================================================================
   6. ZONE DE PARTAGE RÉSEAUX SOCIAUX (SHARE BOX)
   ========================================================================== */
.share-box {
    display: flex;
    align-items: center;
    justify-content: center; /* Centre la barre de partage sous le titre */
    gap: 15px;
    margin: 30px 0 40px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(244, 153, 26, 0.2); /* Séparateur horizontal */
}

.share-title {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bouton circulaire générique pour les RS */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%; /* Boutons parfaitement ronds */
    color: #ffffff !important; /* Force la couleur blanche sur les SVGs */
    border: none !important; /* Évite d'avoir la bordure par défaut des liens de l'article */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.share-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.1); /* Donne un léger éclat au survol */
    border: none !important;
}

/* Couleurs officielles des marques */
.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.x-twitter {
    background-color: #111111;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

/* Normalisation des SVGs à l'intérieur des boutons */
.share-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}