/* ---------------------------- ROOT VARIABLES ---------------------------- */
:root {
  --primary-color: #023047; 
  --navbar-bg: #2387eb;
  --results-color: #023047;
  --page-bg: #FFFFFF;

  --blue-light:#8ECAE6;
  --blue-mid:#219EBC;
  --blue-dark:#023047;
  --orange:#fa8400;
  --cream:#FAF9F6;

  --contrast-bg:#000000;
  --contrast-fg:#FFFF00;
  --dark-stuff: #470202;
  --hero-overlay: rgba(250,249,246,0.8);
  --blue-box: #e0f7fa;
  --second-circle: #8ECAE6;
  --third-circle: #219EBC;
  --quatr-circle: #023047;
  --white-text: #fff;
  --dropdown-menu: #8ECAE6;
  --selected-button: #AAD7EC;
  --creamy-box: #fbfaf8;
  --green: #00bb00;
  --red: #ff0000;
  --white-text-to-black: #fff;
}

/* ---------------------------- GLOBAL STYLE ---------------------------- */
body {
  background-color: var(--page-bg);
  margin: 0;
  padding: 0;
  font-family: 'Righteous', sans-serif;
}

.container {
  background-color: transparent;
}

.navbar-custom {
  background-color: var(--navbar-bg) !important;
}

.nav-link, .dropdown-item, .navbar-brand {
  color: var(--primary-color) !important;
}

.heading, .text {
  color: var(--results-color);
}

/* ---------------------------- RESULTS PAGE STYLE ---------------------------- */
.heading {
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.text {
  font-size: 15px;
  text-align: center;
  margin-top: -20px;
}

/* ---------------------------- DESCRIPTION PAGE STYLE ---------------------------- */
.page-wrapper {
  position: relative;
}

.svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 80%;
  z-index: 5;
  pointer-events: none;
}

.title {
  position: relative;
  margin: 20px 0 20px 70px;
  font-size: 46px;
  color: var(--primary-color);
  text-shadow: 0 1px 3px rgba(0,0,0,0.20);
}

.small-title {
  margin: 5px 0 0px 0;
  font-size: 36px;
  color: var(--primary-color);
  text-shadow: 0 1px 3px rgba(0,0,0,0.20);
}

.body-text {
  font-family: 'Proxima Nova', system-ui;
  font-weight: 600;
  font-size: 19px;
  color: var(--primary-color);
  line-height: 1.2;
  text-align: justify;
}

.body-text2 {
  font-family: 'Proxima Nova', system-ui;
  font-weight: 600;
  font-size: 22px;
  margin-top: 10px;
  color: var(--primary-color);
  line-height: 1.2;
  text-align: center;
}

.reference-card {
    background-color: var(--blue-box);
    border-radius: 12px;
    padding: 1rem;
    margin-left: 72px;
    margin-top: 100px;
    max-width: 1162px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(2, 48, 71, 0.15);
    transition: box-shadow 0.3s ease;
  }

  .reference-card:hover {
    box-shadow: 0 6px 10px rgba(2, 48, 71, 0.3);
  }

  .reference-header {
    font-family: 'Righteous', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
  }

.reference-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  transition: max-height 0.5s ease, padding 0.3s ease;
  font-family: 'Proxima Nova', system-ui;
  font-weight: 450;
  font-size: 20px;
  color: var(--primary-color);
  line-height: 1.6rem;
}
  .reference-content.open {
    max-height: 10500px;
    padding-top: 0.5rem;
  }

/* ---------------------------- PHOTO AND BLUE BOXES ---------------------------- */
.photo-blue-container {
  display: flex;
  align-items: flex-start;
  margin-left: 150px;
  margin-bottom: 30px;
  gap: 30px;
}

