/* -----------------------------------------------------------------
 * HERO ACCUEIL EXCLUSIF
 * ----------------------------------------------------------------- */
.d1m-hero-intro,
.d1m-hero {
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: relative !important;
    padding: 120px 20px 40px 20px !important;
    box-sizing: border-box !important;
    background-color: #f7f4ef !important;
}

/* CONTENEUR DU CONTENU HERO */
.d1m-hero-content {
    max-width: 850px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin: 0 auto !important;
}

/* CONTRAINTES DE LA CITATION MANUSCRITE (CORRECTION TAILLE GEANTE) */
.d1m-signature-hero,
.d1m-citation-wrapper {
    width: 100% !important;
    max-width: 550px !important; /* Brida la largeur max */
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.d1m-handwritten,
.d1m-citation-img {
    width: 100% !important;
    max-width: 550px !important;
    height: auto !important;
    max-height: 250px !important; /* Empeche l'image de dépasser en hauteur */
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.12)) !important;
}

/* SOUS-TITRE */
.d1m-subtitle,
.d1m-hero p {
    font-size: 1.15rem !important;
    color: #444444 !important;
    margin: 10px 0 0 0 !important;
    font-family: serif !important;
}

/* BOUTON BREATHING (RESPIRANT) */
.d1m-breathing-btn,
.d1m-btn {
    display: inline-block !important;
    margin-top: 25px !important;
    padding: 14px 36px !important;
    font-size: 1.1rem !important;
    color: #4a211e !important;
    border: 2px solid #4a211e !important;
    border-radius: 35px !important;
    text-decoration: none !important;
    background-color: transparent !important;
    transition: all 0.3s ease !important;
    animation: ctaBreathe 2.5s infinite ease-in-out !important;
    cursor: pointer !important;
}

.d1m-breathing-btn:hover,
.d1m-btn:hover {
    background-color: #4a211e !important;
    color: #f7f4ef !important;
    border-color: #4a211e !important;
}

/* ANIMATION CTA BREATHE */
@keyframes ctaBreathe {
    0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(74, 33, 30, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(74, 33, 30, 0); }
    100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(74, 33, 30, 0); }
}