/* Light Theme Settings */

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

/* PurpleGold Theme Settings */

:root[data-bs-theme="purplegold"] {
  --bs-body-bg: #411c5b;
  --bs-body-color: #f5e6d3;
  --bs-primary: #d4af37;
  --bs-secondary-color: #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;

}

/* Global Theme Settings */

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

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

.bi.text-primary {
  color: inherit !important;
}


/* Light theme icons */
/* [data-bs-theme="light"] .bi {
  color: #000000;
} */

/* Purplegold theme icons */
/* [data-bs-theme="purplegold"] .bi {
  color: #d4af37;
} */