.photo-placeholder {
  width: 330px;
  height: 345px;
  background-image: url("https://static.igem.wiki/teams/5728/illustrations/frame.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
  flex-shrink: 0;
  margin-left: -30px;
}

.blue-blocks-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.blue-box, .blue-box-2 {
  background-color:  var(--blue-box);
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(2,48,71,0.15);
  padding: 10px 20px;
  color: var(--primary-color);
  text-align: left;
  transition: box-shadow 0.3s ease;
  cursor: default;
}

.blue-box:hover, .blue-box-2:hover {
  box-shadow: 0 6px 10px rgba(2,48,71,0.3);
}

/* ---------------------------- TIMELINE ---------------------------- */ 
.timeline {
  display: flex;
  align-items: flex-start;
  margin-left: 70px;
  gap: 20px;
  position: relative;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  margin-top: 8px;
  transform: translateX(-50%);
  height: var(--line-height, 50px);
  border-left: 3.5px dashed var(--primary-color);
}
/* ---------------------------- IMAGE ROW ---------------------------- */
.image-row {
  display: flex;
  gap: 60px;
  margin-left: 125px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.placeholder-image {
  width: 330px;
  height: 280px;
  background-color: var(--primary-color);
  border: 4px solid var(--primary-color);
  border-radius: 32px;
  flex-shrink: 0;
}

.image-with-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-caption {
  font-size: 28px;
  color: var(--primary-color);
  text-align: center;
}

.treatment-title {
  font-size: 30px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 15px;
  margin-bottom: 8px;
}

/* ---------------------------- CHECKLIST ---------------------------- */
.checklist {
  list-style: none;
  padding-left: 0;
  margin-left: 90px;
  margin-top: 20px;
}

.checklist li {
  font-family: 'Proxima Nova', system-ui;
  font-weight: 400;
  font-size: 20px;
  color: var(--primary-color);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 14px;
  padding-left: 40px;
  background: url("https://static.igem.wiki/teams/5728/illustrations/checkmark.webp") no-repeat left center;
  background-size: 32px 32px; 
  margin-right: 200px;
}

/* ---------------------------- HERO SECTION ---------------------------- */
.bg-hero {
  position: relative;
  min-height: 45vh;
  background-color: transparent;
  background-image: linear-gradient(var(--hero-overlay), var(--hero-overlay)), var(--hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-title {
  position: relative;
  z-index: 10;
  font-size: clamp(3rem, 6vw, 4.5rem); 
  color: var(--orange);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.20);
}

.bg-hero svg.hero-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
  display: block;
  fill: var(--page-bg);
  z-index: 1;
}

.bg-hero > * {
  position: relative;
  z-index: 5;
}

/* ---------------------------- FOOTER ---------------------------- */
.footer-custom {
  background-color: var(--cream);
  color: var(--dark-stuff);
  font-family: 'Righteous', sans-serif;
}

.footer-custom a {
  color: var(--dark-stuff);
  text-decoration: none;
  font-weight: normal;
}

.footer-custom a:hover {
  color: #FFB703;
  text-decoration: underline;
}

.footer-icon {
  color: var(--blue-mid);
  margin-right: 8px;
}

.footer-logo {
  height: auto;
  max-height: 150px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .footer-logo-container {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }

  .footer-logo {
    margin-right: 0 !important;
    margin-bottom: 16px;
  }

  .footer-description {
    margin-top: 0 !important;
  }

  .footer-social h4 {
    text-align: center;
  }

  .footer-social ul {
    justify-content: center;
  }
}

/* ---------------------------- PUBLIC ENGAGEMENT: ---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

  .pe-scope{
    --c-ink: var(--primary-color);
    --max-measure:90ch;
    --lh:1.65;
    --space: clamp(.6rem, .4rem + 1vw, 1rem);
    --radius: .9rem;
    --wheel-logo-h: clamp(34px, 4.5vw, 60px);
    --bubble-shadow: 0 10px 24px rgba(2,48,71,.18);
  }
  .pe-scope .pe-measure{
    max-width: var(--max-measure);
    margin-left: auto;
    margin-right: auto;
  }
  .pe-scope p, .pe-scope li{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--c-ink);
    font-weight: 400;
    font-size: clamp(1.05rem, .9rem + .6vw, 1.22rem);
    line-height: var(--lh);
    letter-spacing: 0;
  }
  .pe-scope .prose-lg p + p { margin-top: .8em; }
  .pe-scope .prose-lg strong{ font-weight: 700; font-synthesis: weight;}
  .pe-scope h1, .pe-scope h2, .pe-scope h3, .pe-scope h4, .pe-scope h5, .pe-scope h6,
  .pe-scope .hero-title {
    font-family: 'Righteous', system-ui, sans-serif;
    color: var(--c-ink) !important;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 1.2;
    margin: 0 0 .4em;
  }
  .pe-scope h1{ font-size: clamp(2rem, 1.3rem + 2.2vw, 3rem); }
  .pe-scope h2{ font-size: clamp(1.4rem, 1.1rem + 1.3vw, 2rem); }
  .pe-scope h3{ font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem); }
  .pe-scope .lead { font-size: clamp(1.15rem, 1rem + .8vw, 1.35rem); color: var(--c-ink); }
  .pe-scope a{ color: var(--c-brand); text-decoration-thickness: .1em; text-underline-offset: .18em; }
  .pe-scope a:hover{ text-decoration-thickness: .16em; }
  .pe-scope .stat-card {
    border: 1px solid rgba(2,48,71,.08);
    box-shadow: 0 8px 24px rgba(2,48,71,.07);
    background: var(--blue-box);
    border-radius: var(--radius);
  }

  .pe-scope .full-bleed {
    position: relative;
    left: 50%; right: 50%;
    margin-left: -50vw; margin-right: -50vw;
    width: 100vw; max-width: 100vw;
  }

  .pe-scope .logo-wheel {
    overflow: hidden; width: 100%;
    background: linear-gradient(0deg, rgba(2,48,71,.03), rgba(2,48,71,.03));
    border-top: 1px solid rgba(2,48,71,.08);
    border-bottom: 1px solid rgba(2,48,71,.08);
    padding-block: clamp(10px, 1.5vw, 18px);
  }
  .pe-scope .logo-wheel-inner { display: flex; justify-content: center; }
  .pe-scope .logo-track{ display: flex; width: max-content; animation: marquee 28s linear infinite; }
  .pe-scope .logo-track.is-rightward{ animation-direction: reverse; }
  .pe-scope .logo-seq{
    display: flex; align-items: center;
    gap: clamp(1.25rem, 3vw, 3rem);
    padding-inline: clamp(1rem, 3vw, 2rem);
  }
  .pe-scope .logo-wheel .logo{
    height: var(--wheel-logo-h);
    width: auto; object-fit: contain;
    filter: saturate(.95) contrast(1.05); opacity:.95; flex:0 0 auto;
  }
  @keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
  @media (prefers-reduced-motion: reduce) { .pe-scope .logo-track { animation: none; } }

  .pe-scope .bubble{
    width: clamp(160px, 18vw, 240px);
    height: clamp(160px, 18vw, 240px);
    border-radius: 50%;
    display:flex; align-items:center; justify-content:center; text-align:center;
    position:relative; overflow:hidden; box-shadow: var(--bubble-shadow);
    padding: 1rem; isolation:isolate;
  }
  .pe-scope .bubble > div { max-width: 90%; }
  .pe-scope .bubble h4{
    font-family: 'Righteous', system-ui, sans-serif;
    font-size: clamp(1.2rem, 0.9rem + 1vw, 1.7rem);
    line-height: 1.2; margin: 0 0 .25rem;
    word-break: break-word; overflow-wrap: anywhere;
    color:#023047;
  }
  .pe-scope .bubble p{
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.1rem);
    line-height: 1.35; margin: 0;
    word-break: break-word; overflow-wrap: anywhere;
    color: var(--c-ink);
  }
  .pe-scope .bg-bw { background: var(--blue-box); color:#023047; }
  .pe-scope .bg-lt { background: var(--second-circle); color:#023047; }
  .pe-scope .bg-md { background:var(--third-circle); color:#FFFFFF; }
  .pe-scope .bg-dk { background:var(--quatr-circle); color:#FFFFFF; }

  .pe-scope .bubble::after{
    content:""; position:absolute; inset:-10%;
    background-image: var(--logo); background-repeat:no-repeat; background-position:center; background-size: 70%;
    opacity:.12; filter: grayscale(1) contrast(1.1) brightness(1.1); mix-blend-mode: soft-light; z-index:1; transform: rotate(-10deg);
  }

  .pe-scope .alt-bubbles-wrap { position: relative; }
  .pe-scope .alt-bubbles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, minmax(120px, 1fr));
    min-height: 100vh;
    align-items: center;
  }
  .pe-scope .alt-cell { display:flex; padding-block: clamp(8px, 1.5vh, 16px); }
  .pe-scope .alt-cell.left  { justify-content: flex-start; padding-right: 6vw; }
  .pe-scope .alt-cell.right { justify-content: flex-end;   padding-left:  6vw; }

  .pe-scope .bubble-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
  .pe-scope .reveal-path {
    fill: none;
    stroke: var(--line, --primary-color);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 4 10;
    stroke-dashoffset: 120;
    opacity: 0;
    transition: stroke-dashoffset 1.1s ease-out, opacity .35s ease-out;
  }
  .pe-scope .reveal-path.delay-1 { transition-delay: .1s; }
  .pe-scope .reveal-path.delay-2 { transition-delay: .25s; }
  .pe-scope .reveal-path.delay-3 { transition-delay: .4s; }
  .pe-scope .bubble-lines.in-view .reveal-path { stroke-dashoffset: 0; opacity: 1; }

  .pe-scope .quote-card{
    background: var(--blue-box);
    border:1px dashed rgba(2,48,71,.18);
    border-radius:var(--radius);
    padding:1.25rem 1.25rem;
  }
  .pe-scope .quote-card p{
    font-family: Inter, system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(1.1rem, 0.9rem + 1vw, 1.5rem);
    color:var(--c-ink);
    margin:0;
    line-height: var(--lh);
  }

  .pe-scope #industry-bubble h4, 
  .pe-scope #industry-bubble p{
    color:var(--white-text) !important;
    white-space: normal; overflow-wrap: anywhere;
  }

  .pe-scope .stack > * + *{ margin-top: var(--space); }

  @media (max-width: 1200px){
    .pe-scope .pe-measure { padding-inline: 1rem; }
  }
  @media (max-width: 992px){
    .pe-scope .alt-bubbles { grid-template-columns: 1fr; grid-template-rows: none; row-gap: 2rem; min-height: auto; }
    .pe-scope .alt-cell { justify-content: center !important; padding: 0; }
  }

/* ---------------------------- MEMBERS: ---------------------------- */
  .team-heading {
  font-family: 'Righteous', sans-serif;
  text-align: center;
  color: var(--orange);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin: 2rem 0;
}
.group-heading {
  font-family: 'Righteous', sans-serif;
  font-size: 1.65rem;
  color: var(--primary-color);
  margin: 3rem 0 1.5rem;
}
.group-icon {
  color: var(--primary-color);
  margin-right: .5rem;
}
.card-box {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--white-box);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .10);
  transition: transform .3s ease;
}
.card-box.member {
  will-change: transform;
}
.card-box:hover {
  transform: translateY(-6px);
}
.card-front {
  font-family: 'Righteous', sans-serif;
  color: var(--primary-color);
  text-align: center;
  padding: 1.75rem 1.5rem 2.5rem;
}
.card-front img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 1rem;
  margin: 0 auto 1rem;
  display: block;
}
.card-front h5 {
  color: var(--orange);
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.card-front p.role {
  margin: .25rem 0 0;
  font-weight: 600;
}
.card-front p.studies {
  margin: .15rem 0 0;
  font-style: italic;
  font-weight: 400;
  color: var(--primary-color);
}
.card-back {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translateY(100%);
  padding: 1.5rem;
  font-family: 'Righteous', sans-serif;
  color: var(--primary-color);
  background: var(--page-bg);
  transition: transform 0.35s ease;
}
.card-box.member:hover .card-back {
  transform: translateY(0%);
}
.card-back h6 {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}
.card-back p {
  margin: .25rem 0 .6rem;
}

@media (hover:none) {
  .card-box.member:active .card-back {
    transform: translateY(0%);
  }
}

/* ---------------------------- NAVIGATION BAR: ---------------------------- */
  .navbar-custom {
    background-color: var(--cream) !important;
  }
  .navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(2,48,71)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .navbar-custom .navbar-toggler:hover .navbar-toggler-icon,
  .navbar-custom .navbar-toggler:focus .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255,183,3)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
