/* General reset for margins and paddings */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   Custom Heading Overrides (Overrides Bootstrap)
========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'League Gothic', sans-serif;
  font-weight: normal;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
  text-transform: none;
}

/* Static font sizes to override Bootstrap calc() */
h1 {
  font-size: 2.5rem; /* Bootstrap 5 default: ~40px */
}

h2 {
  font-size: 2rem; /* Bootstrap 5 default: ~32px */
  text-transform: uppercase; /* Per UH design guidance */
}

h3 {
  font-size: 1.75rem; /* Bootstrap 5 default: ~28px */
}

h4 {
  font-size: 1.5rem; /* Bootstrap 5 default: ~24px */
}

h5 {
  font-size: 1.25rem; /* Bootstrap 5 default: ~20px */
}

h6 {
  font-size: 1rem; /* Bootstrap 5 default: ~16px */
}

/* Main page container */
main {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure footer sticks to the bottom */
}

/* Breadcrumb navigation */
.breadcrumb {
  background-color: #fff;
  margin-top: 15px;
  font-size: 1em;
}

.breadcrumb a {
  color: #c8102e;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: #960c22;
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #54585A;
  content: '> ';
}

button,
.button {
  font-family: "Milo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  border: none;
}

/* ==========================================================================
   Accordion Styles – Bootstrap 5 Customization
   ========================================================================== */

.accordion {
  background-color: transparent;
  border: none;
}

/* Accordion Item */
.accordion-item {
  background-color: hsl(0, 0%, 95%);
  border: none;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
}

/* Accordion Header */
.accordion-button {
  font-family: "Milo", sans-serif;
  font-size: 1rem;
  font-weight: 600; /* Slightly bolder than body */
  background-color: transparent;
  color: #C8102E;
  box-shadow: none;
  justify-content: space-between;
  padding: 1.25rem 3rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  min-height: 80px;
  line-height: 1.2;
  position: relative;
  text-transform: none;
}

/* Keep header red when expanded */
.accordion-button:not(.collapsed) {
  color: #C8102E;
  background-color: transparent;
  box-shadow: none;
}

/* Plus/Minus Icon */
.accordion-button::after {
  content: "+";
  font-size: 1rem;
  color: #C8102E;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Minus sign when expanded */
.accordion-button:not(.collapsed)::after {
  content: "–";
}

/* Accordion Body */
.accordion-body {
  font-family: "Milo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 1.25rem;
}

/* ==========================================================================
   End Accordion Styles
   ========================================================================== */
