/* Explain: Theme design tokens (colors, fonts) - single source of truth. - */
:root {
    --primary-color: #2F4F24; /* Dark Green */
    --accent-color: #8DC63F; /* Lime Green */
    --background-color: #FAFCF7; /* Soft Green-Ivory */
    --text-color: #111111; /* Matte Black */
    --font-heading: 'Didot', 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}