.dropdown-menu {
  background-color: var(--dropdown-menu);
  display: none;
  position: absolute;
  top: 100%;
  z-index: 1000;
  min-width: 12rem;
  padding: .5rem 0;
  margin: 0;
  font-size: 1rem;
  text-align: center;
  list-style: none;
  border: 2px solid var(--white-text);
  border-radius: .5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  padding: .5rem 1rem;
  font-family: 'Righteous', sans-serif;
  color: var(--primary-color) !important;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: var(--selected-button);
  color: var(--primary-color) !important;
}
  .navbar-brand {
    font-family: 'Righteous', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
  }
  .navbar-brand img {
    height: 60px;
    margin-right: 12px;
  }
  .nav-link,
  .dropdown-item {
    font-family: 'Righteous', sans-serif;
    color: var(--primary-color) !important;
    font-weight: normal;
  }
  .nav-link { text-align: center; }

  .dropdown-icon {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  .me-2 { margin-right: 0.5rem !important; }
  .dropdown-toggle::after { display: none !important; }

  .nav-link:hover {
    background-color: var(--selected-button);
    border-radius: .25rem;
    transition: background-color .15s ease-in;
  }

  @media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .nav-link {
      text-decoration: underline;
    }
    .dropdown-menu { display: none; }
    .navbar-nav .dropdown:hover .dropdown-menu {
      display: block;
    }
    .navbar-nav .dropdown .dropdown-menu {
      left: 50% !important;
      transform: translateX(-50%);
      right: auto;
    }
  }

