/* Local Fonts CSS - All fonts hosted locally */

/* Inter Font Family - Downloaded TTF Files */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/Inter-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Inter-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Inter-ExtraBold.ttf') format('truetype');
}

/* Pacifico Font Family - Downloaded TTF File */
@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Pacifico-Regular.ttf') format('truetype');
}

/* Font Awesome 6 - Complete Local Implementation */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../css/fontawesome/webfonts/fa-solid-900.woff2") format("woff2"),
       url("../css/fontawesome/webfonts/fa-solid-900.woff") format("woff");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../css/fontawesome/webfonts/fa-regular-400.woff2") format("woff2"),
       url("../css/fontawesome/webfonts/fa-regular-400.woff") format("woff");
}

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Font weights */
.fas { 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
}
.far { 
  font-family: "Font Awesome 6 Free";
  font-weight: 400; 
}
.fal { 
  font-family: "Font Awesome 6 Free";
  font-weight: 300; 
}
.fad { 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
}
.fab { 
  font-family: "Font Awesome 6 Brands";
  font-weight: 400; 
}
