/* =========================
   GLOBAL HERO
========================= */

.saga-global-hero {
    position: relative;

    min-height: 460px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 24px 90px;

    overflow: hidden;

    background:
        linear-gradient(
            to bottom,
            rgba(10,10,18,.45) 0%,
            rgba(10,10,18,.62) 55%,
            rgba(10,10,18,.82) 100%
        ),
        url('../images/sagaheader.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    isolation: isolate;
}

/* Soft atmospheric overlay */
.saga-global-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(0,0,0,0) 35%,
            rgba(0,0,0,0.45) 100%
        );

    z-index: 1;
}


/* Bottom cinematic fade */
.saga-global-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(5,5,10,0.05) 0%,
            rgba(5,5,10,0.15) 35%,
            rgba(5,5,10,0.55) 70%,
            rgba(5,5,10,0.92) 100%
        );

    pointer-events: none;
}

.saga-global-hero__content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.saga-global-hero__content h1 {
    color: #fff;

    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;

    margin-bottom: 18px;

    letter-spacing: -0.03em;

    text-shadow:
        0 4px 18px rgba(0,0,0,.35);
}

.saga-global-hero__content p {
    color: rgba(255,255,255,.88);

    font-size: 1.1rem;
    line-height: 1.7;

    max-width: 720px;
    margin: 0 auto;
}

/* BG */

.global-hero-bg {
    position: absolute;
    inset: 0;
}

.global-hero-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}

/* OVERLAY */

.global-hero-overlay {
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.85),
        rgba(0,0,0,.35)
    );

    z-index: 1;
}

/* CONTENT */

.global-hero-content {
    position: relative;
    z-index: 2;

    max-width: 700px;

    padding:
        120px
        60px
        80px;
}

.global-hero-title {
    font-size: 72px;
    line-height: 1;

    color: #fff;

    margin-bottom: 24px;
}

.global-hero-excerpt {
    font-size: 18px;
    line-height: 1.8;

    color: rgba(255,255,255,.85);
}

/* MOBILE */

@media (max-width: 768px) {

    .global-hero {
        min-height: 280px;
    }

    .global-hero-content {
        padding:
            100px
            24px
            50px;
    }

    .global-hero-title {
        font-size: 42px;
    }

    .global-hero-excerpt {
        font-size: 15px;
    }
}