/* ==========================
   HERO SLIDER
========================== */

.hero-slider{
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-slides{
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active{
    opacity: 1;
    visibility: visible;
}

.hero-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.45);
    z-index: 2;
}

.hero-content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 3;
    max-width: 650px;
}

.hero-content h1{
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary{
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary{
    background: #c89b3c;
    color: #fff;
}

.btn-primary:hover{
    background: #a67b22;
}

.btn-secondary{
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover{
    background: #fff;
    color: #222;
}

.hero-dots{
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
}

.dot.active{
    background: #fff;
}