/* Hide scrollbars but allow scrolling */
.no-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.no-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* Remove mobile tap highlight */
body { 
    -webkit-tap-highlight-color: transparent; 
}

/* Bento Box Core Styles - Flat, No Shadows */
.bento-box {
    border: 2px solid #2D2A26;
    border-radius: 2rem;
    overflow: hidden;
}

/* Dynamic Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items appearing together */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Active Nav Link Styling */
.nav-link.active {
    background-color: #7C9D96;
    color: #FFFFFF;
}