/* ══════════════════════════════════════════════════════════════════════════════
   BuildProSoft Custom Theme
   Primary: #d69745  (warm amber/gold)
   ══════════════════════════════════════════════════════════════════════════════ */

[data-bs-theme="buildprosoft"] {
  /* ── Core palette ─────────────────────────────────────────────────────────── */
  --bs-primary:            #d69745;
  --bs-primary-rgb:        214, 151, 69;
  --bs-primary-text-emphasis: #8b5e23;
  --bs-primary-bg-subtle:  #fdf3e4;
  --bs-primary-border-subtle: #f0d6a8;

  /* ── Links ────────────────────────────────────────────────────────────────── */
  --bs-link-color:         #b87e3a;
  --bs-link-color-rgb:     184, 126, 58;
  --bs-link-hover-color:   #8b5e23;
  --bs-link-hover-color-rgb: 139, 94, 35;

  /* ── Body ─────────────────────────────────────────────────────────────────── */
  --bs-body-bg:            #fefcf8;
  --bs-body-bg-rgb:        254, 252, 248;
  --bs-body-color:         #3d3224;
  --bs-body-color-rgb:     61, 50, 36;
  --bs-emphasis-color:     #2a1f12;
  --bs-emphasis-color-rgb: 42, 31, 18;

  /* ── Surfaces ─────────────────────────────────────────────────────────────── */
  --bs-secondary-bg:       #f8f0e3;
  --bs-secondary-bg-rgb:   248, 240, 227;
  --bs-tertiary-bg:        #f3e8d6;
  --bs-tertiary-bg-rgb:    243, 232, 214;

  /* ── Borders ──────────────────────────────────────────────────────────────── */
  --bs-border-color:       #e8d5b8;
  --bs-border-color-translucent: rgba(214, 151, 69, 0.18);

  /* ── Focus ring ───────────────────────────────────────────────────────────── */
  --bs-focus-ring-color:   rgba(214, 151, 69, 0.25);

  /* ── Code ─────────────────────────────────────────────────────────────────── */
  --bs-code-color:         #a06828;

  /* ── Highlight ────────────────────────────────────────────────────────────── */
  --bs-highlight-bg:       #fdf3e4;

  color-scheme: light;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .btn-primary {
  --bs-btn-bg:             #d69745;
  --bs-btn-border-color:   #d69745;
  --bs-btn-hover-bg:       #b87e3a;
  --bs-btn-hover-border-color: #a87032;
  --bs-btn-active-bg:      #a87032;
  --bs-btn-active-border-color: #8b5e23;
  --bs-btn-disabled-bg:    #d69745;
  --bs-btn-disabled-border-color: #d69745;
  --bs-btn-color:          #fff;
  --bs-btn-hover-color:    #fff;
  --bs-btn-active-color:   #fff;
}

[data-bs-theme="buildprosoft"] .btn-outline-primary {
  --bs-btn-color:          #b87e3a;
  --bs-btn-border-color:   #d69745;
  --bs-btn-hover-bg:       #d69745;
  --bs-btn-hover-border-color: #d69745;
  --bs-btn-hover-color:    #fff;
  --bs-btn-active-bg:      #b87e3a;
  --bs-btn-active-border-color: #b87e3a;
  --bs-btn-active-color:   #fff;
}

/* ── Navbar / .bg-primary ─────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .bg-primary {
  background-color: #d69745 !important;
}
[data-bs-theme="buildprosoft"] .navbar {
  --bs-navbar-color:       rgba(255, 255, 255, 0.85);
  --bs-navbar-hover-color: #fff;
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
}

/* ── Solid bg-* utilities: ensure white text/icons ────────────────────────── */
[data-bs-theme="buildprosoft"] .bg-primary   { color: #fff; }
[data-bs-theme="buildprosoft"] .bg-secondary { color: #fff; }
[data-bs-theme="buildprosoft"] .bg-success   { color: #fff; }
[data-bs-theme="buildprosoft"] .bg-danger    { color: #fff; }
[data-bs-theme="buildprosoft"] .bg-info      { color: #fff; }
[data-bs-theme="buildprosoft"] .bg-dark      { color: #fff; }

/* text-bg-* helpers (Bootstrap 5.3 recommended pattern) */
[data-bs-theme="buildprosoft"] .text-bg-primary   { color: #fff !important; background-color: #d69745 !important; }
[data-bs-theme="buildprosoft"] .text-bg-secondary { color: #fff !important; }
[data-bs-theme="buildprosoft"] .text-bg-success   { color: #fff !important; }
[data-bs-theme="buildprosoft"] .text-bg-danger    { color: #fff !important; }
[data-bs-theme="buildprosoft"] .text-bg-info      { color: #fff !important; }
[data-bs-theme="buildprosoft"] .text-bg-warning   { color: #000 !important; }
[data-bs-theme="buildprosoft"] .text-bg-dark      { color: #fff !important; }

/* bg-warning is lighter, keep dark text */
[data-bs-theme="buildprosoft"] .bg-warning { color: #000; }

/* Badges: reinforce for specificity */
[data-bs-theme="buildprosoft"] .badge.bg-primary   { background-color: #d69745 !important; color: #fff !important; }
[data-bs-theme="buildprosoft"] .badge.bg-secondary { color: #fff !important; }
[data-bs-theme="buildprosoft"] .badge.bg-success   { color: #fff !important; }
[data-bs-theme="buildprosoft"] .badge.bg-danger    { color: #fff !important; }
[data-bs-theme="buildprosoft"] .badge.bg-info      { color: #fff !important; }
[data-bs-theme="buildprosoft"] .badge.bg-warning   { color: #000 !important; }
[data-bs-theme="buildprosoft"] .badge.bg-dark      { color: #fff !important; }

/* -subtle badge variants — match Bootstrap light-theme contrast */
[data-bs-theme="buildprosoft"] .bg-primary-subtle   { background-color: #fdf3e4 !important; }
[data-bs-theme="buildprosoft"] .bg-success-subtle   { background-color: #d1e7dd !important; }
[data-bs-theme="buildprosoft"] .bg-danger-subtle    { background-color: #f8d7da !important; }
[data-bs-theme="buildprosoft"] .bg-warning-subtle   { background-color: #fff3cd !important; }
[data-bs-theme="buildprosoft"] .bg-info-subtle      { background-color: #cff4fc !important; }
[data-bs-theme="buildprosoft"] .bg-secondary-subtle { background-color: #e2e3e5 !important; }

/* .text-primary: deep amber-brown for maximum contrast on light tints */
[data-bs-theme="buildprosoft"] .text-primary { color: #6b4518 !important; }
[data-bs-theme="buildprosoft"] .text-primary-emphasis   { color: #8b5e23 !important; }
[data-bs-theme="buildprosoft"] .text-success-emphasis   { color: #0a3622 !important; }
[data-bs-theme="buildprosoft"] .text-danger-emphasis    { color: #58151c !important; }
[data-bs-theme="buildprosoft"] .text-warning-emphasis   { color: #664d03 !important; }
[data-bs-theme="buildprosoft"] .text-info-emphasis      { color: #055160 !important; }
[data-bs-theme="buildprosoft"] .text-secondary-emphasis { color: #41464b !important; }

/* ── Nav pills / tabs ─────────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .nav-pills .nav-link.active,
[data-bs-theme="buildprosoft"] .nav-pills .show > .nav-link {
  background-color: #d69745;
  color: #fff;
}
[data-bs-theme="buildprosoft"] .nav-link {
  --bs-nav-link-color: #b87e3a;
  --bs-nav-link-hover-color: #8b5e23;
}

/* ── Form controls focus ──────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .form-control:focus,
[data-bs-theme="buildprosoft"] .form-select:focus {
  border-color: #e0ad6a;
  box-shadow: 0 0 0 0.25rem rgba(214, 151, 69, 0.25);
}
[data-bs-theme="buildprosoft"] .form-check-input:checked {
  background-color: #d69745;
  border-color: #d69745;
}

/* ── Progress bars ────────────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .progress-bar {
  background-color: #d69745;
}

/* ── Tables ───────────────────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: #faf4ea;
  --bs-table-hover-bg: #f5ecdc;
  --bs-table-active-bg: #f0e3cd;
  --bs-table-border-color: #e8d5b8;
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .card {
  --bs-card-bg: #fff;
  --bs-card-border-color: #e8d5b8;
  --bs-card-cap-bg: #f8f0e3;
}

/* ── Sidebar overrides ───────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .bps-sidebar {
  background: linear-gradient(180deg, #c98835 0%, #b87e3a 100%);
  border-right-color: #a87032;
}
/* All sidebar text & icons → white-on-amber */
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-item,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-top-node,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-node-link,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-label,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-brand-text,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-brand > a,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-footer-btn,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-footer-user,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-arrow {
  color: rgba(255, 255, 255, 0.85);
}
/* Icons inside sidebar */
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-item > i,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-top-node > i,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-node-link > i {
  color: rgba(255, 255, 255, 0.75);
  opacity: 0.9;
}
/* Hover */
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-item:hover,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-top-node:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-item:hover > i,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-top-node:hover > i,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-node-link:hover > i {
  color: #fff;
  opacity: 1;
}
/* Active item */
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-item.active {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
}
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-item.active::before {
  background: #fff;
}
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-item.active > i {
  color: #fff;
  opacity: 1;
}
/* Nested items (Safety, QAQC) */
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-nested {
  color: rgba(255, 255, 255, 0.65);
}
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-nested:hover {
  color: #fff;
}
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-nested.active {
  color: #fff;
}
/* Tree lines & borders */
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-submenu > .sidebar-item::after,
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-submenu > .sidebar-project::after {
  background: rgba(255, 255, 255, 0.25);
}
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-submenu-project {
  border-left-color: rgba(255, 255, 255, 0.25);
}
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-brand {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
/* Scrollbar inside sidebar */
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-inner::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
}
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
/* Footer */
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-footer {
  border-top-color: rgba(255, 255, 255, 0.2);
}
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-footer-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
/* Theme picker in sidebar */
[data-bs-theme="buildprosoft"] .bps-sidebar .bps-theme-picker {
  background: rgba(255, 255, 255, 0.15);
}
[data-bs-theme="buildprosoft"] .bps-sidebar .bps-theme-picker .sidebar-footer-btn.active {
  background: #fff;
  color: #b87e3a;
}
/* Toggle button */
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-toggle-btn {
  color: rgba(255, 255, 255, 0.7);
}
[data-bs-theme="buildprosoft"] .bps-sidebar .sidebar-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
/* Collapsed icon hover */
[data-bs-theme="buildprosoft"] .bps-sidebar.collapsed .sidebar-item:hover > i:first-child,
[data-bs-theme="buildprosoft"] .bps-sidebar.collapsed .sidebar-top-node:hover > i:first-child,
[data-bs-theme="buildprosoft"] .bps-sidebar.collapsed .sidebar-node-link:hover > i:first-child {
  color: #fff;
}

/* ── Dropdown menus ───────────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .dropdown-menu {
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: #e8d5b8;
  --bs-dropdown-link-hover-bg: #fdf3e4;
  --bs-dropdown-link-active-bg: #d69745;
  --bs-dropdown-link-active-color: #fff;
}

/* ── List groups ──────────────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .list-group-item.active {
  background-color: #d69745;
  border-color: #d69745;
}

/* ── Pagination ───────────────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .page-link {
  --bs-pagination-active-bg: #d69745;
  --bs-pagination-active-border-color: #d69745;
}

/* ── Alert primary ────────────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] .alert-primary {
  --bs-alert-bg: #fdf3e4;
  --bs-alert-border-color: #f0d6a8;
  --bs-alert-color: #8b5e23;
}

/* ── Scrollbar (Webkit) ──────────────────────────────────────────────────── */
[data-bs-theme="buildprosoft"] ::-webkit-scrollbar-thumb {
  background: #ddb877;
}
[data-bs-theme="buildprosoft"] ::-webkit-scrollbar-track {
  background: #f8f0e3;
}
