/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}

/* Lenis Smooth Scroll Recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Custom Utilities */
.tracking-widest {
    letter-spacing: 0.25em;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
}

/* Slider Container */
#work-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.work-card {
    width: 100vw;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    #work-container {
        height: 85vh !important;
    }
    
    .work-card {
        padding: 15px !important;
    }

    .work-card .text-4xl,
    #work h3.text-4xl {
        font-size: 2.2rem;
        line-height: 1;
    }

    .work-card h3.text-6xl {
        font-size: 3.5rem;
        line-height: 0.9;
    }
}

/* Centered Scroll Indicator */
.hero-scroll {
    pointer-events: none;
}


/* YouTube Link Style */
.youtube-link {
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.youtube-link:hover {
    box-shadow: 0 0 50px rgba(242, 125, 38, 0.1);
}

/* Mobile Menu Transitions */
#mobile-menu a {
    transition: all 0.3s ease;
}

#mobile-menu a:hover {
    letter-spacing: 0.1em;
}
