/* Theme variables */
:root {
    --primary-gold: #dfc574;
    --secondary-gold: #bea86a;
    --primary-green: #307456;
    --accent-green: rgba(48, 116, 86, 0.9);
    --text-color: #221f1f;
    --text-muted: rgba(34, 31, 31, 0.7);
    --bg-color: #fffef7;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 254, 247, 0.95);
    --footer-bg: #221f1f;
    --border-color: var(--primary-green);
    --shadow-color: rgba(48, 116, 86, 0.15);
    --modal-bg: #ffffff;
    --modal-overlay: rgba(34, 31, 31, 0.75);
    --link-color: var(--primary-green);
    --hover-bg: rgba(48, 116, 86, 0.12);
}

[data-theme='dark'] {
    --text-color: #f5f1e8;
    --text-muted: rgba(245, 241, 232, 0.7);
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --header-bg: rgba(18, 18, 18, 0.95);
    --footer-bg: #0e0e0e;
    --modal-bg: #1a1a1a;
    --modal-overlay: rgba(0, 0, 0, 0.85);
    --hover-bg: rgba(48, 116, 86, 0.2);
}

