/* Fonts CSS - Additional font definitions */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Font family definitions */
:root {
  --font-default: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-quicksand: 'Quicksand', sans-serif;
}

/* Base font settings */
body {
  font-family: var(--font-quicksand);
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  color: #666666;
  font-size: 16px;
}

/* Heading font settings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
}

h1 {
  line-height: 40px;
  font-size: 40px;
}

h2 {
  line-height: 36px;
  font-size: 36px;
}

h3 {
  line-height: 27px;
  font-size: 27px;
}

h4 {
  line-height: 20px;
  font-size: 20px;
}

h5 {
  line-height: 18px;
  font-size: 18px;
}

h6 {
  line-height: 14px;
  font-size: 14px;
}

/* Navigation font settings */
nav.navbar ul.nav > li > a {
  font-family: var(--font-quicksand);
  line-height: 28px;
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
  font-size: 16px;
} 