/*=========================================
HERO SECTION
=========================================*/

.hero{
    position:relative;
    width:100%;
    overflow:hidden;
    background:#f8f8f8;
}

.hero-slider{
    position:relative;
    width:100%;
    height:700px;
}

.hero-slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:700px;
    opacity:0;
    visibility:hidden;
    transition:all .8s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.hero-slide img{
    width:100%;
    height:700px;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.70) 0%,
        rgba(0,0,0,.45) 35%,
        rgba(0,0,0,.15) 70%,
        rgba(0,0,0,.05) 100%
    );
    z-index:2;
}

/*=========================================
CONTENT
=========================================*/

.hero-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:100%;

    max-width:1400px;

    padding:0 20px;

    z-index:5;

    color:#fff;

}

.hero-subtitle{

    display:inline-block;

    background:#c7a548;

    color:#111;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:72px;

    font-weight:700;

    line-height:1.1;

    max-width:700px;

    margin-bottom:25px;

}

.hero-content p{

    max-width:620px;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

    color:#f3f3f3;

}

/*=========================================
BUTTONS
=========================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    align-items:center;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:58px;

    padding:0 34px;

    background:#c7a548;

    color:#111;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    background:#fff;

    transform:translateY(-4px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:58px;

    padding:0 34px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

}

/*=========================================
TEXT ANIMATION
=========================================*/

.hero-slide.active .hero-subtitle{

    animation:fadeDown .8s;

}

.hero-slide.active h1{

    animation:fadeLeft 1s;

}

.hero-slide.active p{

    animation:fadeLeft 1.2s;

}

.hero-slide.active .hero-buttons{

    animation:fadeUp 1.4s;

}

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*=========================================
HERO NAVIGATION
=========================================*/

.hero-prev,
.hero-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    transition:.35s;

    z-index:20;

}

.hero-prev{

    left:40px;

}

.hero-next{

    right:40px;

}

.hero-prev:hover,
.hero-next:hover{

    background:#c7a548;

    color:#111;

    transform:translateY(-50%) scale(1.08);

}

/*=========================================
HERO DOTS
=========================================*/

.hero-dots{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    display:flex;

    gap:14px;

    z-index:20;

}

.hero-dots span{

    width:14px;

    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:.35s;

}

.hero-dots span.active{

    width:45px;

    border-radius:30px;

    background:#c7a548;

}

/*=========================================
SCROLL INDICATOR
=========================================*/

.hero-scroll{

    position:absolute;

    bottom:35px;

    right:40px;

    z-index:30;

    display:flex;

    flex-direction:column;

    align-items:center;

    color:#fff;

    gap:12px;

}

.hero-scroll span{

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    writing-mode:vertical-lr;

}

.hero-scroll i{

    animation:scrollMove 1.8s infinite;

}

