﻿/* Splash homepage overrides */
body.home {
    background-color: #000000;
}

body.home .home-splash {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

body.home .hero-section {
    height: 100vh;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 0;
}

body.home .hero-section .hero-background,
body.home .hero-section .hero-video,
body.home .hero-section .hero-image,
body.home .hero-section .hero-fallback {
    height: 100%;
}

body.home .hero-section .hero-overlay {
    background: rgba(0, 0, 0, 0.4);
}


.home-splash__cta {
    position: absolute;
    bottom: clamp(2rem, 8vh, 5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: auto;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.home-splash__enter {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0.85rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.home-splash__enter:hover,
.home-splash__enter:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
    letter-spacing: 0.4em;
}

.home-splash__enter:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 6px;
}

@media (max-width: 640px) {
    .home-splash__cta {
        bottom: clamp(1.5rem, 6vh, 3rem);
    }

    .home-splash__enter {
        min-width: 180px;
        letter-spacing: 0.25em;
        padding: 0.75rem 2.75rem;
    }
}
