:root{
  --primary-dark: #3c153b;
  --secondary-wine: #8b1e3f;
  --accent-red: #db4c40;
  --accent-sage: #89bd9e;
  --light-gold: #f0c987;
  --tuscan-sun: #f4c431;
}

/* Base text */
body {
  color: var(--primary-dark);
}

a {
  color: var(--secondary-wine);
}

a:hover {
  color: var(--accent-red);
}

/* Navbar */
.navbar-dark {
  background-image: url('../figures/2026_banner2.png');
}

.navbar {
  background-image: url('../figures/2026_banner2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  min-height: 200px;
}

.navbar-dark a:hover,
.navbar a:hover {
  color: var(--primary-dark) !important;
}

.navbar-dark .navbar-brand,
.navbar .navbar-brand {
  color: var(--tuscan-sun) !important;
  font-family: "Trebuchet MS";
  font-size: 24px;
}

/* Title banner */
.quarto-title-banner {
  background: transparent !important;
}

.title {
  color: var(--primary-dark) !important;
}

/* Bibliography */
div.csl-entry {
  margin-top: 1rem;
}

div.csl-entry a::before {
  content: "\a";
  white-space: pre;
}

div.csl-entry a {
  color: var(--secondary-wine);
}

/* Buttons */
.button-61 {
  align-items: center;
  appearance: none;
  border-radius: 4px;
  border-style: none;
  box-shadow:
    rgba(0, 0, 0, .2) 0 3px 1px -2px,
    rgba(0, 0, 0, .14) 0 2px 2px 0,
    rgba(0, 0, 0, .12) 0 1px 5px 0;
  box-sizing: border-box;
  color: var(--light-gold);
  cursor: pointer;
  display: inline-flex;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  letter-spacing: .0892857em;
  min-width: 64px;
  padding: 0 16px;
  text-transform: uppercase;
  transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),
              background-color 200ms ease;
  background-color: var(--primary-dark);
}

.button-61:hover {
  background-color: var(--secondary-wine);
  box-shadow:
    rgba(0, 0, 0, .2) 0 2px 4px -1px,
    rgba(0, 0, 0, .14) 0 4px 5px 0,
    rgba(0, 0, 0, .12) 0 1px 10px 0;
}

.button-61:focus,
.button-61:active {
  background-color: var(--accent-sage);
  color: var(--primary-dark);
}

/* Disabled */
.button-61:disabled {
  background-color: rgba(0, 0, 0, .12);
  box-shadow: none;
  color: rgba(0, 0, 0, .37);
  cursor: default;
  pointer-events: none;
}

/* Alternate button / legacy */
.old {
  background-color: var(--light-gold) !important;
  color: var(--primary-dark) !important;
}

.old:active {
  background-color: var(--primary-dark) !important;
  color: var(--light-gold) !important;
  box-shadow:
    rgba(0, 0, 0, .2) 0 5px 5px -3px,
    rgba(0, 0, 0, .14) 0 8px 10px 1px,
    rgba(0, 0, 0, .12) 0 3px 14px 2px !important;
}

/* Utility links */
.link {
  color: var(--secondary-wine);
}

.link:hover {
  color: var(--accent-red);
}


