:root {
  /* fonts */
  --je-title-font: 'Bebas Neue', sans-serif;
  --je-subtitle-font: 'Fira Sans', sans-serif;
  --je-heading-font: 'Bebas Neue', sans-serif;
  --je-body-font: 'Roboto', sans-serif;

  /* colors */
  --je-dark-color: #212121;
  --je-light-color: #deeefb;
  --je-background-color: rgba(250, 250, 250, 0.8);

  /* text styles */
  --je-title-color: var(--je-dark-color);
  --je-font-size: 1.2rem;
  --je-font-weight: 400;
  --je-line-height: 1.5rem;
}

/* Element Styles */
body {
  font-family: var(--je-body-font);
  font-size: var(--je-font-size);
  font-weight: var(--je-font-weight);
  line-height: var(--je-line-height);
  color: var(--je-dark-color);
  background: var(--je-background-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--je-heading-font);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .1rem;
  color: var(--je-title-color);
}

section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

a {
  color: var(--je-theme-500);
}

a:hover {
  color: var(--je-theme-400);
}

.text-shine-gold {
  background-image: linear-gradient(0.35turn, #b79453, #b79453 50%, #fff6a5, #b79453 81.25%, #b79453);
  background-size: 200% 100%;
  background-position: top right;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  transition: all 0.25s ease-in-out;
  animation: animate-text-shine 1.75s infinite linear;
}

@keyframes animate-text-shine {
  0% {
    background-position: top right;
  }

  50% {
    background-position: top right 100%;
  }

  100% {
    background-position: top right 100%;
  }
}

.gold-underline {
  text-decoration: none;
}

.gold-underline:hover,
.gold-underline:active,
.gold-underline:focus {
  text-decoration: underline;
  color: #b79453;
}

.btn-primary {
  --bs-btn-bg: var(--je-theme-600);
  --bs-btn-border-color: var(--je-theme-600);
  --bs-btn-hover-bg: var(--je-theme-700);
  --bs-btn-hover-border-color: var(--je-theme-700);
  --bs-btn-active-bg: var(--je-theme-800);
  --bs-btn-active-border-color: var(--je-theme-800);
}

/* #region Home section */
#home {
  background-image: url(/img/seattle_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  color: var(--je-light-color);
  position: relative;
}

#homeCover {
  position: absolute;
  -webkit-backdrop-filter: brightness(0.35) blur(5px);
  backdrop-filter: brightness(0.35) blur(5px);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainTitle {
  font-family: var(--je-title-font);
  font-size: 5rem;
  line-height: 4rem;
}

.subTitle {
  font-family: var(--je-subtitle-font);
  font-size: 1.28rem;
  line-height: 1.1rem;
  font-weight: 300;
  letter-spacing: .1rem;
  text-transform: uppercase;
}

.mainLogo {
  height: 5.5em;
}

#mainHeader .mainTitle:nth-child(3) span {
  letter-spacing: .1em;
}

/* #endregion Home Section */

/* #region Section Styles */

.section-page:nth-child(odd),
.section-page:nth-child(odd)>.container::after {
  background-color: var(--je-theme-150);
}

.section-page:nth-child(even),
.section-page:nth-child(even)>.container::after {
  background-color: var(--je-theme-100);
}

.section-page {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.section-page>.container::after {
  content: "";
  position: absolute;
  background-color: red;
  height: 3rem;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -3rem;

  /* rounded dividers */
  /* clip-path: ellipse(50% 100% at top center); */
}

.section-page:nth-child(even)>.container::after {
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.section-page:nth-child(odd)>.container::after {
  clip-path: polygon(100% 100%, 100% 0%, 0% 0%);
}

/* #endregion Section Styles */

/* region Footer */
footer.fixed-bottom {
  background-color: var(--je-theme-900);
  z-index: 2;
}

footer .card {
  background-color: var(--je-theme-800);
}

footer i.bi {
  font-size: 2rem;
  transition: color 0.25s;
}

footer i.bi:hover {
  color: var(--je-theme-core);
}

/* #endregion Footer */

/* region -------- MEDIA QUERIES -------- */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .mainTitle {
    font-size: 7rem;
    line-height: 5.5rem;
  }

  .subTitle {
    font-size: 1.7rem;
    line-height: 1.2rem;
    letter-spacing: .18rem;
  }

  .mainLogo {
    height: 7.5em;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}