* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@400;700&display=swap");

:root {
  --background-color: #f9f9f9;
  --primary-text-color: #303030;
  --primary-blue: #38479c;
  --nav-bar-font-size-desktop: 16px;
  --header-font-size: 72px;
}

body {
  min-height: 100vh;
  background-color: var(--background-color);
  font-family: "Assistant", sans-serif;
}

.content-container {
  min-height: calc(100vh - 72px);
  position: relative;
}

.container {
  width: 90%;
  max-width: 1450px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1024px) {
  .container {
    width: 100%;
  }
}

.blue-button {
  /* existing styles… */
  cursor: pointer;
  display: inline-flex;
  border: none;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background-color: var(--primary-blue);
  width: fit-content;
  height: fit-content;

  /* new: smooth transitions */
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

a.blue-button {
  text-decoration: none;
}

.blue-button:hover {
  /* “lift” the button */
  transform: translateY(-2px);

  /* brighten it slightly */
  filter: brightness(1.1);

  /* add a soft glow/shadow */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blue-button:active {
  /* press-in effect */
  transform: translateY(0);
  filter: brightness(0.9);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blue-button-text {
  color: #fff;

  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.page-header {
  text-align: center;
  font-size: 80px;
  line-height: 90px;
}

.page-header .text-primary {
  color: var(--primary-blue);
  font-weight: 700;
}

/* large tablets / small desktops */
@media (max-width: 1024px) {
  .page-header {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 35px;
  }
}

/* landscape phones / small tablets */
@media (max-width: 768px) {
  .page-header {
    font-size: 48px;
    line-height: 56px;
  }
}

/* portrait phones */
@media (max-width: 575px) {
  .page-header {
    text-align: center;
    font-size: 36px;
    line-height: 44px;
    margin: 30px 0px;
  }

  .blue-button {
    width: fit-content;
    padding: 8px 20px;
  }

  .blue-button-text {
    font-size: 16px;
  }
}

/*---------------------------------------------HELPERS-------------------------------------------------------------------------------*/

.flex-col {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.white-background {
  background-color: white;
}

.black {
  color: black;
}

.no-margin-top {
  margin-top: 0px;
}

.no-margin-bottom {
  margin-bottom: 0px;
}

.margin-bottom-small {
  margin-bottom: 10px;
}
.margin-bottom-medium {
  margin-bottom: 30px;
}
.margin-bottom-large {
  margin-bottom: 60px;
}
.margin-bottom-huge {
  margin-bottom: 100px;
}

.margin-top-small {
  margin-top: 10px;
}
.margin-top-medium {
  margin-top: 30px;
}
.margin-top-large {
  margin-top: 60px;
}
.margin-top-huge {
  margin-top: 100px;
}

.margin-left-small {
  margin-left: 10px;
}
.margin-left-medium {
  margin-left: 30px;
}
.margin-left-large {
  margin-left: 60px;
}
.margin-left-huge {
  margin-left: 100px;
}

.margin-right-small {
  margin-right: 10px;
}
.margin-right-medium {
  margin-right: 30px;
}
.margin-right-large {
  margin-right: 60px;
}
.margin-right-huge {
  margin-right: 100px;
}

.push-left {
  margin-right: auto;
}

.push-right {
  margin-left: auto;
}
.full-width {
  width: 100%;
}

.take-height-of-page {
  min-height: 100vh;
}

.take-height-of-page-hero {
  height: calc(100vh - 72px);
}

html.high-contrast {
  filter: invert(1) hue-rotate(180deg) !important;
}

/* 2. Undo that flip for images, videos & SVGs so they look normal */
html.high-contrast img,
html.high-contrast video,
html.high-contrast svg {
  filter: invert(1) hue-rotate(180deg) !important;
}

body.headers-emphasized h1,
body.headers-emphasized h2,
body.headers-emphasized h3,
body.headers-emphasized h4,
body.headers-emphasized h5,
body.headers-emphasized h6 {
  background-color: yellow !important;
}

body.links-emphasized a {
  background-color: yellow !important;
}

@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;700&display=swap");

.dyslexic-font {
  font-family: "Heebo", sans-serif !important;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
