/* Simple Image Slideshow */
.slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.slides {
    position: relative;
    width: 100%;
    min-height: 250px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transition: background 0.3s;
    z-index: 10;
    height: 100%;
}

.slide-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slide-btn.prev {
    left: 0;
}

.slide-btn.next {
    right: 0;
}

.slide-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
}