/* ---------------------------- HOME PAGE: ---------------------------- */
.mainHeader {
  font-size: 125px;
  color: var(--orange);
  position: absolute;
  top: 175px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.smallText{
  font-size: 27px;
  color: var(--primary-color);
  font-family: 'Proxima Nova', system-ui;
  font-weight: 625;
  position: absolute;
  top: 325px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.navbar-custom {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.left-bold-text{
  font-size: 32px;
  color: var(--primary-color);
}
.left-bold-blue-text{
  font-size: 64px;
  color: var(--blue-mid);
}
.creamy-back{
  background-color: var(--creamy-box);
}
.left-usual-text{
  color: var(--primary-color);
}

/* ---------------------------- Protocol PDF: ---------------------------- */
.pdf-viewer {
  width: 800px;
  height: 600px;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
   margin: 0;
  height: 90vh;
  display: flex;
  flex-direction: flex-end;
  justify-content: right;
  align-items: center;
  background-color: #f9f9f9;
  color: #333;
  position:relative; 
  left:255px;
  
}
/* ---------------------------- SpiderCow ---------------------------- */
.spidercow {
  list-style: none;
  padding-left: 0;
  margin-left: 90px;
  margin-top: 20px;
}

.spidercow li {
  font-family: 'Proxima Nova', system-ui;
  font-weight: 400;
  font-size: 20px;
  color: var(--primary-color);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 14px;
  padding-left: 40px;        
  background: url("https://static.igem.wiki/teams/5728/illustrations/spidercow-7009.webp") no-repeat left center;
  background-size: 32px 32px; 
  margin-right: 200px;}
/* ---------------------------- PROJECT DESIGN PAGE: ---------------------------- */
.body-text-design {
  font-family: 'Proxima Nova', system-ui;
  font-size: 18px;
  line-height: 1.4;
  text-align: justify;
  text-justify: inter-word;
  color: var(--primary-color);
}
.white-box{
  background-color:var(--creamy-box);
}
.stuff-mini-titile{
  color:var(--primary-color);
}
.g{
  color: var(--orange);
}
.t{
  color: var(--primary-color);
}
.a{
  color: var(--green);
}
.c{
  color: var(--red);
}
/* ---------------------------- COLLABORATIONS: ---------------------------- */
.collab-button{
  background-color: var(--orange); 
  color: var(--white-text-to-black);
}
/* ---------------------------- HP PAGE: ---------------------------- */
.head{
  color: var(--primary-color);
}
.subhead{
  color: var(--primary-color);
}
.hp-link{
  color: var(--primary-color);
}
/* ---------------------------- EDUCATION PAGE: ---------------------------- */
.stat{
  background-color: var(--orange); 
  color: var(--white-text-to-black);
}
/* ---------------------------- PARTS PAGE: ---------------------------- */
tr{
  color: var(--primary-color);
}
.btn-primary{
  color: var(--white-text-to-black);
  background-color: var(--orange);
}