/* Custom Styles for The Evans Law Firm */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #020617; /* Midnight 900 */
    color: #e2e8f0; /* Slate 200 */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #14b8a6;
}

/* Typography Utilities */
.font-serif {
    font-family: 'Lora', serif;
}

.font-sans {
    font-family: 'Manrope', sans-serif;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Floating Animation for Hero Cards */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-card {
    animation: float 6s ease-in-out infinite;
}

.float-card-delay {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}
