/* ============================================================
   EGB Photographie — Hero d'accueil
   Fichier dédié au bloc
   `streams/templates/streams/home/home_hero.html`.

   Aligné sur la charte galerie : cohérent avec .egb-cat-header,
   .egb-filters, .egb-maillage, .egb-seo-more (micro-typo
   uppercase + letter-spacing).
   ============================================================ */

.egb-hero {
    position: relative;
    width: 100%;
    max-width: none;                        /* pleine largeur bord à bord */
    margin: 0;
    overflow: hidden;
    background-color: #f4f1ec;
}

.egb-hero__picture {
    display: block;
    width: 100%;
}

.egb-hero__image {
    display: block;
    width: 100%;
    height: auto;
}

.egb-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 6%;
    background: transparent;
    pointer-events: none;
}

.egb-hero__content {
    max-width: 640px;
    padding: 0 4% 0 7%;
    pointer-events: auto;
}

/* ---- H1 hero ---- */
.egb-hero__title {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1.12;
    color: #2c2825;
    letter-spacing: 0.01em;
    margin: 0 0 18px;
    margin-left: -2px;
    text-wrap: balance;
}

/* ---- Sous-titre ---- */
.egb-hero__subtitle {
    font-family: 'Muli', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.05vw, 16px);
    line-height: 1.6;
    color: #444;
    margin: 0 0 28px;
    max-width: 520px;
}

/* ---- CTA ---- */
.egb-hero__cta {
    display: inline-block;
    font-family: 'Muli', 'Helvetica Neue', Arial, sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2c2825;
    text-decoration: none;
    border-bottom: 1px solid #2c2825;
    padding-bottom: 3px;
    transition: color .2s ease, border-color .2s ease, padding-bottom .2s ease;
}
.egb-hero__cta:hover,
.egb-hero__cta:focus {
    color: #000;
    padding-bottom: 6px;
}

/* ============================================================
   DESKTOP (≥1200px) — titre sur 1 ligne, overlay sur image
   ============================================================ */
@media (min-width: 1200px) {
    .egb-hero__content {
        max-width: 640px;
        padding-left: 7%;
    }
    .egb-hero__title {
        white-space: nowrap;
        font-size: clamp(28px, 2.4vw, 44px) !important;
        margin-bottom: 18px;
        text-wrap: nowrap;
    }
    .egb-hero__subtitle {
        font-size: clamp(15px, 1.2vw, 18px);
        margin-bottom: 32px;
    }
    .egb-hero__cta {
        font-size: .85rem;
        letter-spacing: 2.2px;
    }
}

/* ============================================================
   TABLETTE + MOBILE (< 1200px) — layout empilé :
   image en haut, texte en dessous (pas de superposition)
   ============================================================ */
@media (max-width: 1199.98px) {
    .egb-hero {
        background-color: #fff;
    }
    .egb-hero__picture {
        display: block;
        width: 100%;
    }
    .egb-hero__image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .egb-hero__overlay {
        position: static;
        background: none;
        display: block;
        padding: 32px 5% 36px;
        background-color: #f4f1ec;
    }
    .egb-hero__content {
        max-width: 700px;
        padding: 0;
    }
    .egb-hero__title {
        font-size: clamp(26px, 4vw, 36px);
        letter-spacing: 0.5px;
        line-height: 1.15;
        margin-bottom: 14px;
    }
    .egb-hero__subtitle {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 0 22px;
    }
    .egb-hero__cta {
        font-size: .78rem;
        letter-spacing: 1.8px;
    }
}

/* ============================================================
   MOBILE (< 768px) — version compacte centrée
   ============================================================ */
@media (max-width: 767.98px) {
    .egb-hero__picture {
        height: 280px;
    }
    .egb-hero__image {
        height: 100%;
        object-position: 50% 35%;
    }
    .egb-hero__overlay {
        padding: 28px 24px 32px;
    }
    .egb-hero__content {
        max-width: 100%;
        text-align: center;
    }
    .egb-hero__title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .egb-hero__subtitle {
        font-size: 14px;
        line-height: 1.55;
        margin: 0 auto 20px;
    }
    .egb-hero__cta {
        font-size: .75rem;
        letter-spacing: 1.6px;
    }
}
