/* * CRENOVA CUSTOM STYLES
 * ---------------------
 * Font: Inter (Sans-Serif) used universally for a clean, modern tech look.
 */

/* 1. TYPOGRAPHY */
body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
}

/* Headings now match the body font (Sans-Serif) but are bolder */
h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* 2. VISUAL ELEMENTS */
.journal-divider {
    border-top: 1px solid #cbd5e1;
    width: 60px;
    margin: 2rem 0;
}

/* 3. FUNCTIONAL */
html {
    scroll-behavior: smooth;
}

/* 4. SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #0d9488; }