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

.hero .container,
.home-hero .container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 4rem;
    padding-right: 4rem;
    box-sizing: border-box;
}

.hero-content,
.home-hero .hero-content {
    max-width: 680px;
}


.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: flex;
    align-items: center;
}

/*==================================================
BACKGROUND IMAGE
==================================================*/

.home-hero-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

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

    z-index: 0;
}


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

.home-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(250,248,244,.55),
        rgba(250,248,244,.25),
        rgba(250,248,244,.05)
    );

    z-index: 1;
    pointer-events: none;
}


/*==================================================
GLOW
==================================================*/

.home-hero-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    right: 8%;
    top: 18%;

    border-radius: 50%;

    background: radial-gradient(
        rgba(255,247,225,.65),
        rgba(255,247,225,.18),
        transparent 72%
    );

    filter: blur(55px);

    z-index: 1;

    pointer-events: none;
}


/*==================================================
CONTENT CONTAINER
==================================================*/

.home-hero-container {
    position: relative;

    width: 100%;

    z-index: 3;
}


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

.home-hero-content {
    position: relative;

    max-width: 650px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    z-index: 3;
}


/*==================================================
TAG
==================================================*/

.home-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 2rem;

    font-size: .82rem;
    font-weight: 600;

    letter-spacing: .28em;
    text-transform: uppercase;

    color: var(--gold);
}


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

.home-hero-content h1 {
    font-family: var(--font-heading);

    font-size: clamp(3.6rem, 8vw, 6.5rem);

    font-weight: 500;
    line-height: .9;

    letter-spacing: -.03em;

    color: var(--heading);

    margin-bottom: 2.25rem;

    text-shadow:
        0 4px 18px rgba(255,255,255,.15);

    position: relative;
    z-index: 3;
}


/*==================================================
DESCRIPTION
==================================================*/

.home-hero-description {
    max-width: 560px;

    font-size: 1.18rem;
    line-height: 1.9;

    color: var(--green-dark);

    margin-bottom: 2rem;

    position: relative;
    z-index: 3;
}


/*==================================================
BUTTON AREA
==================================================*/

.home-hero-actions {
    position: relative;

    display: flex;
    align-items: center;

    gap: 1.5rem;

    flex-wrap: wrap;

    margin-top: 1rem;

    z-index: 10;
}


/*==================================================
VIDEO LINK
==================================================*/

.home-video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.home-video-icon {
    width: 16px;
    height: 16px;

    display: block;

    object-fit: contain;

    flex-shrink: 0;
}

.home-video-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}


/*==================================================
FEATHER
==================================================*/

.home-hero-feather {
    position: absolute;

    right: 8%;
    top: 28%;

    width: 260px;

    z-index: 4;

    animation: heroFloat 6s ease-in-out infinite;

    pointer-events: none;
}

.home-hero-feather img {
    width: 100%;
    display: block;
}


/*==================================================
TABLET
==================================================*/

@media (max-width: 1024px) {

    .home-hero-feather {
        width: 220px;
        right: 6%;
        top: 38%;
    }

}


/*==================================================
MOBILE
==================================================*/

@media (max-width: 768px) {

    .home-hero {
        min-height: 700px;
        padding-top: 110px;
        padding-bottom: 80px;
    }

    .home-hero-container {
        z-index: 5;
    }

    .home-hero-content {
        text-align: center;
        max-width: 100%;
        z-index: 5;
    }

    .home-hero-content h1 {
        font-size: clamp(2.8rem, 10vw, 4rem);
        line-height: 1;
    }

    .home-hero-content h1 span {
        display: block;
        color: var(--gold);
    }

    .home-hero-description {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .home-hero-actions {
        justify-content: center;
        z-index: 10;
    }

    .home-hero-feather {
        width: 170px;
        right: -20px;
        top: 55%;
        opacity: .65;
        z-index: 2;
    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .home-hero-feather {
        width: 140px;
        right: -15px;
        top: 55%;
    }

}


/*==================================================
ANIMATION
==================================================*/

@keyframes heroFloat {

    0% {
        transform: translateY(0px) rotate(-6deg);
    }

    25% {
        transform: translateY(-12px) rotate(2deg);
    }

    50% {
        transform: translateY(-4px) rotate(-3deg);
    }

    75% {
        transform: translateY(-10px) rotate(4deg);
    }

    100% {
        transform: translateY(0px) rotate(-6deg);
    }

}