﻿:root {
  /* Primary Palette */
  --sru-color-primary: #007055;       /* SRU Green */
  --sru-color-secondary: #ffcb0b;     /* SRU Gold */
  --sru-color-accent: #e63946;        /* Accent Red */
  --sru-color-secondary-ada: #fede00;     /* SRU ADA Gold */

  /* Backgrounds */
  --sru-bg-white: #ffffff;
  --sru-bg-light: #f9f9f9;
  --sru-bg-gray: #e7e7e7;
  --sru-bg-dark: #1e1e1e;

  /* Text Colors */
  --sru-text-dark: #111111;
  --sru-text-light: #ffffff;
  --sru-text-muted: #6c757d;
  --sru-text-gray: #5f636d;
  
  

  /* UI Elements */
  --sru-border-color: #e0e0e0;
  --sru-link-color: var(--sru-color-primary);
  --sru-link-hover: var(--sru-color-secondary);
  --sru-link2-color: var(--sru-blue);
  --sru-link2-hover: var(--sru-blue);

  /* State Colors */
  --sru-success: #198754;
  --sru-warning: #ffc107;
  --sru-danger: #dc3545;
  --sru-info: #0dcaf0;
  --sru-blue: #2946f3;  
}

/*color overrides - simply add these classes to the correlating html*/ 

/* Background Utilities */

.sru-green-background {
  background-color: var(--sru-color-primary);
}

.sru-gold-background {
  background-color: var(--sru-color-secondary);
}

.sru-accent-background {
  background-color: var(--sru-color-accent);
}

.sru-white-background {
  background-color: var(--sru-bg-white);
}

.sru-light-background {
  background-color: var(--sru-bg-light);
}

.sru-gray-background {
  background-color: var(--sru-bg-gray);
}

.sru-dark-background {
  background-color: var(--sru-bg-dark);
}

/* Text Utilities */
.sru-dark-text {
  color: var(--sru-text-dark);
}

.sru-light-text {
  color: var(--sru-text-light);
}

.sru-muted-text {
  color: var(--sru-text-muted);
}

.sru-gray-text {
  color: var(--sru-text-gray);
}

.sru-green-text {
  color: var(--sru-color-primary);
}

.sru-gold-text {
  color: var(--sru-color-secondary);
}

.sru-gold-text-ada {
  color: var(--sru-color-secondary-ada);
}

.sru-accent-text {
  color: var(--sru-color-accent);
}

.sru-dark-text-button:hover {
  color: var(--sru-text-dark);
}

/* Border Utility */
.sru-border {
  border-color: var(--sru-border-color);
}

/* Link Utilities */
.sru-link {
  color: var(--sru-link-color);
}

.sru-link:hover {
  color: var(--sru-link-hover);
}

.sru-link2 {
  color: var(--sru-link2-color);
  text-decoration: underline;
}

.sru-link2:hover {
  color: var(--sru-link2-hover);
}

/* State Backgrounds */
.sru-success-background {
  background-color: var(--sru-success);
}

.sru-warning-background {
  background-color: var(--sru-warning);
}

.sru-danger-background {
  background-color: var(--sru-danger);
}

.sru-info-background {
  background-color: var(--sru-info);
}

/*Button Color Overrides*/

.btn.btn-sru-gold {
  background-color: var(--sru-color-secondary);
  color: var(--sru-text-dark);
}

.btn.btn-sru-gold:hover {
  background-color: var(--sru-color-primary);
}

/* Border Colors */

.border-sru-green-wide {
  border-color: var(--sru-color-primary) !important;
  border-width: 3px !important;
}

/* Body Paragraph Text */

 body {
	 color: var(--sru-text-gray);
}

/* menu list override */

ul li {
  list-style-type: disc; 
}

/*single dropdown nav fix*/
li.dropdown {
  list-style-type: none; 
}

li.sub-title {
  list-style-type: none; 
}

.mega-menu ul li {
  list-style-type: none;
}

ul.bio-concentrations__menu > li { 
  list-style: none; 
}
ul.bio-concentrations__menu > li::marker { 
  content: none; 
} 

/*Heading corrections/replaces for ADA */

.h5-replace{
  font-size: 2rem;
  line-height: 2.2rem;
}

/*visually hidden section, for h1 in this case, for ADA and SEO purposes*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; /* prevent line breaks */
  border: 0;
}

