/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    color: var(--color-white);
}

.hero-content p {
    max-width: 520px;
}

.hero-cta {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Still Image */
.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
}
