/* =========================================================
   VENTURI DECO — HERO
   Grande introduction de l’accueil et des pages intérieures
   ========================================================= */

/* Base commune */
.hero {
    position: relative;
    isolation: isolate;

    display: flex;
    align-items: center;

    min-height: 540px;
    overflow: hidden;

    background: var(--color-black);
}

/* Hero principal de l’accueil */
.hero--home {
    min-height: max(
        760px,
        100svh
    );

    padding-top: var(--header-height);
}

/* Hero plus petit des autres pages */
.hero--page {
    min-height: 590px;

    padding-top:
        calc(
            var(--header-height) + 70px
        );

    padding-bottom: 90px;
}

/* Image ou vidéo de fond */
.hero__media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero__image,
.hero__video {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        brightness(0.72)
        saturate(0.82);

    transform: scale(1.02);
}

/* Superposition sombre */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.72) 42%,
            rgba(0, 0, 0, 0.2) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.75) 0%,
            transparent 50%
        );
}

/* Texture légère */
.hero__overlay::after {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.08) 0.6px,
            transparent 0.6px
        );

    background-size: 5px 5px;
    opacity: 0.08;

    pointer-events: none;
}

/* Contenu */
.hero__content {
    position: relative;
    z-index: var(--z-content);

    width:
        min(
            calc(100% - (var(--page-padding) * 2)),
            var(--container-width)
        );

    margin-inline: auto;
}

/* Contenu moins large pour améliorer la lecture */
.hero__content-inner {
    max-width: 940px;
}

/* Petit texte au-dessus du titre */
.hero__label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: var(--space-md);

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero__label::before {
    content: "";

    flex: 0 0 36px;

    width: 36px;
    height: 2px;

    background: var(--color-orange);
}

/* Titre */
.hero__title {
    max-width: 1050px;

    color: var(--color-white);

    font-size:
        clamp(
            4rem,
            9vw,
            8.5rem
        );

    line-height: 0.88;
}

/* Titre plus petit sur les pages intérieures */
.hero--page .hero__title {
    max-width: 850px;

    font-size:
        clamp(
            3.6rem,
            7vw,
            7rem
        );
}

/* Partie orange ou italique du titre */
.hero__title em {
    display: inline-block;

    color: var(--color-orange);
}

/* Description */
.hero__description {
    max-width: 610px;

    margin-top: var(--space-lg);

    color: rgba(255, 255, 255, 0.76);

    font-size:
        clamp(
            1rem,
            1.4vw,
            1.15rem
        );

    line-height: 1.8;
}

/* Groupe de boutons */
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);

    margin-top: var(--space-lg);
}

/* Fil d’Ariane des pages intérieures */
.hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;

    margin-top: var(--space-lg);

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__breadcrumb a:hover {
    color: var(--color-orange);
}

.hero__breadcrumb-separator {
    color: var(--color-orange);
}

/* Indication de défilement */
.hero__scroll {
    position: absolute;
    right: var(--page-padding);
    bottom: 42px;
    z-index: var(--z-content);

    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;

    transform: rotate(90deg);
    transform-origin: right center;
}

.hero__scroll::after {
    content: "";

    width: 65px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            var(--color-orange),
            rgba(255, 255, 255, 0.25)
        );
}

/* Élément décoratif orange */
.hero__accent {
    position: absolute;
    right: 6%;
    bottom: -70px;
    z-index: -1;

    width: 210px;
    height: 210px;

    border: 1px solid var(--color-border-orange);
    border-radius: 50%;

    opacity: 0.45;
    pointer-events: none;
}

.hero__accent::before {
    content: "";

    position: absolute;
    inset: 28px;

    border: 1px solid var(--color-border-orange);
    border-radius: inherit;
}