/* ----------------------------------------------------
   /V6/css/musicament-single.css
   Rôle : style immersif des pages single Musicament
   Build : 2026-05-07
---------------------------------------------------- */

body {
    background: #fffaf1 !important;
    color: #172542 !important;
}

.site-header {
    display: none;
}

main {
    padding: 0 !important;
}

.container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

/* HERO */
.ms-hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ms-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    transform: scale(1.02);
}

.ms-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,250,241,0.96) 0%,
        rgba(255,250,241,0.88) 38%,
        rgba(255,250,241,0.30) 70%,
        rgba(255,250,241,0.08) 100%
    );
    z-index: 1;
}

.ms-hero-content {
    position: relative;
    z-index: 2;
    width: min(680px, calc(100% - 40px));
    margin-left: 7%;
    color: #142440;
}

.ms-logo {
    font-size: 34px;
    letter-spacing: 8px;
    font-weight: 700;
    margin-bottom: 45px;
    color: #142440;
}

.ms-title {
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.98;
    margin: 0 0 28px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: #142440;
}

.ms-hook {
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.35;
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 38px;
    color: #142440;
}

.ms-btn-ecouter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c79a4b, #a7772f);
    color: #ffffff !important;
    padding: 18px 34px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(115, 76, 25, 0.25);
}

/* INTRO */
.ms-intro {
    background: #fffaf1;
    padding: 70px 20px 35px;
}

.ms-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 22px;
    line-height: 1.65;
    color: #172542;
}

.ms-intro-inner p {
    margin: 0 0 24px 0;
}

/* PLAYER */
.ms-player-section {
    padding: 35px 20px 55px;
    background: #fffaf1;
}

.ms-player-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(199,154,75,0.28);
    box-shadow: 0 20px 50px rgba(60,40,20,0.10);
    text-align: center;
}

.ms-player-header {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    margin-bottom: 8px;
    color: #142440;
}

.ms-player-subtitle {
    font-size: 18px;
    margin-bottom: 26px;
    color: #5f5362;
}

.ms-audio-player {
    width: 100%;
    margin-top: 10px;
}

/* FORM */
.ms-form-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    margin-bottom: 18px;
    color: #142440;
}

.ms-error {
    background: #ffe8e8;
    color: #8a1111;
    border: 1px solid #e8b0b0;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 18px;
}

.ms-form {
    max-width: 460px;
    margin: 0 auto;
}

.ms-form-group {
    text-align: left;
    margin-bottom: 16px;
}

.ms-form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: #172542;
}

.ms-form-group input {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(199,154,75,0.45);
    background: #fff;
    color: #172542;
}

.ms-btn-submit {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #c79a4b, #a7772f);
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

/* PAROLES */
.ms-paroles-section {
    padding: 20px;
    text-align: center;
    background: #fffaf1;
}

.ms-paroles-toggle {
    border: 1px solid rgba(199,154,75,0.45);
    background: #ffffff;
    color: #172542;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.ms-paroles-box {
    display: none;
    max-width: 760px;
    margin: 24px auto 0;
    padding: 28px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(199,154,75,0.25);
    text-align: left;
}

.ms-paroles-box.open {
    display: block;
}

.ms-paroles-box pre {
    white-space: pre-wrap;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.65;
    color: #172542;
}

/* PARTAGE */
.ms-share-section {
    padding: 55px 20px;
    text-align: center;
    background: #fffaf1;
}

.ms-share-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    margin-bottom: 24px;
    color: #142440;
}

.ms-share-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ms-share-btn {
    border: 1px solid rgba(199,154,75,0.55);
    background: #ffffff;
    color: #172542 !important;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

/* FOOTER */
.ms-footer-links {
    padding: 28px 20px 45px;
    text-align: center;
    background: #142440;
    color: #ffffff;
    font-size: 20px;
}

.ms-footer-links a {
    color: #ffffff !important;
    margin: 0 12px;
}

/* RESPONSIVE */
@media (max-width: 760px) {
    .ms-hero {
        min-height: 82vh;
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .ms-hero-bg {
        background-position: center;
    }

    .ms-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255,250,241,0.15) 0%,
            rgba(255,250,241,0.88) 55%,
            rgba(255,250,241,0.98) 100%
        );
    }

    .ms-hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .ms-logo {
        font-size: 24px;
        letter-spacing: 4px;
        margin-bottom: 28px;
    }

    .ms-title {
        font-size: 46px;
    }

    .ms-hook {
        font-size: 22px;
    }

    .ms-intro-inner {
        font-size: 19px;
    }

    .ms-player-box {
        padding: 24px 18px;
    }

    .ms-player-header {
        font-size: 28px;
    }
}

