/***
  Setup
***/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+15&display=swap');

body {
  background-color: #17132B;
  color: #f8f8f8;
  font-family: 'Outfit';
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  --link-color: #677c9d; /*46bfb7 */
  --primary-color: #EDE5D8;
  --secondary-color: #5f5285;
  --accent-color: #161435;/*#60c6bf;*/
  --accent-color-2: #EDE5D8;

  max-width: 100%;
  margin: 0;
  
  /* --link-color: #677c9d, #EDE5D8, #5f5285, #161435, #EDE5D8; */
  /* border-top: 2px solid gray; */
}

.section {
  max-width: 100%;
  /* width: 95%; */
  margin:0%;
  align-items: center;
}

/* Header image sizing — edit `max-width` to make it smaller/larger */
.header-container img {
  max-width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .header-container img {
    max-width: 80%;
  }
}

.subheading {
  font-family: 'Jersey 15';
  font-size: 6rem;
  letter-spacing: 0.55rem;
  line-height: 1.05;
  padding-top: 0;
  text-transform: uppercase;
}

.subsubheading {
  font-family: 'Jersey 15';
  font-size: 1.35rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.content {
  width: 85%;
  max-width: 1000px;
  padding-bottom: 4em;
  padding-top: 4em;
}

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

.yellow > a {
  color: var(--accent-color-2);
}
.white {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.blue {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.a {
  color: inherit;
}

/***
  Sections
***/


/* set up floating nav bar */
.topbar {
  position: fixed;
  z-index: 1030;
  top: 0;
  width: 100%;
  border-bottom-left-radius: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom-right-radius: 1rem;
  display: flex;
  justify-content: space-around;
  background: var(--accent-color);
  max-height: 7vh;
  align-items: center;
  /*min-height: 7vh;
  min-width: 100vw;
  margin: 0px;
  transition: all 0.2s ease 0s;*/
}

.menu {
  margin: 0;
  padding: 0;
}

.menu > ul {
  gap: 30px;
  margin: 0;
}

.menu > ul > li {
  border-top: none;
  padding-top: 0;
  color: var(--accent-color-2)
}

.menu > ul > li:hover {
  border-top: none;
  color: var(--primary-color)
}

.menu > ul > li > a {
  color: inherit;
}

.home-icon {
  height: 2em;
}

.row  {
  gap: 1.25rem;
  align-items: flex-start;
}


/** setup helpful links **/
.link-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 2rem;
  width: 100%;
  align-items: start;
}

.link-col {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
  /* font-size: 0.8em; */
}

.link-col > a {
  text-decoration: none;
  margin-top: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  color: var(--primary-color);
  border-bottom: 3px solid var(--accent-color);
  word-break: break-word;
}

.link-col > a:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

/** setup schedule **/


.schedule-descrip {
  text-align: justify;
  width: 60%;
  margin: auto;
  margin-bottom: 20px;
}


/** setup instructors **/
.other-img {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.25rem;
}

.other-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instructor-descrip {
  text-align: justify;
  margin-left: 0.25rem;
}

.instructor-text {
  margin: auto;
  padding-bottom: 10px;
  text-align: center;
  padding-right: 5px;
}

.instructor-text > a{
  color: var(--accent-color);
}

/** setup faq **/
.faq {
  width: 70%;
  margin: auto;
  text-align: center;
}

.faq-body {
  text-align: justify;
}


/**** MOBILE ****/

@media (max-width: 600px) {
  .link-container {
    flex-direction: column;
  }

  .link-col {
    margin-bottom: 15px;
  }

  .row {
    flex-direction: column;
  }

  .instructor {
    min-width: 300px;
  }

  .other-img {
    margin: auto;
  }

  .faq {
    width: 100%;
  }
}
