/* ─── lmdm/hero-section — style front-end ────────────────────────────────── */

.lmdm-hero-section {
    position: relative;
    display: flex;
    min-height: 85vh;
    overflow: hidden;
    padding: 0 !important;
}

/* ── Image de fond (couvre toute la section) ──────────────────────────────── */

.lmdm-hero-section__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* ── Logo au-dessus du titre ────────────────────────────────────────────── */

.lmdm-hero-section__logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1.25rem;
}

/* ── Overlay ────────────────────────────────────────────────────────────── */

.lmdm-hero-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ── Panneau de contenu ──────────────────────────────────────────────────── */

.lmdm-hero-section__panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 4rem max(3rem, 5vw);
    background-color: var(--hero-section-bg, rgba(255, 255, 255, 0.85));
}

/* Position du panneau */

.lmdm-hero-section--content-right {
    justify-content: flex-end;
}

.lmdm-hero-section--content-left {
    justify-content: flex-start;
}

/* ── Sans fond ───────────────────────────────────────────────────────────── */

.lmdm-hero-section--no-bg .lmdm-hero-section__panel {
    background-color: transparent;
}


.lmdm-hero-section--no-bg .lmdm-hero-section__price {
    color: var(--wp--preset--color--gold);
}

.lmdm-hero-section--no-bg .lmdm-hero-section__body,
.lmdm-hero-section--no-bg .lmdm-hero-section__body p {
    color: var(--wp--preset--color--primary);
}

/* ── Titre ───────────────────────────────────────────────────────────────── */

.lmdm-hero-section__title {
    font-family: var(--wp--preset--font-family--heading);
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.25;
    margin: 0 0 1.5rem;
}

.lmdm-hero-section__title--gold.lmdm-hero-section__title {
    color: var(--wp--preset--color--gold) !important;
}

.lmdm-hero-section__title--white.lmdm-hero-section__title {
    color: var(--wp--preset--color--white) !important;
}

@media (max-width: 900px) {
    .lmdm-hero-section__title--white.lmdm-hero-section__title {
        color: var(--wp--preset--color--gold) !important;
    }
}

/* ── Prix ────────────────────────────────────────────────────────────────── */

.lmdm-hero-section__price {
    font-family: var(--wp--preset--font-family--heading);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    color: var(--wp--preset--color--primary);
    margin: 0 0 1.5rem;
}

/* ── Corps de texte ──────────────────────────────────────────────────────── */

.lmdm-hero-section__body {
    font-family: var(--wp--preset--font-family--body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--wp--preset--color--primary);
    margin-bottom: 2rem;
}

.lmdm-hero-section__body p {
    margin: 0 0 0.75rem;
}

.lmdm-hero-section__body p:last-child {
    margin-bottom: 0;
}

.lmdm-hero-section__body strong {
    font-weight: 600;
}

.lmdm-hero-section__body s {
    opacity: 0.6;
}

/* ── Couleur du texte ───────────────────────────────────────────────────── */

.lmdm-hero-section--text-light .lmdm-hero-section__body,
.lmdm-hero-section--text-light .lmdm-hero-section__body p,
.lmdm-hero-section--text-light .lmdm-hero-section__price {
    color: var(--wp--preset--color--white) !important;
}

.lmdm-hero-section--text-dark .lmdm-hero-section__body,
.lmdm-hero-section--text-dark .lmdm-hero-section__body p,
.lmdm-hero-section--text-dark .lmdm-hero-section__price {
    color: var(--wp--preset--color--primary) !important;
}

/* ── Bouton CTA ──────────────────────────────────────────────────────────── */

.lmdm-hero-section__panel .lmdm-btn {
    align-self: flex-start;
    text-align: center;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .lmdm-hero-section {
        flex-direction: column;
        min-height: auto;
    }

    /* L'image passe de fond absolu à image classique empilée au-dessus */
    .lmdm-hero-section__bg {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
    }

    .lmdm-hero-section__overlay {
        display: none;
    }

    .lmdm-hero-section__panel {
        width: 100%;
        padding: 2.5rem 5vw;
        background-color: var(--hero-section-bg, rgba(255, 255, 255, 1));
    }

    .lmdm-hero-section--text-light .lmdm-hero-section__body,
    .lmdm-hero-section--text-light .lmdm-hero-section__body p,
    .lmdm-hero-section--text-light .lmdm-hero-section__price {
        color: var(--wp--preset--color--primary) !important;
    }

    .lmdm-hero-section__title {
        font-size: 1.75rem;
    }

    .lmdm-hero-section__price {
        font-size: 1.4rem;
    }
}
