/* Custom styles that complement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f1012;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1a1c20;
}
::-webkit-scrollbar-thumb {
    background: #25282e;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF6B6B;
}

/* Fade in animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle glow for coral elements */
.shadow-coral-glow {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.15);
}
