/*
 * custom.css
 */
 
/* LINKS */
:root {
  --bs-link-color:          #ee4137;
  --bs-link-hover-color:    #ee4137;
  --bs-link-focus-color:    #ee4137;
}

/* force colors */

a {
  color: var(--bs-link-color) !important;
}

a:hover,
a:focus {
  color: var(--bs-link-hover-color) !important;
}

a:visited {
  color: #ee4137 !important;
}

a:visited:hover,
a:visited:focus {
  color: var(--bs-link-hover-color) !important;
}


/* bold/underline tweaks */
a {
  font-weight: 500;
}

a:hover {
  text-decoration: none;   /* or keep underline if you prefer */
}

/* ... rest of your custom rules ... */

/* BUTTONS */

/* Change the main brand color → affects .btn-primary + lots more */

.btn-primary {
  --bs-btn-bg:                  #262f36 !important;
  --bs-btn-border-color:        #262f36 !important;
  --bs-btn-color:               #ffffff !important;
  --bs-btn-hover-bg:            #ee4137 !important;
  --bs-btn-hover-border-color:  #ee4137 !important;
  /* hover/active as above... */
}

}