/*start header styling */
@media (min-width: 992px) {
.navbar li.nav-item.dropdown {
  padding-bottom: 1rem;
  list-style: unset;
  }

.mega-menu ul li {
  padding-bottom: .5rem;
  list-style: unset;
  }
}

.navbar .navbar-nav .dropdown .dropdown-menu {
  padding-top: 40px;
  padding-bottom: 35px;
  border-bottom: 2px solid #ffcb0b;
}
.navbar-nav {
  margin-top: 1rem;
}

header .navbar {
  background-color: var(--sru-color-primary);
}

.submenu-light{
  background-color: var(--sru-color-primary) !important;
}

.header-demo.navbar .navbar-nav .nav-link {
  color: var(--sru-text-dark);
}

/* search icon */
.header-light .header-icon .icon > a {
  color: var(--sru-text-light);
}

.header-light .header-icon .icon > a:hover {
  color: var(--sru-color-secondary);
  opacity: 1;
}

.header-icon .icon > a {
  font-size: 1.5em;
}

/*mysru styling*/
.header-light .header-icon .icon .header-language > a, .header-light .header-icon .icon .header-cart > a, .header-light .header-icon .icon .header-account > a {
  color: var(--sru-text-light);
}

.header-light .header-icon .icon .header-language > a:hover, .header-light .header-icon .icon .header-cart > a:hover, .header-light .header-icon .icon .header-account > a:hover {
  color: var(--sru-color-secondary);
  opacity: 1;
}

@media (min-width: 992px) {
header .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}


@media (min-width: 992px) {
	
.header-demo.navbar .navbar-nav .nav-link {
  color: var(--sru-text-light);
}
	
	
  /* Arrow rotation on hover */
  .nav-link .dropdown-icon {
    transition: transform 0.3s ease;
  }

  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }

  /* Underline and color change for real links (like "Academics") */
  .navbar-nav > .nav-item .nav-link:not(.dropdown-toggle-icon):hover {
    text-decoration: underline;
    color: #ffcb0b;
  }

  /* Tighten spacing between label and arrow */
  .nav-link-wrapper .dropdown-toggle-icon {
    padding-left: 2px;
    margin-left: 0;
  }

/* fixes weird down arrow margin */
.ms-1 {
  margin-left: .1rem !important;
}

/* Tighten spacing between Academics text and down arrow */
.nav-link-wrapper .dropdown-toggle-icon {
  margin-left: -.55em !important; /* override Bootstrap's ms-1 if it was there */
  }
}

@media (min-width: 1200px) {
.nav-link-wrapper .dropdown-toggle-icon {
  margin-left: -1.2em !important; /* override Bootstrap's ms-1 if it was there */
  }
}


@media (min-width: 992px) {
  .dropdown-icon {
    transition: transform 0.3s ease;
  }

  .dropdown-icon.rotated {
    transform: rotate(180deg);
  }
}

/*change non link dropdown title color*/
.navbar .navbar-nav .submenu-content ul .sub-title {
  color: var(--sru-color-primary);
}

/*Improve hover and clickability of nav text*/
a.nav-link.pe-1 {
  z-index: 1;
}

/*styling text on dropdowns and such*/
.text-sru-primary {
  color: #007055;
}

@media (min-width: 992px) {
.navbar .navbar-nav .submenu-content ul .sub-title {
  font-size: 1.5em;
}

.navbar .navbar-nav .dropdown .dropdown-menu a {
  color: var(--medium-gray);
  font-size: 1.05em;
}
}

.nav-link:hover i {
  text-decoration: none !important;
}


/* MySRU icon */

.icon-mysru {
  width: 3.5em;
  height: 3.5em;
  vertical-align: middle;
  fill: currentColor;
}

/*Begin Utility nav bar*/

.give-cta:hover {
}
	

.sru-cta-top {
  display: flex;
  padding: 0px !important;
}

.sru-cta-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px !important;
  border-radius: 0;
  font-weight: 600;
  color: #000 !important;
  text-decoration: none;
  background-color: var(--sru-color-secondary);
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: center;
  min-width: auto;
  border-left: 1px solid;
  border-bottom: 1px solid;
}

.sru-cta-top a:nth-child(3) {
  border-right: 1px solid;
}

@media (max-width: 480px) {
.sru-cta-top a {
  padding: 6px 10px !important;
  }
}

