@charset "UTF-8";

:root {
    --bs-color1-hex: #283D31;
    --bs-color1-rgb: 40, 61, 49;
    --bs-color1-light-hex: #4F6954;
    --bs-color1-light-rgb: 79, 105, 84;
    --bs-color2-hex: #36454F;
    --bs-color2-rgb: 54, 69, 79;
    --bs-color3-hex: #E3E2DF;
    --bs-color3-rgb: 227, 226, 223;

    --bs-gold: #DAA520;
    --bs-white: #FFF;
    --bs-black: #000;
    --bs-black-transparent-1: rgba(0, 0, 0, 0.1);
    --bs-black-transparent-2: rgba(0, 0, 0, 0.15);
}

header.header-section {
  background: linear-gradient(90deg, var(--bs-color1-hex, 1) 0%, var(--bs-color1-light-hex, 1) 100%);
}

header.header-section .title-icon {
  width: 100px; 
  height: 100px;
}

header.header-section h1 {
  font-family: 'helvetica';
  font-size: 5rem;
  color: var(--bs-white, 1);
}

header.header-section h2 {
  font-family: 'Bellefair';
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--bs-gold, 1), var(--bs-white, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 1px 1px 2px var(--bs-black-transparent-1, 1);
}

section.body-section h2 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--bs-color1-light-hex, 1);
}

.section-dark {
  background-color: var(--bs-color2-hex, 1);
}

.section-dark h1 {
  color: var(--bs-white, 1);
  font-size: 2rem;
}

.responsive-section-img {
  object-fit: cover;
  height: 100vh;
}

.section-series {
  .img-quote {
    max-width: 150px;
  }
}

.join-us .card-header {
  background-color: var(--bs-color1-hex, 1);
  height: 65px;
  color: var(--bs-white, 1);
  text-align: center;
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}

.join-us .card-body {
  text-align: center;
  display: flex;
}

@media (max-width: 1124px) {
  header.header-section h1 {
    font-size: 1.5rem;
  }

  header.header-section h2 {
    font-size: 1.0rem;
  }

  header.header-section .title-icon {
    width: 40px; 
    height: 40px;
  }

  section.body-section h2 {
    font-size: 1.5rem;
  }

  .img-quote {
    max-width: 200px;
  }


}

.divider {
  width: 100%;
  height: 0.2rem;
  background-color: var(--bs-black-transparent-1, 1);
  border: solid var(--bs-black-transparent-2, 1);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em var(--bs-black-transparent-1, 1), inset 0 .125em .5em var(--bs-black-transparent-2, 1);
}
