/* =========================
   HERO
========================= */

.hero_section{
    position: relative;

    width: 100%;
    height: 500px;

    background-image: url("../../img/casa.jpg");

    background-size: cover;
    background-position: center;

    overflow: hidden;

    margin-top: 2%;
}

/* =========================
   OVERLAY
========================= */

.hero_overlay{
    position: absolute;

    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.35)
    );

    display: flex;
    align-items: center;

    padding-left: 8%;
    padding-right: 8%;
}

/* =========================
   CONTENT
========================= */

.hero_content{
    max-width: 650px;

    color: white;

    z-index: 2;
}

/* =========================
   TITLE
========================= */

.hero_title{
    font-size: 62px;
    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 22px;
}

/* =========================
   DESCRIPTION
========================= */

.hero_description{
    color: rgba(255,255,255,0.72);

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 34px;
}

/* =========================
   BUTTONS
========================= */

.hero_buttons{
    display: flex;

    align-items: center;

    gap: 18px;
}

/* GOLD BUTTON */

.hero_btn_gold{
    height: 58px;

    padding: 0 34px;

    border: none;

    border-radius: 14px;

    background: #d4a64f;

    color: black;

    font-size: 15px;
    font-weight: 600;

    font-family: 'Poppins', sans-serif;

    cursor: pointer;

    transition: 0.3s;
}

.hero_btn_gold:hover{
    transform: translateY(-3px);

    background: #e0b25a;
}

/* OUTLINE BUTTON */

.hero_btn_outline{
    height: 58px;

    padding: 0 34px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.18);

    background: transparent;

    color: white;

    font-size: 15px;
    font-weight: 500;

    font-family: 'Poppins', sans-serif;

    cursor: pointer;

    transition: 0.3s;
}

.hero_btn_outline:hover{
    border-color: #d4a64f;

    color: #d4a64f;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .hero_section{
        height: 430px;
    }

    .hero_overlay{
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero_title{
        font-size: 42px;
    }

    .hero_description{
        font-size: 16px;
    }

    .hero_buttons{
        flex-direction: column;

        align-items: flex-start;
    }

}