/* Custom Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Material Symbols alignment fix */
.material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Selection color */
::selection {
    background: #fe6b00;
    color: white;
}

/* Scroll Video Section */
#scroll-video-container {
    background-color: #001B3D;
}

#scroll-video {
    z-index: 1;
    pointer-events: none;
    object-fit: cover;
    background: #001B3D;
}

.scroll-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-40px);
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    width: 100%;
}

.scroll-text.active {
    opacity: 1 !important;
    transform: translateY(-50%) translateX(0) !important;
}
