/* ===================================
   HOME PAGE STYLES
   =================================== */

body {
    background: var(--color-white);
    overflow: hidden;
}

/* Transparent nav for homepage */
nav {
    background: transparent;
    border-bottom: none;
}

.hero-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

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

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

.slide.active {
    opacity: 1;
}

/* Slideshow Navigation Arrows */
.slideshow-arrow {
    position: absolute;
    bottom: 2.5rem;
    top: auto;
    background: none;
    border: none;
    color: #6a6a6a;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: color var(--transition-fast);
    line-height: 1;
    padding: 0;
}

.slideshow-arrow:hover {
    color: var(--color-primary);
}

.slideshow-arrow.prev {
    right: 100px;
}

.slideshow-arrow.next {
    right: 2.5rem;
}

@media (max-width: 768px) {
    .slideshow-arrow {
        bottom: 2rem;
        font-size: 1.4rem;
        width: 35px;
        height: 35px;
    }
    
    .slideshow-arrow.prev {
        right: 80px;
    }
    
    .slideshow-arrow.next {
        right: 2rem;
    }
}