/* ==========================================================================
   LocationSlider - Bild-Slider der Location-Page (nur dort eingebunden)
   ========================================================================== */

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: block;
    z-index: 1;
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 0;
    transition: opacity 1s ease-in-out;
}

.image-slider img.active {
    opacity: 1;
    z-index: 1;
}

.image-slider .dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
    padding: 4px 8px;
}

.image-slider .dot {
    width: 16px;
    height: 16px;
    border: 1px solid gray;
    border-radius: 8px;
    background: silver;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.image-slider .dot.active {
    background: rgba(255, 255, 255, 1);
}

.image-slider .dot:hover {
    transform: scale(1.2);
}
