
        /* Font declarations */
@font-face {
    font-family: 'SBL Hebrew';

    src: local("SBL Hebrew"), local("SBLHebrew"),
         url(/src/fonts/SBLHebrew.woff2) format("woff2"),
         url(/src/fonts/SBLHebrew.woff) format("woff"),

         url(https://www.hebcal.com/i/SBLHebrew-1.56a.woff2) format("woff2"),
         url(https://www.hebcal.com/i/SBLHebrew-1.56a.woff) format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}


        /* CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Base styles */
        :root {
            --primary-color: #3a5a78;
            --secondary-color: #e6c27a;
            --text-color: #333;
            --background-color: #f8f5f0;
            --accent-color: #8b5e34;
            --header-height: 60px;
            --footer-height: 60px;
            --max-content-width: 1200px;
        }
        
        body {
            font-family: 'SBL Hebrew', Arial, sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Header styles */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            max-width: var(--max-content-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        /* Navigation styles */
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: var(--secondary-color);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Main content styles */
        main {
            flex: 1;
            padding: 2rem 1rem;
        }
        
        .container {
            max-width: var(--max-content-width);
            margin: 0 auto;
        }
        
        section {
            margin-bottom: 3rem;
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }
        
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        
        h3 {
            font-size: 1.5rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        /* Biblical text styles */
        .biblical-text {
            font-size: 2rem;
            line-height: 1.8;
            text-align: center;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: #f9f5eb;
            border-radius: 8px;
            border: 1px solid var(--secondary-color);
        }
        
        .verse-reference {
            font-size: 1.2rem;
            text-align: center;
            color: var(--accent-color);
            margin-bottom: 2rem;
        }
        
        /* Interactive elements */
        .interactive-section {
            background-color: #f0f5f9;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
        }
        
        .cantillation-highlight {
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .cantillation-highlight:hover {
            color: var(--accent-color);
        }
        
        .tooltip {
            position: relative;
            display: inline-block;
        }
        
        .tooltip .tooltip-text {
            visibility: hidden;
            width: 200px;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            border-radius: 6px;
            padding: 10px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .tooltip .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: var(--primary-color) transparent transparent transparent;
        }
        
        .tooltip:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }
        
        /* Color theme toggle */
        .theme-toggle {
            background-color: var(--secondary-color);
            color: var(--text-color);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            transition: background-color 0.3s;
            margin: 1rem 0;
        }
        
        .theme-toggle:hover {
            background-color: #d4b05c;
        }
        
        /* Footer styles */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 1.5rem;
            text-align: center;
            margin-top: auto;
        }
        
        .footer-container {
            max-width: var(--max-content-width);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .copyright {
            font-size: 0.9rem;
        }
        
        /* Dark theme */
        body.dark-theme {
            --primary-color: #1e3a5f;
            --secondary-color: #c9a55d;
            --text-color: #e0e0e0;
            --background-color: #121212;
            --accent-color: #a57c4c;
        }
        
        body.dark-theme section,
        body.dark-theme .biblical-text {
            background-color: #1e1e1e;
            border-color: var(--secondary-color);
        }
        
        body.dark-theme .interactive-section {
            background-color: #252525;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .menu-toggle {
                display: block;
                position: absolute;
                top: 1rem;
                left: 1rem;
            }
            
            nav ul {
                flex-direction: column;
                position: absolute;
                top: var(--header-height);
                right: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 1rem;
                gap: 1rem;
                transform: translateY(-150%);
                transition: transform 0.3s ease-in-out;
                z-index: 99;
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            .biblical-text {
                font-size: 1.5rem;
                padding: 1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            section {
                padding: 1.5rem;
            }
        }
