/* FaithCraft — Shared Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: white;
    overflow-x: hidden;
}

.hero-font {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.text-shadow {
    text-shadow: 0 4px 30px rgba(0,0,0,0.9);
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #22c55e;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.card-hover-glow {
    transition: all 0.4s ease;
}
.liquid-glass-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.42), rgba(8, 8, 8, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px) saturate(165%);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 40px -26px rgba(0, 0, 0, 0.85);
}
.liquid-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 15% 0%, rgba(255, 255, 255, 0.18), transparent 55%);
    pointer-events: none;
}
@media (hover: hover) {
    .card-hover-glow:hover {
        transform: translateY(-5px);
        border-color: rgba(34, 197, 94, 0.4);
        box-shadow: 0 10px 40px -10px rgba(34, 197, 94, 0.1);
    }
}

.btn-glow {
    position: relative;
    overflow: hidden;
}
.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn-glow:hover::before {
    left: 100%;
}
