/*=========================================
            HERO SECTION
=========================================*/

.hero{

    background:#ffffff;

    padding:170px 0 100px;

    overflow:hidden;

}

.hero-container{

    max-width:1200px;

    margin:auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

}

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

.hero-content{

    max-width:900px;

    margin:auto;

}

.hero-tag{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#D4AF37;

    margin-bottom:22px;

}

.hero h1{

    font-size:72px;

    font-weight:800;

    line-height:1.1;

    color:#111111;

    margin-bottom:25px;

}

.hero h1 span{

    color:#D4AF37;

}

.hero p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.9;

    color:#666666;

}

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

.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

.hero-buttons .primary-btn{

    background:#D4AF37;

    color:#111;

    padding:16px 36px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.hero-buttons .primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(212,175,55,.25);

}

.hero-buttons .secondary-btn{

    background:#ffffff;

    color:#111;

    border:2px solid #d9d9d9;

    padding:16px 36px;

    border-radius:50px;

    transition:.35s;

}

.hero-buttons .secondary-btn:hover{

    border-color:#D4AF37;

    color:#D4AF37;

}

/*=========================
        VIDEO CARD
=========================*/

.hero-video{

    width:100%;

    max-width:1100px;

    margin-top:70px;

    border-radius:24px;

    overflow:hidden;

    background:#000;

    border:1px solid #ececec;

    box-shadow:0 30px 80px rgba(0,0,0,.12);

    transition:.35s;

}

.hero-video:hover{

    transform:translateY(-6px);

    box-shadow:0 40px 90px rgba(0,0,0,.18);

}

.hero-video video{

    width:100%;

    display:block;

    object-fit:cover;

}

/*=========================
      SCROLL INDICATOR
=========================*/

.scroll-down{

    margin-top:40px;

    color:#999;

    font-size:14px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

}

.scroll-down i{

    color:#D4AF37;

    animation:bounce 1.8s infinite;

}

@keyframes bounce{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(8px);
    }

    100%{
        transform:translateY(0);
    }

}