/* slider.css */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider__container {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-slider__slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.hero-slider__content {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slider__text {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2rem;
    margin-top: 2rem;
    color: #fff;
}

@media (min-width: 640px) {
    .hero-slider__text {
        padding: 3rem;
        margin-top: 3rem;
    }
}

.hero-slider__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .hero-slider__title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-slider__title {
        font-size: 3rem;
    }
}

.hero-slider__highlight {
    color: #F05126;
}

.hero-slider__subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .hero-slider__subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-slider__subtitle {
        font-size: 1.875rem;
    }
}

.hero-slider__description {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .hero-slider__description {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .hero-slider__description {
        font-size: 1.25rem;
    }
}

.hero-slider__button {
    display: inline-block;
    background-color: #F05126;
    color: #ffffff !important;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.hero-slider__button:hover,
.hero-slider__button:active,
.hero-slider__button:focus,
.hero-slider__button:visited {
    background-color: #d03d15;
    color: #ffffff !important;
    text-decoration: none;
}

@media (min-width: 640px) {
    .hero-slider__button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.hero-slider__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.hero-slider__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
}

@media (min-width: 640px) {
    .hero-slider__dot {
        width: 0.75rem;
        height: 0.75rem;
    }
}

.hero-slider__dot.active {
    opacity: 1;
}