@media (max-width: 420px) {
.sru-cta-top a {
  padding: 6px 4px !important;
  }
}

@media (min-width: 992px) {
  .sru-cta-top a {
    min-width: 125px;
  }
}

.sru-cta-top a:hover {
  /*background-color: var(--sru-color-primary);
  color: #fff !important;*/
  filter: brightness(1.10);
  box-shadow: 0 6px 16px rgba(255,203,11,.1);
  background-color: var(--sru-bg-gray);
}

/* Utility bar stays fixed at top, always visible */
.header-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  height: 42px;
  background-color: var(--sru-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MODIFIED: Allow multi-column layout inside utility nav */
.header-top-bar .container-fluid {
  padding-left: 15px;
  padding-right: 0px;
}

.header-top-bar .row {
  width: 100%;
  margin: 0;
}

.header-top-bar .col-left,
.header-top-bar .col-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
}

/* MODIFIED: Desktop layout with two columns */
@media (min-width: 768px) {
  .header-top-bar .col-left {
    justify-content: flex-start;
  }

  .header-top-bar .col-right {
    justify-content: flex-end;
  }
}

/* DESKTOP: Push primary nav down below utility bar */
@media (min-width: 992px) {
  header:not(.sticky):not(.sticky-active) .navbar {
    margin-top: 42px !important;
  }

  header.sticky.sticky-active .navbar {
    margin-top: 42px !important;
  }

  header.sticky .navbar {
    margin-top: 0 !important;
  }
}

/* TABLET & MOBILE: Push primary nav down below utility bar */
@media (max-width: 991px) {
  .header-top-bar {
    position: relative;
  }

  header .navbar {
    padding-top: 42px !important;
  }
}

/* SMALL MOBILE: Ensure utility bar is still visible */
@media (max-width: 767px) {
  .header-top-bar {
    display: flex !important;
    height: 42px !important;
  }

  header .navbar {
    padding-top: 42px !important;
  }
}

/*Corrects utility nav text breaking onto second line issue*/
.header-top-bar .container-fluid .row .col-auto.d-flex.justify-content-end a.ms-3 {
  margin-left: 1rem !important;
}

.header-top-bar .col-auto.d-flex:not(.sru-cta-top) a {
  margin-right: 1rem !important;
}

/* Utility nav styles when header becomes sticky */
header.sticky.sticky-active .header-top-bar {
  background-color: var(--sru-bg-gray);
}

header.sticky.sticky-active .header-top-bar a {
  color: var(--sru-text-dark) !important;
}

.utility-left button,
.utility-left a {
  white-space: nowrap;
}

/* Mobile dropdown for utility nav */
@media (max-width: 991px) {
  .utility-left {
    position: relative;
    display: flex;
    align-items: center;
  }

  /* Hide dropdown by default */
  .utility-left .utility-dropdown {
    display: none;
    position: absolute;
    top: 42px; /* just below the utility bar */
    left: 0;
    width: 100%;
    background-color: var(--sru-bg-dark);
    flex-direction: column;
    padding: 0.5rem 0;
    z-index: 1000;
  }

  /* Show dropdown when open */
  .utility-left.open .utility-dropdown {
    display: flex;
  }

  .utility-left .utility-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff !important;
    text-align: left;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .utility-left .menu-toggle {
    cursor: pointer;
    padding: 0.5rem 1rem;
    color: #fff !important;
  }
}


/*Remove sticky nav on mobile*/
@media (max-width: 991px) {
  header.sticky.sticky-active [data-header-hover="light"] {
    display: none;
  }
}

/* fix for header when program masthead is in use. Might need to tweak or readdress for other pages without a masthead */
@media (max-width: 991px) {
.header-position-mobile-fix {
	margin-top: 132px !important;
  }
}


/*removes odd opacity on nav link hovers*/

.navbar .navbar-nav .nav-item:hover .nav-link, .navbar .navbar-nav .nav-item.active .nav-link {
  opacity: 1;
}

/*end header*/


/*start footer styling*/

.footer-demo {
  background-position: center top; /* shifts image to top */
}

.footer-demo > .container {
  position: relative;
  z-index: 1;
}

.footer-demo {
  position: relative;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.footer-demo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 112, 85, 0.92); 
  z-index: 0;
  pointer-events: none; 
}

.footer-demo > .container {
  position: relative;
  z-index: 1;
}

