@import url("tokens.css");

/* // Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// 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) { ... } */

html {
  font-size: 16px;
}

body {
  font-family: "Open Sans", var(--bs-body-font-family);
  font-size: 14px;

  @media (min-width: 768px) {
    font-size: 1rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Questrial", "Open Sans", var(--bs-body-font-family);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  padding-top: 4px;
  font-weight: 500;

  @media (min-width: 768px) {
    margin-bottom: 8px;
    padding-top: 8px;
    letter-spacing: 1px;
  }
}

h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  @media (min-width: 768px) {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
  }
}

h3 {
  font-size: 20px;
  line-height: 28px;

  @media (min-width: 768px) {
    font-size: 26px;
    line-height: 32px;
  }
}

h4 {
  font-size: 16px;
  line-height: 24px;
  /* margin-bottom: 4px; */

  @media (min-width: 768px) {
    font-size: 20px;
    line-height: 28px;
  }
}

h5 {
  font-size: 14px;
  line-height: 20px;
  /* margin-bottom: 4px; */

  @media (min-width: 768px) {
    font-size: 16px;
    line-height: 24px;
  }
}

.page-section-block {
  padding: 2rem 0;

  @media (min-width: 768px) {
    padding: 3rem 0;
  }
}

.page-section-block.page-section-bg-gray {
  background-color: var(--colors-gray-50);
}

.page-section-block.page-section-bg-blue {
  background-color: var(--colors-blue-800);
  color: white;
}

.page-section-header {
  border-bottom: 1px solid;
  padding-top: 0;
  padding-bottom: 8px;
  margin-bottom: 24px;
}

/* GlobalNav styles ============================================================= */
nav#global-nav {
  font-family: "Questrial", "Open Sans", var(--bs-body-font-family);
  font-size: 18px;

  .nav-link {
    line-height: 24px;
  }

  .dropdown-menu {
    border-width: 0px;

    @media (min-width: 768px) {
      border-width: 1px;
    }
  }

  .kicksite-log-in {
    line-height: 40px;
  }
}

/* Banner styles ============================================================= */
.banner-container {
  height: 200px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;

  @media (min-width: 576px) {
    height: 300px;
  }

  @media (min-width: 768px) {
    height: 350px;
  }

  @media (min-width: 992px) {
    height: 400px;
  }

  @media (min-width: 1200px) {
    height: 800px;
    background-attachment: fixed;
    background-size: auto auto;
  }

  @media (min-width: 1400px) {
  }
}

.banner-container-overlay {
  background-color: var(--colors-blackAlpha-200);
  height: 100%;
}

/* Footer styles ============================================================= */
footer#global-footer {
  font-family: "Questrial", "Open Sans", var(--bs-body-font-family);
  background-color: var(--colors-flagred-800);
  color: white;

  #global-footer-top {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;

    @media (min-width: 768px) {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
  }

  a {
    text-decoration: none;
    color: white;
  }

  a:hover {
    text-decoration: underline;
  }

  #global-footer-socials {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 16px;

    a {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      fill: white;
    }

    a:hover {
      background-color: white;
      border-radius: 100%;
      fill: var(--colors-flagred-600);
    }

    a:active {
      fill: var(--colors-flagred-700);
    }

    .social-icon {
      width: 28px;

      @media (min-width: 768px) {
        width: 32px;
      }
    }
  }

  #global-footer-bottom {
    background-color: var(--colors-flagred-600);
  }

  .related {
    width: fit-content;
  }
}

/* Other ============================================================= */
/* Color palettes */
.palette {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.palette-sample {
  height: 48px;
  width: 48px;
  border-radius: 8px;
}

#fitnessMoreTrigger[data-bs-toggle="collapse"][aria-expanded="false"]
  .if-not-collapsed {
  display: none;
}

#fitnessMoreTrigger[data-bs-toggle="collapse"][aria-expanded="false"]
  .if-collapsed {
  display: inline;
}

#fitnessMoreTrigger[data-bs-toggle="collapse"][aria-expanded="true"]
  .if-collapsed {
  display: none;
}

#kidsMoreTrigger[data-bs-toggle="collapse"][aria-expanded="false"]
  .if-not-collapsed {
  display: none;
}

#kidsMoreTrigger[data-bs-toggle="collapse"][aria-expanded="false"]
  .if-collapsed {
  display: inline;
}

#kidsMoreTrigger[data-bs-toggle="collapse"][aria-expanded="true"]
  .if-collapsed {
  display: none;
}

button.btn {
  padding: 0.25rem 0.5rem;
  font-size: 14px;

  @media (min-width: 768px) {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
  }
}

/* button.btn-primary {
  background-color: var(--colors-blue-600);
} */

.wesley-photo {
  width: 75%;
  @media (min-width: 768px) {
    width: 100%;
  }
  @media (min-width: 992px) {
    width: 85%;
  }
  @media (min-width: 1200px) {
    width: 65%;
  }

  @media (min-width: 1400px) {
  }
}

.instructor-photos {
  width: 75%;
  margin-top: 16px;
  margin-bottom: 16px;

  /* @media (min-width: 992px) {
    width: 85%;
  } */
}

.instructor-blockquote {
  font-size: 16px;
  line-height: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding-inline: 24px;

  @media (min-width: 768px) {
    font-size: 20px;
    line-height: 32px;
  }
}

.hapkido-program-img-col img {
  width: 90%;

  @media (min-width: 768px) {
    width: 100%;
  }

  @media (min-width: 992px) {
    width: 90%;
  }

  @media (min-width: 1200px) {
    width: 80%;
  }
}
