/**
 * Logisko CSS Slider - Pure CSS Alternative to Smart Slider
 * No plugin needed!
 */

.logisko-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slide Backgrounds */
.slider-slide-1 {
    background-image: url('../images/hero-slide-1.png');
}

.slider-slide-2 {
    background-image: url('../images/hero-slide-2.png');
}

.slider-slide-3 {
    background-image: url('../images/hero-slide-3.png');
}

/* Slider Navigation Dots */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--logisko-red);
    width: 40px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 20px;
}

.slider-arrow:hover {
    background: var(--logisko-red);
    border-color: var(--logisko-red);
}

.slider-arrow-prev {
    left: 30px;
}

.slider-arrow-next {
    right: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .logisko-slider {
        height: 500px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-arrow-prev {
        left: 15px;
    }

    .slider-arrow-next {
        right: 15px;
    }
}