:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    color: var(--text-color);
    font-family: 'Adieu-Regular', 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    width: 100%;
    height: 100%;
}

/* Logo Styles */
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    /* Increased by 20% (was 500px) */
    width: 72%;
    /* Increased by 20% (was 60%) */
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
    z-index: 100;
    pointer-events: auto;
    /* Re-enable pointer events for hover */
    /* Allows click/hover through to scrub container */
    transition: transform 0.3s ease;
}

/* When hovering existing active image (or all), force opacity 0 */
.logo:hover~.scrub-image {
    opacity: 0 !important;
    transition: opacity 0.5s ease;
}

@font-face {
    font-family: 'Adieu-Regular';
    src: local('Adieu-Regular'), url('Adieu-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

.info-container {
    position: absolute;
    top: 80%;
    /* Moved down from 65% to avoid overlapping centered logo */
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    z-index: 90;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    width: 100%;
}

.production-text {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-weight: bold;
}

#email-container a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    pointer-events: auto;
}

.logo:hover~.info-container {
    opacity: 1;
}

/* Scrub Container */
.scrub-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    cursor: ew-resize;
    overflow: hidden;
    background-color: #1a1a1a;
    z-index: 1;
}

.scrub-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    /* Slower fade for "small fading animation" */
    pointer-events: none;
    /* Let clicks pass through if needed, though container handles events */
}

.scrub-image.active {
    opacity: 1;
    z-index: 1;
}





/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 768px) {
    /* Ensure full screen on mobile */
    .scrub-container {
        width: 100vw;
        height: 100vh;
        /* improved touch handling */
        touch-action: none; 
    }
    
    .logo {
        width: 85%; /* Slightly larger on mobile */
    }
    
    .info-container {
        top: 85%; /* Move down a bit more on mobile */
        width: 90%; /* Add margin */
        left: 50%;
        transform: translateX(-50%);
    }
    
    .production-text {
        font-size: 1rem; /* Slightly smaller text */
    }
}