/* ==========================================================
   PAOREEL STUDIOS V3
   HERO
   ========================================================== */



/* ==========================================================
   HERO SECTION
   ========================================================== */

.hero {

    position: relative;

    display: flex;

    align-items: flex-end;

    width: 100%;

    height: 100vh;

    overflow: hidden;

    background: transparent;

}



/* ==========================================================
   FIXED BACKGROUND
   ========================================================== */

.hero-fixed {

    position: fixed;

    inset: 0;

    width: 100vw;

    height: 100vh;

    z-index: -2;

    overflow: hidden;

}



/* ==========================================================
   PARALLAX LAYER
   ========================================================== */

.hero-parallax {

    position: absolute;

    inset: -5%;

    will-change: transform;

}



/* ==========================================================
   IMAGE WRAPPER
   ========================================================== */

.hero-image {

    position: absolute;

    inset: 0;

    overflow: hidden;

}



/* ==========================================================
   HERO IMAGE
   ========================================================== */

.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.08);

    will-change:
        transform,
        filter;

}



/* ==========================================================
   DARK OVERLAY
   ========================================================== */

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            rgba(0,0,0,.28),

            rgba(0,0,0,.55)

        );

    z-index: 1;

}



/* ==========================================================
   HERO CONTENT
   ========================================================== */

.hero-content {

    position: relative;

    z-index: 5;

    width: min(100%, var(--site-width));

    margin: 0 auto;

    padding:

        0

        var(--content-padding)

        7rem;

}



/* ==========================================================
   HERO LABEL
   ========================================================== */

.hero-label {

    display: inline-block;

    margin-bottom: 2rem;

    font-size: var(--fs-sm);

    letter-spacing: .22em;

    text-transform: uppercase;

    color: rgba(255,255,255,.70);

}



/* ==========================================================
   HERO TITLE
   ========================================================== */

.hero-title {

    display: flex;
    flex-direction: column;
    gap: 0.05em;

    font-size: var(--fs-display);
    font-weight: var(--font-weight-light);
    line-height: 1;
    letter-spacing: -0.05em;

    color: var(--color-white);

}

.hero-line {

    display: block;

    overflow: hidden;

}

.hero-line-inner {

    display: inline-block;

    padding-right: 0.08em;
    padding-bottom: 0.12em;

    will-change: transform, opacity;

}



/* ==========================================================
   SCROLL INDICATOR
   ========================================================== */

.scroll-indicator {

    position: absolute;

    left: 50%;

    bottom: 46px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    opacity: 0;

    z-index: 10;

    pointer-events: none;

}



.scroll-indicator span {

    width: 1px;

    height: 72px;

    background: rgba(255,255,255,.75);

}



.scroll-indicator p {

    font-size: .75rem;

    letter-spacing: .30em;

    text-transform: uppercase;

    color: rgba(255,255,255,.75);

}



/* ==========================================================
   GALLERY PAPER
   ========================================================== */

.gallery-paper {

    position: absolute;

    inset: 0;

    background: #ffffff;

    opacity: 0;

    z-index: 1;

    pointer-events: none;

    will-change:

        opacity,

        transform;

}



/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width:1200px){

    .hero-title{

        max-width:900px;

    }

}



@media (max-width:768px){

    .hero-content{

        padding:

            0

            2rem

            5rem;

    }

    .hero-title{

        line-height:.95;

    }

}



@media (max-width:480px){

    .hero-content{

        padding:

            0

            1.5rem

            4rem;

    }

    .scroll-indicator{

        bottom:34px;

    }

}