/* ====== Hero ====== */
.maskan-hero {
    --accent: #225D77;
    --ink: #C59D63;
    --overlay: rgba(13, 18, 23, .55);
    position: relative;
    margin-top: calc(-1 * var(--maskan-header-offset));
    padding-top: var(--maskan-header-offset);
    height: 100vh;
    display: grid;
    place-items: center;
    color: #fff;
    background-image: url('../../image/hero.png');
    background-size: cover;
    background-position: center;

}

.maskan-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--overlay), var(--overlay));
    z-index: 0;
}

.maskan-hero__content {
    position: relative;
    z-index: 1;
}

.maskan-hero__brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
}

.maskan-hero__brand-text {
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;

}

.maskan-hero__brand-ink {
    width: 147px;
    height: 11px;
    display: block;
}

.maskan-hero__brand-ink path {
    fill: var(--ink);
}

.maskan-hero__title {
    margin: .25rem 0 0;
    color: #fff;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;


}

.maskan-hero__subtext {
    max-width: 1037px;
    color: rgba(255, 255, 255, .90);
    margin-top: 20px;
    font-weight: 400;
    font-size: 28px;
    line-height: 135%;
    text-align: center;


}

.maskan-hero__cta-shell {
    width: 760px;
    height: 128px;
    padding: 16px 20px;
    background: rgba(154, 161, 168, 0.6);
    backdrop-filter: blur(0px);

    /*border: 1px solid rgba(255,255,255,.35);*/
    border-radius: 12px;
    -webkit-backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-top: 14px;
}

.maskan-hero__cta-row {
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}



.maskan-hero__btn {
    height: 54px;
    min-width: 239px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;

}

.maskan-hero__btn--primary {
    background: var(--ink);
    color: #fff;
    border: 1px solid transparent;
}

.maskan-hero__btn--primary:hover {
    filter: brightness(.95);
    color: #fff;
}

.maskan-hero__btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .85);
}

.maskan-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}


@media (min-width: 761px) and (max-width: 1024px) {
    .maskan-hero {
        height: 90vh;
        padding-inline: 20px;
    }

    .maskan-hero__content {
        max-width: 92%;
    }

    .maskan-hero__brand-text {
        font-size: 42px;
        line-height: 110%;
    }

    .maskan-hero__brand-ink {
        width: 120px;
        height: 9px;
    }

    .maskan-hero__title {
        font-size: 44px;
        line-height: 120%;
        text-wrap: balance;
        margin-top: .25rem;
    }

    .maskan-hero__subtext {
        max-width: 820px;
        font-size: 22px;
        line-height: 150%;
        margin-top: 14px;
    }

    .maskan-hero__cta-shell {
        width: 100%;
        max-width: 820px;
        height: auto;
        padding: 16px 18px;
        border-radius: 12px;
        background: rgba(154, 161, 168, 0.5);
    }

    .maskan-hero__cta-row {
        gap: 28px;
        justify-content: center;
    }

    .maskan-hero__btn {
        min-width: 210px;
        height: 50px;
        font-size: 16px;
    }
}


@media (max-width: 760px) and (min-width: 569px) {
    .maskan-hero {
        height: 90vh;
        padding-inline: 16px;
    }

    .maskan-hero__content {
        max-width: 92%;
    }

    .maskan-hero__brand {
        gap: .3rem;
    }

    .maskan-hero__brand-text {
        font-size: 40px;
        line-height: 110%;
        letter-spacing: 0;
    }

    .maskan-hero__brand-ink {
        width: 120px;
        height: 9px;
    }

    .maskan-hero__title {
        font-size: 42px;
        line-height: 115%;
        margin-top: .25rem;
        text-wrap: balance;
    }

    .maskan-hero__subtext {
        max-width: 720px;
        font-size: 20px;
        line-height: 140%;
        margin-top: 14px;
    }

    .maskan-hero__cta-shell {
        width: 100%;
        max-width: 720px;
        height: auto;
        padding: 14px 16px;
        border-radius: 12px;
        background: rgba(154, 161, 168, 0.5);
    }

    .maskan-hero__cta-row {
        width: 100%;
        max-width: 700px;
        gap: 24px;
        justify-content: center;
    }

    .maskan-hero__btn {
        min-width: 200px;
        height: 48px;
        font-size: 16px;
    }
}


@media (max-width: 568px) {
    .maskan-hero {
        height: 85vh;
        padding-inline: 14px;
        background-position: center top;
    }

    .maskan-hero__content {
        max-width: 100%;
    }

    .maskan-hero__brand-text {
        font-size: 32px;
        line-height: 110%;
    }

    .maskan-hero__brand-ink {
        width: 100px;
        height: 8px;
    }

    .maskan-hero__title {
        font-size: 30px;
        line-height: 125%;
        margin-top: .35rem;
        text-wrap: balance;
    }

    .maskan-hero__subtext {
        max-width: 100%;
        font-size: 18px;
        line-height: 150%;
        margin-top: 12px;
        padding-inline: 4px;
    }

    .maskan-hero__cta-shell {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 12px;
        border-radius: 10px;
        background: rgba(154, 161, 168, 0.45);
        gap: 10px;
    }

    .maskan-hero__cta-row {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .maskan-hero__btn {
        width: 100%;
        min-width: 0;
        height: 44px;
        font-size: 15px;
    }
}
