/**
 * Styles du bloc Hero Page
 */

.warein-hero-page {
    background-color: var(--wp--preset--color--white, #fff);
}

.warein-hero-page--has-image {
    padding-bottom: var(--wp--preset--spacing--70, 80px);
}

/* Bannière */
.warein-hero-page__banner {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Motif grille décoratif (tile SVG + dégradé fondu) */
.warein-hero-page__motif {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='51' height='51' fill='none'%3E%3Cline x1='50.5' y1='0' x2='50.5' y2='51' stroke='%23899477' stroke-opacity='0.12'/%3E%3Cline x1='0' y1='50.5' x2='51' y2='50.5' stroke='%23899477' stroke-opacity='0.12'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 51px 51px;
}

.warein-hero-page__motif::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.85) 20%,
        rgba(255, 255, 255, 0.6) 45%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.25) 100%
    );
}

/* Contenu centré */
.warein-hero-page__banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 var(--warein-container-padding);
    gap: 24px;
    text-align: center;
}

/* Surtitre */
.warein-hero-page__surtitre {
    display: inline-block;
    padding: 0 12px;
    color: var(--wp--preset--color--primary-light, #899477);
    font-family: var(--wp--preset--font-family--body, sans-serif);
    font-size: var(--wp--preset--font-size--xs, 0.75rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--wp--custom--typography--letter-spacing--wider, 1.2px);
    line-height: 16px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Titre H1 */
.warein-hero-page__heading {
    width: 100%;
}

.warein-hero-page__heading h1,
.warein-hero-page__heading .wp-block-heading {
    font-size: var(--wp--preset--font-size--5-xl, 5rem);
    line-height: var(--wp--custom--typography--line-height--tight, 1);
    color: var(--wp--preset--color--primary, #505A3D);
    margin: 0;
}

/* Sous-titre */
.warein-hero-page__sous-titre {
    max-width: 768px;
}

.warein-hero-page__sous-titre span {
    font-family: var(--wp--preset--font-family--body, sans-serif);
    font-size: var(--wp--preset--font-size--xl, 1.5rem);
    font-weight: 300;
    color: var(--wp--preset--color--primary-light, #899477);
    letter-spacing: var(--wp--custom--typography--letter-spacing--wide, 0.7px);
    line-height: 32px;
}

/* Image wrapper */
.warein-hero-page__image-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--warein-container-padding);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.warein-hero-page__image-container {
    position: relative;
    border-radius: var(--wp--custom--border-radius--xl, 15px);
    overflow: hidden;
    padding: var(--wp--preset--spacing--30);
    padding-top: calc(30% - var(--wp--preset--spacing--30));
    display: flex;
    justify-content: center;
}

.warein-hero-page__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   Variante Activité — 2 colonnes
   ============================================= */

/* Fil d'Ariane */
.warein-hero-page__breadcrumb {
    font-family: var(--wp--preset--font-family--body, sans-serif);
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: var(--wp--custom--typography--letter-spacing--wider, 1.2px);
    line-height: 13px;
    color: var(--wp--preset--color--gray, #9CA3AF);
}

.warein-hero-page__breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.warein-hero-page__breadcrumb a:hover {
    text-decoration: underline;
}

/* Split : description + image côte à côte */
.warein-hero-page__split {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1280px;
    margin: -40px auto 0;
    padding: 0 var(--warein-container-padding);
    position: relative;
    z-index: 2;
}

.warein-hero-page__description {
    flex-shrink: 0;
    width: 308px;
}

.warein-hero-page__description p {
    font-family: var(--wp--preset--font-family--body, sans-serif);
    font-size: var(--wp--preset--font-size--md, 1.125rem);
    font-weight: 300;
    line-height: 29.25px;
    color: var(--wp--preset--color--gray-dark, #4B5563);
    margin: 0;
}

.warein-hero-page--activite .warein-hero-page__image-container {
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
}


/* Placeholder */
.warein-hero-page__placeholder {
    padding: 80px 40px;
    background: var(--wp--preset--color--gray-50, #f3f4f6);
    border: 2px dashed var(--wp--preset--color--gray-light, #d1d5db);
    border-radius: var(--wp--custom--border-radius--xl, 15px);
    text-align: center;
    color: var(--wp--preset--color--gray, #9ca3af);
    font-style: italic;
}

/* Responsive */
@media (max-width: 1200px) {
    .warein-hero-page__heading h1,
    .warein-hero-page__heading .wp-block-heading {
        font-size: var(--wp--preset--font-size--4-xl, 3rem);
    }
}

@media (max-width: 768px) {
    .warein-hero-page__banner {
        padding: 48px 0;
    }

    .warein-hero-page__heading h1,
    .warein-hero-page__heading .wp-block-heading {
        font-size: var(--wp--preset--font-size--3-xl, 2.4375rem);
        line-height: 1.1;
    }

    .warein-hero-page__sous-titre span {
        font-size: var(--wp--preset--font-size--sm, 0.875rem);
        line-height: var(--wp--custom--typography--line-height--normal, 1.625);
    }

    .warein-hero-page__split {
        flex-direction: column;
        gap: 24px;
    }

    .warein-hero-page__description {
        width: 100%;
    }

}
