
/* Arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 32px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10;
}

.slider-btn.prev { left: 15px; }
.slider-btn.next { right: 15px; }

.slider-btn:hover {
    background: rgba(0,0,0,0.8);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

/* Mobile height */
@media (max-width: 768px) {
    .hero-slider {
        max-height: 300px;
    }
}
.hero-slider {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    position: relative;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}