/*Copyright color*/
.col-lg-5.text-lg-end p.fs-13.lh-22 {
  color: #ffffff;
}

/* Footer Links */
.footer-demo .col-lg-2.text-lg-start > span {
  color: #ffcb0b !important; /*Note to self, fix this later -D*/
  font-size: 1.2em;
  text-transform: none !important; /*Note to self, fix this later -D*/
}

/* Links under them */
.footer-demo .col-lg-2 ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-demo .col-lg-2 ul li a:hover {
  color: #ffcb0b;
  text-decoration: underline;
}

/* Text hightlight span for footer*/
.bg-highlight-footer {
  background-color: #ffcb0b;
  color: #000000;
  font-weight: 700;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-transform: none;
  line-height: 4rem;
}

.footer-demo img {
  max-height: 250px !important;
}

.footer-demo .col-lg-5 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-demo .col-lg-5 a:hover {
  color: #ffcb0b;
  text-decoration: underline;
}


.footer-demo .col-lg-7 p.fs-13.lh-22 {
  color: #ffffff;
}

.footer-demo .elements-social {
  position: relative;
  top: -50px; /* move it up visually */
  padding: 10px;
}

.social-icon-style-09 ul.light li a:hover {
  border-color: var(--sru-color-secondary);
}

.social-icon-style-09 ul.light li a span {
  background-color: var(--sru-color-secondary);
}

/*footer line hieght fix for wrapped footer links*/
.footer-demo ul li {
  padding: 5px 0;
  line-height: 1.4;
  list-style: none;
}

/*legal footer links*/
/* legal footer links */
.footer-legal-links {
  list-style: none;
  margin: 0;
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
}

.footer-legal-links li {
  display: flex;              /* centers the text vertically with the bar */
  align-items: center;
}

.footer-legal-links li + li::before {
  content: "";
  display: inline-block;
  width: 1px;                 /* separator thickness */
  height: 0.9em;              /* matches text height nicely */
  background: #fff;           /* white bar */
  margin: 0 8px;              /* <— space on BOTH sides of the bar */
}

/* link styling */
.footer-legal-links a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}
.footer-legal-links a:hover { text-decoration: underline; }






/*end footer*/

/*Qoute Block changes*/

.quote-block-padding-fix{
  padding-top: 75px;
  padding-bottom: 75px !important;
}

/*Large masthead changes*/

.border-color-base-color {
  border-color: var(--sru-color-secondary) !important;
}

/*fixes min-height issue with 1080p res, fixes max-height issue for 4k 150zoom, might need to tweak more for 4k wide*/
@media (min-width: 992px) {
.masthead-height-fix {
min-height: 700px !important; 
max-height: 900px
}
}

/* program dropdown tabs for large list*/

/*dropdown fix for lists*/
ul.bio-concentrations__menu > li { 
  list-style: none; 
}
ul.bio-concentrations__menu > li::marker { 
  content: none; 
}

.bio-concentrations {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.bio-concentrations__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.bio-concentrations__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

.bio-concentrations__dropdown {
  margin-bottom: 40px;
}

.bio-concentrations__button {
  padding: 12px 24px;
  border-radius: 30px;
  background-color: #007055;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.bio-concentrations__button:hover {
  background-color: #3db166;
}

.bio-concentrations__menu {
  min-width: 320px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
}

.bio-concentrations__item {
  padding: 10px 20px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
}

.bio-concentrations__item:hover {
  background-color: #eee;
}

.bio-concentrations__tabs {
  margin-top: 20px;
  text-align: left;
}

.bio-concentrations__tab-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.bio-concentrations__image {
  flex: 0 0 300px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bio-concentrations__text {
  max-width: 500px;
}

.bio-concentrations__label {
  display: inline-block;
  background: #336699;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.bio-concentrations__heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.bio-concentrations__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.bio-concentrations__cta {
  display: inline-block;
  padding: 10px 24px;
  background: #007055;;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s all;
}

.bio-concentrations__cta:hover {
  background: #3db166;
  color:white;
}

@media (max-width: 991.98px) {
  .sru-program-dropdown-section {
    border-bottom: 2px solid;
  }
}

/*Accessibility Updates*/
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #2946f3;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #2946f3;
  outline-offset: 2px;
}

.navbar a:focus-visible,
.navbar .nav-link:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px #2946f3 !important;
  outline-offset: 2px;
}


