@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,600;1,400&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-red: #b91c1c; /* Matches PDF accent */
    --paper-bg: #fdfbf7;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f3f4f6;
}

.serif-text {
    font-family: 'EB Garamond', serif;
    line-height: 1.8;
    font-size: 1.125rem;
}

.accent-text {
    color: var(--primary-red);
}

.lesson-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.lesson-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.book-page {
    background-color: var(--paper-bg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom Scrollbar for sidebar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}
.sidebar::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.sidebar::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 3px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background: #999; 
}/* CSS Document */

