/* ===================== CSS Variables ===================== */
:root {
    --primary: #E67E22;
    --primary-dark: #D35400;
    --accent-red: #E35A5C;
    --text-main: #333333;
    --text-muted: #7a3a2a;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;

    /* Footer overrides: background is --accent-red (#E35A5C),
       so muted/grey text must be dark enough to contrast */
    --footer-bg: #E35A5C;
    --footer-text: #3a0f0f;
    --footer-text-muted: #5a1a1a;
    --footer-link: #6b2020;
    --footer-bot-text: #4a1212;
    --footer-border: #c04040;

    /* Sidebar widget-title ::before accent —
       distinct from the title background colour (#E35A5C / --accent-red) */
    --sidebar-title-before: #D35400;
}