/* home/assets/css/style.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

/* Fullscreen slideshow */
.slideshow {
    list-style: none;
    padding: 0;
    margin: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.slideshow li {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2.5s ease-in-out, transform 5s ease-in-out;
    z-index: 0;
}

.slideshow li.active {
    opacity: 1;
    transform: scale(1.1);
    z-index: 2;
}

.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Default to horizontal */
.vertical-slideshow { display: none; }

/* Mobile = vertical */
@media screen and (max-width: 700px) {
    .horizontal-slideshow { display: none; }
    .vertical-slideshow   { display: block; }
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
}

.copyrite {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    padding-bottom: 10px;
}