/* Chillicothe Ohio Realtor - WhizDetty Clean Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1e40af;
    /* Blue-800 */
    --primary-hover: #1d4ed8;
    /* Blue-700 */
    --dark: #1a1a1a;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f9fafb;
    /* Gray-50 */
    color: #111827;
    /* Gray-900 */
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Card Hover Effects */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}