.ms-hero-image-only {
    background: #fffaf1;
    padding: 24px 16px 0;
    text-align: center;
}

.ms-hero-image-only img {
    width: min(1250px, 100%);
    height: auto;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(40, 25, 10, 0.16);
}

.ms-hero-clickwrap {
    position: relative;
    width: min(1250px, 100%);
    margin: 0 auto;
}

.ms-hero-clickwrap img {
    width: 100%;
    height: auto;
    display: block;
}

.ms-hotspot {
    position: absolute;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 50;
    background: transparent !important;
    appearance: none;
    -webkit-appearance: none;
}

button.ms-hotspot {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* =====================================================
   BOUTON ÉCOUTER
===================================================== */



.ms-hotspot-listen {
    left: 10.5%;
    top: 62.2%;
    width: 31%;
    height: 8%;
}

.ms-hotspot-facebook {
    left: 73.0%;
    top: 91.2%;
    width: 3.4%;
    height: 5%;
}

.ms-hotspot-telegram {
    left: 78.0%;
    top: 91.2%;
    width: 3.4%;
    height: 5%;
}

.ms-hotspot-whatsapp {
    left: 83.0%;
    top: 91.2%;
    width: 3.4%;
    height: 5%;
}

.ms-hotspot-email {
    left: 88.0%;
    top: 91.2%;
    width: 3.4%;
    height: 5%;
}

.ms-hotspot-copy {
    left: 93.0%;
    top: 91.2%;
    width: 3.4%;
    height: 5%;
}

/* ----------------------------------------------------
   Commentaires Musicament Single
---------------------------------------------------- */

.ms-commentaires-section {
    padding: 35px 15px;
}

.ms-commentaires-inner {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    color: #000;
}

.ms-commentaires-inner h2 {
    margin: 0 0 22px 0;
    text-align: center;
    font-size: 26px;
    color: #000;
}

.ms-commentaires-liste {
    margin-bottom: 30px;
}

.ms-commentaire-item {
    background: #fff;
    border: 1px solid rgba(120,90,40,0.18);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
    color: #000;
}

.ms-commentaire-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 15px;
    color: #000;
}

.ms-commentaire-head strong {
    color: #5b2c83;
    font-size: 17px;
}

.ms-commentaire-head span {
    color: #555;
    font-size: 13px;
}

.ms-commentaire-texte {
    font-size: 16px;
    line-height: 1.55;
    color: #000;
}

.ms-reponse-admin {
    margin-top: 14px;
    padding: 14px;
    border-left: 4px solid #8c6bc9;
    background: #f4f0fa;
    border-radius: 10px;
    color: #000;
    line-height: 1.5;
}

.ms-commentaire-ajout {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.12);
}

.ms-commentaire-ajout h3 {
    margin: 0 0 16px 0;
    font-size: 22px;
    text-align: center;
    color: #000;
}

.ms-commentaire-form textarea {
    width: 100%;
    min-height: 120px;
    resize: vertical;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.18);
    padding: 12px;
    background: #fff;
    color: #000;
}

.ms-commentaire-form textarea:focus {
    outline: none;
    border-color: #8c6bc9;
    box-shadow: 0 0 0 3px rgba(140,107,201,0.18);
}

.ms-commentaires-info {
    text-align: center;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}

/* Variante commentaire abonné */
.ms-commentaire-item.abonne {
    background: #eaf6ff;
    border: 1px solid #b8dff5;
}

/* Variante message admin */
.ms-commentaire-item.admin {
    background: #ffeaf4;
    border: 1px solid #f3b8d1;
}

/* En-tête commentaire */
.ms-commentaire-item.abonne .ms-commentaire-head strong {
    color: #154c75;
}

.ms-commentaire-item.admin .ms-commentaire-head strong {
    color: #8a2552;
}