/* CJS Ministries - Custom Styles */

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

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Flame glow pulse on logo */
@keyframes flamePulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(245, 166, 35, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(245, 166, 35, 0.5));
    }
}

.animate-flame-pulse {
    animation: flamePulse 3s ease-in-out infinite;
}

/* Subtle text glow for headings */
.text-glow {
    text-shadow: 0 0 40px rgba(245, 166, 35, 0.15);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f1624;
}
::-webkit-scrollbar-thumb {
    background: #253d6b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e8872a;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #f5a623;
    outline-offset: 2px;
}
