/* Light Theme Settings */

:root[data-bs-theme="light"] {
  --bs-primary: #0d6efd;
}

/* Dark Theme Settings */

:root[data-bs-theme="dark"] {
  --bs-primary: #9ec5fe;
}

/* Forest Theme Settings */

:root[data-bs-theme="forest"] {
  --bs-body-bg: #0b3d2e;
  --bs-body-color: #e8f5e9;
  --bs-primary: #4caf50;
}

/* PurpleGold Theme Settings */

:root[data-bs-theme="purplegold"] {
  --bs-body-bg: #411c5b;
  --bs-body-color: #f5e6d3;
  --bs-primary: #d4af37;

  /* Link color overrides */
  --bs-link-color: #f5e6d3;
  --bs-link-hover-color: #ffffff;

  /* tab nav overrides */
  --bs-nav-tabs-link-active-bg: #d4af37;
  --bs-nav-tabs-link-active-color: #411c5b;

/* heading color overrides */
  --bs-heading-color: #f5e6d3;
  --bs-display-color: #f5e6d3;

 /* Primary button overrides — generic */
  --bs-btn-bg: #d4af37;
  --bs-btn-border-color: #d4af37;
  --bs-btn-color: #411c5b;

  --bs-btn-hover-bg: #b9962f;
  --bs-btn-hover-border-color: #b9962f;
  --bs-btn-hover-color: #ffffff;

  /* Primary button overrides — variant-specific */
  --bs-btn-primary-bg: #d4af37;
  --bs-btn-primary-border-color: #d4af37;
  --bs-btn-primary-color: #411c5b;

  --bs-btn-primary-hover-bg: #b9962f;
  --bs-btn-primary-hover-border-color: #b9962f;
  --bs-btn-primary-hover-color: #ffffff;


}

/* Global Theme Settings */

:root {
  --bs-body-font-family: "Lancelot", serif;
}

body {
  font-family: "Lancelot", serif;
}