/*Fix Event Height*/
.blog-side-image .blog-image {
  height: 150px;
  background-size: cover;
  background-position: center;
}

/*ada navigation*/
.skip-links { position:absolute; left:-9999px; top:auto; }
.skip-links a:focus {
  position:fixed; left:1rem; top:1rem;
  background:#fff; color:#000;
  padding:.5rem .75rem; border:2px solid #007055; border-radius:.25rem;
  z-index:10000; text-decoration:none;
}


/*masthead fade in*/
/* off by default to avoid lag while scrolling */
[data-parallax-background-ratio] { will-change: background-position; }

/* enable a short, one-time ease for the first paint */
html.masthead-init [data-parallax-background-ratio] {
  transition: background-position 325ms ease-out;
}

/*fix hashed program urls dropdown header*/
/* So scrolling to the section doesn't hide under your fixed header */
.sru-program-dropdown-section { scroll-margin-top: 40px; }


/*concentrations tab*/

section.pb-0 .container .row .col-12.col-xl-8.last-paragraph-no-margin h1.text-dark-gray.alt-font.fw-600 {
  font-size: 3.4rem;
}

/*awards Slider*/
.sru-swiper-slide img {
  width: 200px;
  height: auto;
}

.sru-requirements-section a {
  color: var(--sru-blue);
}

/* RELEASE THE PROGRAM FINDER FOR MANAGED DEMOCRACY! */

/*checkbox override for program finder*/
input{
padding: 0;
}

/* Bring back an obvious keyboard focus ring */
#pf-types input[type="checkbox"]:focus-visible,
#pf-interests input[type="checkbox"]:focus-visible {
  outline: 2px solid blue !important;   /* SRU green */
  outline-offset: 2px;
  box-shadow: 0 0 0 .2rem rgba(0,112,85,.25);  /* optional glow */
}

#pf-types input[type="checkbox"],
#pf-interests input[type="checkbox"] {
  accent-color: #333;                 /* dark check/fill */
  border: 1.5px solid #333;           /* darker box when unchecked */                 /* keep native bg */
  margin-bottom: .2em;
}

#pf-types .form-check-input:checked,
#pf-interests .form-check-input:checked {
  background-color: #007055;
}

#pf-types input[type="radio"]:focus-visible,
#pf-interests input[type="radio"]:focus-visible {
  outline: 2px solid blue !important;   /* SRU green */
  outline-offset: 2px;
  box-shadow: 0 0 0 .2rem rgba(0,112,85,.25);  /* optional glow */
}

#pf-types input[type="radio"],
#pf-interests input[type="radio"] {
  accent-color: #333;                 /* dark check/fill */
  border: 1.5px solid #333;           /* darker box when unchecked */                 /* keep native bg */
  margin-bottom: .2em;
}

/* Subtle outline and hover lift for all program cards */
#program-results .shop-box {
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .5rem;           /* matches rounded-2-ish */
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
#program-results .shop-box:hover,
#program-results .shop-box:focus-within {
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.form-check-label-line-height {
	line-height: 24px;
}

li.list-of-programs-sru {
	line-height: 30px;
}

/*Program Finder Colors*/

/* White text on SRU green */
.sru-whiteongreen-finder {
  background-color: var(--sru-color-primary) !important; /* #007055 */
  color: var(--sru-text-light) !important;               /* #ffffff */
}

/* SRU green text on ADA yellow */
.sru-greenonyellow-finder {
  background-color: var(--sru-color-secondary-ada) !important; /* #fede00 */
  color: var(--sru-color-primary) !important;                  /* #007055 */
}

