/* Custom Color Palette & Utilities */
:root {
    --midnight-900: #0f172a;
    --midnight-800: #1e293b;
    --mint-400: #6ee7b7;
    --mint-500: #34d399;
    --mint-600: #10b981;
    --mint-700: #059669;
    --mint-100: #d1fae5;
    --mint-50: #f0fdf4;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-500: #78716c;
    --stone-600: #57534e;
}

/* Animation Utilities */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce-slow {
    animation: float 4s ease-in-out infinite;
}

/* Scroll Reveal Base State (visible by default for accessibility) */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Reveal Animation State (applied via JS) */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f5f5f4;
}

::-webkit-scrollbar-thumb {
    background: #d1fae5;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6ee7b7;
}
