/* ===========================================================================
   theme.css  —  CENTRALISED THEME  ·  "Shubh Ganesh Murti"
   ---------------------------------------------------------------------------
   Professional admin UI: clean white surfaces, warm-neutral workspace,
   refined GOLD brand accent. Change the variables below and the ENTIRE
   application re-themes. To re-brand, mainly edit --gold / --gold-dark.
   =========================================================================== */

:root {
    /* ---- Brand accent (gold) ---- */
    --gold:         #b08428;
    --gold-dark:    #8a6618;
    --gold-light:   #d8b765;
    --brown:        #2e2417;
    --cream:        #f6f5f1;
    --ivory:        #ffffff;
    --brand-soft:   #f8f1e1;   /* soft gold tint */

    /* ---- Semantic roles ---- */
    --brand:        var(--gold);
    --brand-dark:   var(--gold-dark);
    --primary:      var(--gold);
    --primary-dark: var(--gold-dark);
    --secondary:    #475569;
    --accent:       var(--gold);
    --danger:       #dc2626;
    --success:      #15915b;
    --info:         #2563eb;
    --warning:      #c2810a;

    /* ---- Neutral / surfaces ---- */
    --bg:           #f5f5f3;   /* workspace */
    --surface:      #ffffff;   /* cards */
    --surface-2:    #f8f8f6;   /* table heads */
    --text:         #1f2430;   /* near-slate-900 */
    --text-muted:   #707684;   /* slate-500 */
    --border:       #ecebe7;   /* warm border */
    --border-strong:#ddd9d0;

    /* ---- Sidebar (clean white) ---- */
    --sidebar-bg:      #ffffff;
    --sidebar-bg-2:    #f4f4f2;   /* hover */
    --sidebar-text:    #565d6b;
    --sidebar-muted:   #9aa0ac;
    --sidebar-active:  var(--gold);

    /* ---- Legacy palette (backward compatibility) ---- */
    --color-yellow: var(--gold-light);
    --color-orange: var(--gold);
    --color-red:    var(--danger);
    --color-pink:   #b5476b;

    /* ---- Festive accents (Ganpati: yellow / orange / red) ---- */
    --festive-yellow: #ffce3a;
    --festive-orange: #ff7a18;
    --festive-red:    #e23b2e;
    --gradient-festive: linear-gradient(135deg, #ffce3a, #ff7a18 52%, #e23b2e);

    /* ---- Gradients ---- */
    --gradient-main:  linear-gradient(160deg, #2e2417, #4a3a22);
    --gradient-soft:  linear-gradient(180deg, #faf9f6, #f5f5f3);
    --gradient-brand: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    --gradient-gold:  linear-gradient(135deg, #d8b765, #b08428 55%, #8a6618);

    /* ---- Sizing ---- */
    --radius:         12px;
    --radius-sm:      8px;
    --radius-pill:    999px;
    --shadow:         0 1px 2px rgba(24, 24, 27, .04), 0 1px 3px rgba(24, 24, 27, .06);
    --shadow-md:      0 4px 16px rgba(24, 24, 27, .08);
    --shadow-sm:      0 1px 2px rgba(24, 24, 27, .05);
    --sidebar-width:  256px;
    --header-height:  60px;

    /* ---- Typography ---- */
    --font:         "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}
