/**
 * Slideshow Shortcode Styles
 */

.mishmash-slideshow-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    z-index: -1;
}

.mishmash-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.mishmash-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.mishmash-slide.active {
    opacity: 1;
}

/* Fullscreen slideshow variant (default) */
.mishmash-slideshow-wrapper.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Contained slideshow variant */
.mishmash-slideshow-wrapper.contained {
    position: relative;
    height: 500px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Responsive heights */
@media (max-width: 768px) {
    .mishmash-slideshow-wrapper.contained {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .mishmash-slideshow-wrapper.contained {
        height: 200px;
    }
}

/* Error message */
.slideshow-error {
    padding: 20px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    text-align: center;
}
