/* -------------------------------------------------------------------------- */
/* COLORS & BREAKPOINTS                                                       */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* FONTS                                                                       */
/* -------------------------------------------------------------------------- */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* -------------------------------------------------------------------------- */
/* SASS TYPOGRAPHY VARIABLES                                                  */
/* -------------------------------------------------------------------------- */
/* Heading multipliers */
/* Line-height defaults */
/* Font stacks */
/* -------------------------------------------------------------------------- */
/* BASE STYLES                                                                */
/* -------------------------------------------------------------------------- */
:root {
  /* Color custom properties */
  --color-primary: #36454F;
  --color-accent: #E4140C;
  --color-primary-dark: #1C1C1C;
  --color-primary-light: #F5F5F5;
  --color-text: #1C1C1C;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  /* Font size multipliers */
  --fs-xs: 0.75;
  --fs-sm: 0.875;
  --fs-base: 1;
  --fs-lg: 1.125;
  --fs-xl: 1.25;
  --fs-2xl: 1.5;
  /* Base font size - responsive */
  font-size: 16px;
}
@media (min-width: 992px) {
  :root {
    font-size: 18px;
  }
}

body {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  font-size: calc(var(--fs-base) * 1rem);
}

/* -------------------------------------------------------------------------- */
/* HEADING STYLES                                                             */
/* -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #36454F;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 {
  font-size: calc(2.5 * 1rem);
  font-weight: 900;
}
@media (max-width: 768px) {
  h1 {
    font-size: calc(1.875 * 1rem);
  }
}

h2 {
  font-size: calc(2 * 1rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  h2 {
    font-size: calc(1.6 * 1rem);
  }
}

h3 {
  font-size: calc(1.5 * 1rem);
  font-weight: 600;
}
@media (max-width: 768px) {
  h3 {
    font-size: calc(1.275 * 1rem);
  }
}

h4 {
  font-size: calc(1.25 * 1rem);
  font-weight: 600;
}

h5 {
  font-size: calc(1.125 * 1rem);
  font-weight: 600;
}

h6 {
  font-size: calc(1 * 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* -------------------------------------------------------------------------- */
/* TEXT UTILITIES                                                             */
/* -------------------------------------------------------------------------- */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.text-accent {
  color: #E4140C;
}

.text-primary {
  color: #36454F;
}

.text-light {
  color: var(--color-text-light);
}

strong,
b {
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/* BUTTON/CTA STYLES                                                          */
/* -------------------------------------------------------------------------- */
.btn-primary {
  background-color: #E4140C;
  color: var(--color-white);
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: calc(var(--fs-lg) * 1rem);
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: rgb(179.55, 15.75, 9.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #36454F;
  border: 2px solid #36454F;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: calc(var(--fs-lg) * 1rem);
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #36454F;
  color: var(--color-white);
}

/* -------------------------------------------------------------------------- */
/* FONT SIZE MIXIN                                                            */
/* -------------------------------------------------------------------------- *//*# sourceMappingURL=main.css.map */