:root {
    /* Colors */
    --bg-color: #121212;
    --bg-secondary: #1E1E1E;
    --text-color: #F5F5F5;
    --text-muted: #BBB;
    --accent-color: #D4AF37; /* Gold */
    --accent-hover: #F2C94C;

    /* Semantic */
    --clr-white: #ffffff;
    --clr-black: #000000;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --section-spacing: 4rem; /* 64px */
    --container-padding: 1.5rem;

    /* Components */
    --border-radius: 4px;
    --transition: 0.3s ease;
}

/* Light Theme (Future proofing, but currently unused) */
[data-theme='light'] {
    --bg-color: #ffffff;
    --text-color: #121212;
}
