﻿/*==================================================
                    HERO
==================================================*/

.hero {
    position: relative;
    min-height: 80vh;
    padding-top: 60px;
    padding-bottom: 0;
    margin: 0;
    background: #08111F;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(8,17,31,.98) 0%, rgba(8,17,31,.94) 35%, rgba(8,17,31,.78) 65%, rgba(8,17,31,.55) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 5;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    min-height: auto;
    padding: 0;
}

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

.hero-content {
    flex: 1;
    max-width: 620px;
    color: #fff;
    margin-top: -40px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(200,155,60,.30);
    color: #C89B3C;
    background: rgba(200,155,60,.08);
    margin-bottom: 28px;
    font-size: 15px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 18px;
}

    .hero-content h1 span {
        color: #C89B3C;
    }

.hero-line {
    width: 220px;
    height: 4px;
    background: #C89B3C;
    border-radius: 30px;
    margin: 25px 0 35px;
}

.hero-content p {
    color: #d6dde6;
    font-size: 22px;
    line-height: 2;
    margin-bottom: 45px;
}

/*========================================
                BUTTONS
========================================*/

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: 60px;
    background: #C89B3C;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: .35s;
}

    .btn-gold:hover {
        color: #fff;
        background: #b7882d;
        transform: translateY(-4px);
    }

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: 60px;
    border: 2px solid rgba(255,255,255,.20);
    color: #fff;
    transition: .35s;
}

    .btn-dark:hover {
        background: #fff;
        color: #08111F;
    }
/*==================================================
                    IMAGE
==================================================*/

.hero-image {
    position: relative;
    flex: 1.1;
    display: flex;
    justify-content: flex-end;
}

    .hero-image img {
        width: 100%;
        max-width: 720px;
        height: 700px;
        object-fit: cover;
        object-position: center;
        border-radius: 28px;
        box-shadow: 0 30px 80px rgba(0,0,0,.45);
    }

    .hero-image::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 28px;
        background: linear-gradient( to left, rgba(8,17,31,0) 45%, rgba(8,17,31,.25) 65%, rgba(8,17,31,.70) 100% );
        pointer-events: none;
    }

    .hero-image::after {
        content: "";
        position: absolute;
        inset: -25px;
        border-radius: 40px;
        border: 1px solid rgba(255,255,255,.05);
        pointer-events: none;
    }

/*==================================================
                    WAVE
==================================================*/

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 95px;
    background: #fff;
    border-radius: 100% 100% 0 0 / 90px;
    z-index: 6;
}

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

@media (max-width:1200px) {

    .hero-wrapper {
        gap: 45px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-image img {
        height: 620px;
    }
}

@media (max-width:992px) {

    .hero {
        padding-top: 140px;
        min-height: auto;
    }

    .hero-wrapper {
        min-height: auto;
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
        padding-bottom: 80px;
    }

    .hero-content {
        max-width: 100%;
    }

        .hero-content h1 {
            font-size: 48px;
        }

    .hero-line {
        margin: 25px auto 35px;
    }

    .hero-content p {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
    }

        .hero-image img {
            max-width: 100%;
            height: 460px;
        }
}

@media (max-width:576px) {

    .hero {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-gold,
    .btn-dark {
        width: 100%;
    }

    .hero-image img {
        height: 340px;
        border-radius: 18px;
    }

    .hero-wave {
        height: 60px;
    }
}