/* =================================
   HOME PAGE HERO SECTION
================================= */

.home-hero {
    position: relative;

    display: flex;
    min-height: 600px;

    align-items: center;

    overflow: hidden;

    background-color: #ffffff;
    background-image:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 37%,
            rgba(255, 255, 255, 0.95) 43%,
            rgba(255, 255, 255, 0.65) 53%,
            rgba(255, 255, 255, 0.05) 68%
        ),
        url("../images/hero-home.webp");

    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.hero-container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hero-content {
    width: min(100%, 585px);
    padding: 75px 0;
}


/* =================================
   HERO HEADING
================================= */

.hero-title {
    margin: 0;

    color: #163d31;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 4.4vw, 68px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -2px;
}

.hero-title span,
.hero-title strong {
    display: block;
}

.hero-title strong {
    color: #e29a13;
    font-weight: 400;
}

.hero-line {
    width: 48px;
    height: 3px;
    margin: 25px 0;

    background-color: #e29a13;
}


/* =================================
   HERO DESCRIPTION
================================= */

.hero-description {
    max-width: 535px;
    margin: 0 0 30px;

    color: #303c37;

    font-size: 16px;
    line-height: 1.7;
}


/* =================================
   HERO BUTTONS
================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 22px;

    align-items: center;
    justify-content: center;
    gap: 18px;

    border: 1px solid;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.hero-button span {
    font-size: 20px;
    font-weight: 400;
}

.hero-button:hover {
    box-shadow: 0 10px 25px rgba(0, 67, 49, 0.18);
    transform: translateY(-2px);
}

.hero-button-primary {
    color: #ffffff;
    background-color: #004331;
    border-color: #004331;
}

.hero-button-primary:hover {
    color: #004331;
    background-color: #ffffff;
}

.hero-button-secondary {
    color: #004331;
    background-color: rgba(255, 255, 255, 0.92);
    border-color: #e29a13;
}

.hero-button-secondary:hover {
    color: #ffffff;
    background-color: #004331;
    border-color: #004331;
}


/* =================================
   TABLET
================================= */

@media (max-width: 900px) {

    .home-hero {
        min-height: 590px;

        background-image:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.97) 0%,
                rgba(255, 255, 255, 0.91) 48%,
                rgba(255, 255, 255, 0.65) 100%
            ),
            url("../images/hero-home.webp");

        background-position: center;
    }

    .hero-content {
        width: min(100%, 600px);
    }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

    .home-hero {
        min-height: 650px;

        align-items: flex-end;

        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.18) 0%,
                rgba(255, 255, 255, 0.65) 28%,
                rgba(255, 255, 255, 0.97) 55%,
                #ffffff 100%
            ),
            url("../images/hero-home.webp");

        background-position: center top;
        background-size: auto 100%;
    }

    .hero-container {
        width: calc(100% - 28px);
    }

    .hero-content {
        padding: 165px 0 45px;
    }

    .hero-title {
        font-size: clamp(39px, 11vw, 50px);
        line-height: 1.04;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-button {
        width: 100%;
        min-height: 54px;
    }
}