/* Styles for the interactive landing page */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
    font-family: 'Lexend', sans-serif;
    background: #000;
}

#split-container {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    display: flex;
    cursor: pointer;
}

.panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    transition: flex 0.2s ease;
}

.panel video {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: calc(100% - 2px);
    object-fit: cover;
}

.panel .label {
    position: fixed;
    bottom: 20px;
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 0 0 8px rgba(0,0,0,0.8);
    pointer-events: none;
}

#left-panel .label {
    left: 20px;
}

#right-panel .label {
    right: 20px;
}

/* optionally dim the video on hover */
.panel:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
}

/* Banner at the top */
#banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 51px;
    background-color: #ff157d;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 40px;
    box-sizing: border-box;
    z-index: 10;
}

#banner-logo {
    height: 50px;
    width: auto;
}

#banner .banner-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0,0,0,0.8);
    pointer-events: auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

/* bottom footer banner */
#footer-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #ff157d;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 10;
}

#banner .banner-label:hover {
    transform: scale(1.05);
    text-shadow: 0 0 16px rgba(255,255,255,0.6);
}