/* Dark bg + white text */
.pf-whiteonnavy        { background:#0b3d91 !important; color:#ffffff !important; } /* navy */
.pf-whiteonindigo      { background:#3730a3 !important; color:#ffffff !important; } /* indigo-700 */
.pf-whiteonroyal       { background:#1f3a93 !important; color:#ffffff !important; } /* royal blue */
.pf-whiteonteal        { background:#0f766e !important; color:#ffffff !important; } /* teal-700 */
.pf-whiteonforest      { background:#14532d !important; color:#ffffff !important; } /* green-900 */
.pf-whiteonpine        { background:#134e4a !important; color:#ffffff !important; } /* teal-900 */
.pf-whiteonaubergine   { background:#4c1d95 !important; color:#ffffff !important; } /* purple deep */
/*.pf-whiteonwine        { background:#7f1d1d !important; color:#ffffff !important; } /* red-900 */
.pf-whiteonwine        { background:#6CC24A !important; color:#111111 !important; } /* red-900 */
.pf-whiteonchocolate   { background:#4e342e !important; color:#ffffff !important; } /* brown */
.pf-whiteoncharcoal    { background:#111827 !important; color:#ffffff !important; } /* slate-900 */
.pf-whiteondeepnavy   { background:#0b132b !important; color:#ffffff !important; }
.pf-whiteonslate950   { background:#0f172a !important; color:#ffffff !important; }
.pf-whiteonspace      { background:#1b263b !important; color:#ffffff !important; }
/*.pf-whiteonprussian   { background:#003049 !important; color:#ffffff !important; }*/
.pf-whiteonprussian   { background:#111111 !important; color:#ffffff !important; }
.pf-whiteonoxford     { background:#1d3557 !important; color:#ffffff !important; }
.pf-whiteonindigo600  { background:#4f46e5 !important; color:#ffffff !important; }
.pf-whiteontealdark   { background:#064e3b !important; color:#ffffff !important; }
.pf-whiteonforestdeep { background:#14532d !important; color:#ffffff !important; }
.pf-whiteoncrimson    { background:#6a040f !important; color:#ffffff !important; }
.pf-whiteongraphite   { background:#2c3e50 !important; color:#ffffff !important; }

/* Light bg + dark text */
.pf-darkonlightgray    { background:#f3f4f6 !important; color:#111111 !important; } /* gray-100 */
.pf-darkonbutter       { background:#fde68a !important; color:#111111 !important; } /* amber-300 */
.pf-emeraldchip        { background:#d1fae5 !important; color:#065f46 !important; } /* emerald-100 / -800 */
.pf-skychip            { background:#e0f2fe !important; color:#0c4a6e !important; } /* sky-100 / -900 */
.pf-lavenderchip       { background:#ede9fe !important; color:#4c1d95 !important; } /* indigo-50 / deep indigo */
.pf-peachchip          { background:#ffedd5 !important; color:#9a3412 !important; } /* orange-100 / -800 */
.pf-rosechip           { background:#ffe4e6 !important; color:#9f1239 !important; } /* rose-50 / -800 */
.pf-limechip           { background:#ecfccb !important; color:#365314 !important; } /* lime-50 / -900 */
.pf-darkonivory       { background:#fffbeb !important; color:#111111 !important; }
.pf-darkonvanilla     { background:#fefce8 !important; color:#111111 !important; }
.pf-darkonporcelain   { background:#f8fafc !important; color:#111111 !important; }
.pf-darkoncloud       { background:#f3f4f6 !important; color:#111111 !important; }
.pf-darkonmist        { background:#e5e7eb !important; color:#111111 !important; }
.pf-darkonpowderblue  { background:#f0f9ff !important; color:#111111 !important; }
.pf-darkonaquawash    { background:#cffafe !important; color:#111111 !important; }
.pf-darkonmintwash    { background:#dcfce7 !important; color:#111111 !important; }
.pf-darkonlimewash    { background:#ecfccb !important; color:#111111 !important; }
.pf-darkonamberwash   { background:#fef3c7 !important; color:#111111 !important; }

/* Dark text on SRU gold */
.sru-darkongold-finder {
  background-color: var(--sru-color-secondary) !important; /* #ffcb0b */
  color: var(--sru-text-dark) !important;                  /* #111111 */
}

/* White text on SRU blue */
.sru-whiteonblue-finder {
  background-color: var(--sru-blue) !important;      /* #2946f3 */
  color: var(--sru-text-light) !important;           /* #ffffff */
}

/* Dark text on light gray (subtle chip) */
.sru-darkonlight-finder {
  background-color: var(--sru-bg-light) !important;  /* #f9f9f9 */
  color: var(--sru-text-dark) !important;            /* #111111 */
}

/* Dark text on accent red (AA) */
.sru-darkonred-finder {
  background-color: var(--sru-color-accent) !important; /* #e63946 */
  color: var(--sru-text-dark) !important;               /* #111111 */
}

.page-item { 
  list-style: none; 
}

/* Hamburger lines: force white */
header .navbar-toggler .navbar-toggler-line {
  background-color: #fff !important; /* or var(--sru-text-light) */
}
