@import url("https://use.typekit.net/zgd7txl.css");

:root {
  --color-grey: #888888;
  --color-grey-light: #BCBEC0;
  --color-red: #E33C29;
  --color-teal: #00A9A1;
  --color-teal-dark: #007B7A;
  --color-cream: #F1EADB;

  --bs-body-color: black;

  --font-primary: 'proxima-nova', sans-serif;
  --font-secondary: 'interstate', sans-serif;

}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;

}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  overflow-x: hidden;
}

#tinymce {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

/* 2xl - Typography in Figma */ 
h1, .h1 {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;

  @media (min-width: 768px) {
    font-size: 40px;
  }
  @media (min-width: 1440px) {
    font-size: 48px;
  }
}

/* xl - Typography in Figma */
h2, .h2 { 
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 16px;

  @media (min-width: 768px) {
    margin-bottom: 24px;
  }
}

/* lg - Typography in Figma */
h3 { 
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 16px;
  
  @media (min-width: 768px) {
    margin-bottom: 24px;
  }
}

/* md - Typography in Figma */
.h4, h4 {
  font-family: var(--font-primary);
  font-weight: normal;
  font-size: calc(1.275rem + .3vw);
  margin-bottom: .5rem;
}

/* sm - Typography in Figma */
h5 {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
}

/* xs - Typography in Figma */
h6, .text-xxs {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p {
  margin-bottom: 1.5rem;
}

ul,ol {
  margin-bottom: 1.5rem;
}

a {
  color: black;
  text-decoration: underline;
}

.text-2xl {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-secondary);
}
