/* Rubik's Cube Styles */

#cube-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1001;
    pointer-events: none;
}

#cube-container.loaded {
    z-index: 3;
    pointer-events: auto;
}

#cube-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Intro text styles - preserve original Webflow styles, only add animation */
.introtitle {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.introtitle.visible {
    opacity: 1;
}

.description {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.description.visible {
    opacity: 1;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

.fade-delay-1 {
    transition-delay: 0.2s;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.scroll-indicator.visible {
    opacity: 1;
}

.scroll-indicator span {
    color: rgba(212, 168, 83, 0.8);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Woody', Arial, sans-serif;
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(212, 168, 83, 0.6);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: rgba(212, 168, 83, 0.8);
    border-radius: 2px;
    animation: scroll-animation 1.5s ease-in-out infinite;
}

@keyframes scroll-animation {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* Navigation fix - ensure it stays at top */
.navigation,
.w-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: none !important;
    will-change: auto !important;
}

/* Ensure navigation items are properly styled */
.navigation-items {
    transform: none !important;
}

/* Main content positioning */
main {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    pointer-events: none;
}

main * {
    pointer-events: auto;
}

.column-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}