/*=========================================
                HERO SLIDER
=========================================*/

#heroSlider{
    position:relative;
    height:100svh;
    min-height:620px;
    overflow:hidden;
}

#heroSlider .carousel-item{
    height:100svh;
    min-height:620px;
    position:relative;
}

#heroSlider .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);
}

/*=========================================
                OVERLAY
=========================================*/

#heroSlider .carousel-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.45)
    );

    z-index:1;

}

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

.hero-content{

    position:absolute;

    left:50%;

    top:auto;

    bottom:clamp(145px,18vh,190px);

    transform:translateX(-50%);

    width:90%;

    max-width:1000px;

    text-align:center;

    z-index:5;

}

.hero-content h1{

    color:#fff;

    font-size:clamp(42px,6vw,72px);

    font-weight:800;

    line-height:1.1;

    margin-bottom:30px;

    animation:fadeUp 1s ease;

}

.hero-content p{

    color:#fff;

    font-size:clamp(18px,2.2vw,24px);

    line-height:1.8;

    max-width:850px;

    margin:auto;

    animation:fadeUp 1.3s ease;

}

.hero-buttons{

    margin-top:clamp(26px,4vh,45px);

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

    animation:fadeUp 1.6s ease;

}

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

.hero-buttons .btn{

    padding:16px 40px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

}

.hero-buttons .btn-outline-light{

    border-width:2px;

}

.hero-buttons .btn-outline-light:hover{

    background:#fff;

    color:#222;

}

/*=========================================
            INDICATORS
=========================================*/

.carousel-indicators{
    bottom:58px;
    z-index:20;
    margin-bottom:0;
}

.carousel-indicators button{

    width:14px !important;

    height:14px !important;

    border-radius:50%;

    margin:0 8px !important;

}

.carousel-indicators .active{

    background:#E5A100;

}

/*=========================================
            CONTROLS
=========================================*/

.carousel-control-next,
.carousel-control-prev{

    width:7%;

}

.carousel-control-next-icon,
.carousel-control-prev-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background-color:rgba(255,255,255,.15);

    backdrop-filter:blur(6px);

}

/*=========================================
            SCROLL ICON
=========================================*/

.scroll-down{

    position:absolute;

    bottom:12px;

    left:50%;

    transform:translateX(-50%);

    z-index:20;

    color:#ffffff;

    font-size:clamp(26px,4vw,38px);

    animation:bounce 2s infinite;

}

/*=========================================
            ANIMATION
=========================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-12px);

    }

    60%{

        transform:translate(-50%,-6px);

    }

}

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

@media(max-width:992px){

    #heroSlider,
    #heroSlider .carousel-item{
        min-height:590px;
    }

    .hero-content{
        bottom:135px;
    }

}

@media(max-width:768px){

    #heroSlider,
    #heroSlider .carousel-item{
        min-height:640px;
    }

    .hero-content{
        bottom:120px;
        width:92%;
    }

    .hero-content h1{
        line-height:1.18;
        margin-bottom:18px;
    }

    .hero-content p{
        line-height:1.55;
    }

    .hero-buttons{
        gap:14px;
        margin-top:24px;
    }

.hero-buttons .btn{

    margin:0 auto;

    width:260px;

}

.carousel-indicators{
    bottom:52px;
}

.carousel-indicators button{
    width:12px !important;
    height:12px !important;
    margin:0 6px !important;
}

.scroll-down{
    bottom:10px;
}

}

@media(max-width:420px){

    #heroSlider,
    #heroSlider .carousel-item{
        min-height:680px;
    }

    .hero-content{
        bottom:112px;
    }

    .hero-buttons .btn,
    .hero-btn-primary{
        max-width:100%;
        min-width:0;
        width:min(280px,100%);
    }

}
.hero-btn-primary{

    background:#E5A100;

    color:#fff;

    border:none;

    padding:16px 40px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    min-width:280px;

    text-decoration:none;

    transition:.3s;

}

.hero-btn-primary:hover{

    background:#c78e00;

    color:#fff;

}

