/*fonts */
@font-face {
  font-family: "Baloo 2";
  src: url("/assets/fonts/Baloo2-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Italic";
  src: url("/assets/fonts/Montserrat-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* global variables */
:root {
  --background-color: rgb(80, 101, 62);
  --base-text-color: white;
  --hylight-color: rgb(240, 208, 0);
  --secondary-text-color: rgb(76, 139, 43);
  --bs-link-color: rgb(48, 66, 84);
  --bs-link-hover-color: rgb(30, 50, 70);
}

/* GLOBAL STYLES */
html {
  background-color: white;
}

body {
  padding-top: 56px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 1.5vw, 40px);
  letter-spacing: 0em;
  max-width: 1376px;
  margin: 0 auto;
}

h2 {
  letter-spacing: 0em;
}

a {
  opacity: 0.7;
  text-decoration: none;
}

a:hover {
  opacity: 1;
  text-decoration: none;
}

a.active {
  font-weight: 600;
  opacity: 1;
}

/* bootstrap overriden */
.navbar {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0;
  font-size: 15px;
}

.nav {
  --bs-nav-link-padding-x: 10px;
  --bs-nav-link-padding-y: 10px;
}

/* general padding */
.top-padding {
  padding-top: clamp(5px, 2.5vw, 30px) !important;
}

.bottom-padding {
  padding-bottom: clamp(5px, 2.5vw, 30px) !important;
}

/* general line-spacer */
.line-spacer {
  margin: 0;
  padding: 0;
  width: 100%;
  height: clamp(8px, 2.2vw, 30px);
  line-height: clamp(8px, 2.2vw, 30px);
}

/*pill text */
.pill-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: clamp(5px, 1vw, 15px) clamp(10px, 4vw, 56px);
  border-radius: 9999px;
  background-color: rgb(182, 180, 37);
  /* olive green */
}

.pill-label a {
  opacity: 1;
}

.pill-label span {
  color: var(--base-text-color) !important;
  font-weight: normal !important;
  font-size: clamp(15px, 3vw, 40px);
  text-decoration: underline;
}

/* FOOTER */
.footer {
  background-color: var(--background-color);
  width: 100%;
  font-size: 1em;
  font-weight: 400;
  font-style: normal;
  color: var(--base-text-color);
  text-align: center;
  font-kerning: none;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
}

.footer .brands {
  margin-left: 10px;
  font-size: 2em;
  color: var(--base-text-color);
}