/**
 * theme.css — Apex Awards Admin Theme
 * Gold & Dark — matches the frontend award theme
 */

:root {
    --primary: #D4AF37;
    --primary-dark: #B8960C;
    --primary-light: #fef9ec;
    --primary-xlight: #fffdf5;
    --primary-rgb: 212, 175, 55;

    --sidebar-bg: #1a1408;
    --sidebar-surface: #2d1f0a;
    --sidebar-text: #d4b896;
    --sidebar-text-hover: #F9D976;
    --sidebar-active-bg: linear-gradient(135deg, #E6B422, #D4AF37);
    --sidebar-active-text: #1a1408;

    --navbar-bg: #1a1408;
    --navbar-text: #F9D976;

    --body-bg: #fefcf5;
    --card-bg: #ffffff;
    --card-border: #f0e0b0;
    --card-shadow: 0 1px 3px rgba(212, 175, 55, .08), 0 4px 16px rgba(0, 0, 0, .04);
    --card-shadow-hover: 0 4px 20px rgba(212, 175, 55, .18), 0 8px 32px rgba(0, 0, 0, .06);

    --text-primary: #1a1408;
    --text-secondary: #7a6a4a;
    --text-muted: #a89870;

    --border-radius: 14px;
    --border-radius-sm: 8px;
    --sidebar-width: 240px;
    --navbar-height: 60px;
    --transition: .2s ease;
}