@keyframes scrollMove{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=========================================
HERO FEATURE BOXES
=========================================*/

.hero-features{

    position:absolute;

    left:50%;

    bottom:-60px;

    transform:translateX(-50%);

    width:100%;

    max-width:1320px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    z-index:50;

}

.feature-box{

    background:#fff;

    border-radius:16px;

    padding:28px;

    display:flex;

    align-items:center;

    gap:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#f8f3e7;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#c7a548;

    font-size:26px;

    flex-shrink:0;

}

.feature-content h4{

    font-size:18px;

    color:#111;

    margin-bottom:8px;

    font-weight:600;

}

.feature-content p{

    font-size:14px;

    color:#777;

    line-height:1.7;

}

/*=========================================
HERO SALE BADGE
=========================================*/

.hero-sale{

    position:absolute;

    top:120px;

    right:100px;

    width:140px;

    height:140px;

    border-radius:50%;

    background:#c7a548;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    color:#111;

    z-index:25;

    animation:rotateSale 12s linear infinite;

}

.hero-sale strong{

    font-size:42px;

    line-height:1;

}

.hero-sale span{

    font-size:16px;

    font-weight:600;

    text-transform:uppercase;

}

@keyframes rotateSale{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*=========================================
IMAGE ZOOM EFFECT
=========================================*/

.hero-slide.active img{

    animation:heroZoom 8s linear forwards;

}

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

/*=========================================
BUTTON ICON
=========================================*/

.btn-primary i,
.btn-secondary i{

    margin-left:10px;

    transition:.3s;

}

.btn-primary:hover i,
.btn-secondary:hover i{

    transform:translateX(6px);

}
/*=========================================
LARGE DESKTOP
=========================================*/

@media (max-width:1400px){

.hero-slider,
.hero-slide,
.hero-slide img{

    height:650px;

}

.hero-content h1{

    font-size:64px;

}

.hero-features{

    max-width:1200px;

    padding:0 20px;

}

}

/*=========================================
LAPTOP
=========================================*/

@media (max-width:1200px){

.hero-slider,
.hero-slide,
.hero-slide img{

    height:600px;

}

.hero-content h1{

    font-size:56px;

    max-width:600px;

}

.hero-content p{

    font-size:17px;

    max-width:560px;

}

.hero-features{

    grid-template-columns:repeat(2,1fr);

    bottom:-120px;

}

.hero-sale{

    right:40px;

    top:90px;

    width:120px;

    height:120px;

}

.hero-sale strong{

    font-size:34px;

}

.hero-prev{

    left:20px;

}

.hero-next{

    right:20px;

}

}

/*=========================================
TABLET
=========================================*/

@media (max-width:992px){

.hero-slider,
.hero-slide,
.hero-slide img{

    height:550px;

}

.hero-content{

    text-align:center;

}

.hero-content h1{

    font-size:46px;

    margin:auto auto 20px;

}

.hero-content p{

    margin:auto auto 30px;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

.hero-prev,
.hero-next{

    width:50px;

    height:50px;

}

.hero-sale{

    display:none;

}

.hero-scroll{

    display:none;

}

}

/*=========================================
MOBILE
=========================================*/

@media (max-width:768px){

.hero-slider,
.hero-slide,
.hero-slide img{

    height:500px;

}

.hero-content{

    padding:0 25px;

}

.hero-subtitle{

    font-size:12px;

    padding:8px 18px;

}

.hero-content h1{

    font-size:36px;

    line-height:1.2;

}

.hero-content p{

    font-size:15px;

    line-height:1.8;

}

.btn-primary,
.btn-secondary{

    width:100%;

    max-width:260px;

    margin:auto;

}

.hero-buttons{

    flex-direction:column;

    gap:15px;

}

.hero-prev,
.hero-next{

    display:none;

}

.hero-features{

    position:relative;

    left:0;

    transform:none;

    bottom:0;

    margin-top:30px;

    grid-template-columns:1fr;

    padding:0 15px 30px;

}

.feature-box{

    padding:20px;

}

}

/*=========================================
SMALL MOBILE
=========================================*/

@media (max-width:576px){

.hero-slider,
.hero-slide,
.hero-slide img{

    height:450px;

}

.hero-content h1{

    font-size:30px;

}

.hero-content p{

    font-size:14px;

}

.hero-dots{

    bottom:20px;

}

.hero-dots span{

    width:12px;

    height:12px;

}

.hero-dots span.active{

    width:34px;

}

.feature-icon{

    width:60px;

    height:60px;

    font-size:22px;

}

.feature-content h4{

    font-size:16px;

}

}

/*=========================================
EXTRA SMALL DEVICES
=========================================*/

@media (max-width:420px){

.hero-slider,
.hero-slide,
.hero-slide img{

    height:420px;

}

.hero-content{

    padding:0 18px;

}

.hero-content h1{

    font-size:26px;

}

.hero-content p{

    font-size:13px;

}

.btn-primary,
.btn-secondary{

    height:50px;

    font-size:14px;

}

}

/*=========================================
UTILITY
=========================================*/

.hero .text-white{

    color:#fff;

}

.hero .text-gold{

    color:#c7a548;

}

.hero .bg-gold{

    background:#c7a548;

}

.hero .rounded{

    border-radius:12px;

}

.hero .shadow{

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

/*=========================================
PERFORMANCE
=========================================*/

.hero img{

    user-select:none;

    -webkit-user-drag:none;

}

.hero *{

    backface-visibility:hidden;

}