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

.hero {
    position: relative;
    overflow: hidden;
    height: 85vh;
    min-height: 650px;
}

.hero__slides {
    display: flex;
    height: 100%;
    transition: transform .8s ease;
}

.hero__slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hero__image {
    position: absolute;
    inset: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(14, 6, 44, .8),
            rgba(14, 6, 44, .4));
}

.hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
}

.hero__subtitle {
    color: #d9c9ff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__btn {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
}

.hero__btn--primary {
    background: #fff;
    color: #2d1368;
}

.hero__btn--secondary {
    border: 2px solid #fff;
    color: #fff;
}

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

.hero__controls {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}

.hero__arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
}

.hero__dots {
    display: flex;
    gap: .5rem;
}

.hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: .4;
    border: none;
    cursor: pointer;
}

.hero__dot.active {
    opacity: 1;
}

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

/* Large Tablets */

@media screen and (max-width: 1024px) {

    .hero {
        height: 75vh;
        min-height: 600px;
    }

    .hero__content {
        max-width: 550px;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__btn {
        padding: .9rem 1.5rem;
    }

}

/* Tablets */

@media screen and (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 550px;
    }

    .hero__slide {
        align-items: center;
        padding: 100px 0;
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__subtitle {
        font-size: .9rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__btn {
        padding: .9rem 1.4rem;
    }

    .hero__controls {
        bottom: 20px;
    }

    .hero__arrow {
        width: 45px;
        height: 45px;
    }

}

/* Mobile */

@media screen and (max-width: 576px) {

    .hero {
        min-height: 500px;
    }

    .hero__slide {
        padding: 80px 0;
    }

    .hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero__description {
        font-size: .95rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero__btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero__controls {
        gap: .75rem;
        bottom: 15px;
    }

    .hero__arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .hero__dot {
        width: 10px;
        height: 10px;
    }

}

/* Small Phones */

@media screen and (max-width: 360px) {

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__description {
        font-size: .9rem;
    }

    .hero__btn {
        padding: .8rem 1rem;
    }

}