/* ========================================
   Main Styles
   Project: DJjobs.uk
======================================== */

/*----------------------------------------*/
/* FONTS */
/*----------------------------------------*/

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf")
    format("truetype");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf")
    format("truetype");
  font-style: italic;
  font-weight: 200 1000;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf")
    format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}

/* Font-size utilities */
.fs12 {
  font-size: 12px !important;
}

.fs13 {
  font-size: 13px !important;
}


.fs14 {
  font-size: 14px !important;
}

.fs16 {
  font-size: 16px !important;
}

.fs18 {
  font-size: 18px !important;
}

.fs20 {
  font-size: 20px !important;
}

.fs22 {
  font-size: 22px !important;
}

.fs24 {
  font-size: 24px !important;
}

.fs26 {
  font-size: 26px !important;
}

.fs28 {
  font-size: 28px !important;
}

.fs30 {
  font-size: 30px !important;
}

.fs32 {
  font-size: 32px !important;
}

.fs34 {
  font-size: 34px !important;
}

.fs36 {
  font-size: 36px !important;
}

.fs38 {
  font-size: 38px !important;
}

.fs40 {
  font-size: 40px !important;
}


/*----------------------------------------*/
/* ROOT */
/*----------------------------------------*/

:root {
  --dj-site-body: "Outfit", sans-serif;
  --dj-site-heading: "Outfit", sans-serif;
  --dj-site-p: "Outfit", sans-serif;
  --dj-site-outfit: "Outfit", sans-serif;

  --dj-color-orange-primary: #fd4621;
  --dj-color-orange-secondary: #ed2b04;
  --dj-color-red: #ff252b;
  --dj-color-red-two: #ff255b;
  --dj-color-white: #ffffff;
  --dj-color-yellow: #ffe453;
  --dj-color-green: #46e86a;
  --dj-color-black-primary: #111111;
  --dj-color-black-secondary: #1e1e1e;
  --dj-color-surface-secondary: #fbdfd1;
  --dj-color-text-body: #333333;
  --dj-color-gray-primary: #dddddd;
  --dj-color-gray-secondary: #eeeeee;
  --dj-color-gray-tertiary: #8b8b8b;
  --dj-color-page-bg-primary: #fbfbfb;
  --dj-color-page-bg-secondary: #ffffff;
  --dj-color-page-bg-tertiary: #fbdfd1;
  --section-bg-one: #fffbf8; /* LIKE THIS */
  --section-bg-two: #fef5ef; /* LIKE THIS */
  --section-bg-four: #fffaf9; /* LIKE THIS */
  --section-bg-seven: #fcf9f8; /* HERO */
  --section-bg-eight: #fffefd; /* LISTINGS SECTION */ 
  --section-bg-five: #fbfbfb;
  --section-bg-six: #ffffff;
  --section-bg-three: #f2f7f8;
  --section-bg-nine: #fff1e9;
  --section-bg-ten: rgb(251, 246, 244);
  --dj-cta-orange: #fe714a;
  --hiw-bg-one: #fff1e9;
  --dj-color-footer-bg: #020202;
  --dj-color-line: #FFFFFF33;
}


/*----------------------------------------*/
/* BASE/TYPOGRAPHY */
/*----------------------------------------*/

html,
body {
  margin: 0;
  padding: 0;
}

/* Prevent transition/animation flash before initial render settles */
html.is-loading *,
html.is-loading *::before,
html.is-loading *::after {
  transition: none !important;
  animation: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-weight: normal;
  color: var(--dj-color-text-body);
  font-family: var(--dj-site-body);
  background-color: var(--dj-color-page-bg-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a.link-underline {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.3s ease-out;
  color: var(--dj-color-black-primary);
  font-family: var(--dj-site-heading);
}

h1 { font-size: 56px; }
h2 { font-size: 46px; }
h3 { font-size: 34px; }
h4 { font-size: 28px; }
h5 { font-size: 22px; }
h6 { font-size: 18px; }

@media (max-width: 1199.98px) {
  h1 { font-size: 48px; }
  h2 { font-size: 40px; }
  h3 { font-size: 30px; }
}

@media (max-width: 991.98px) {
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  h3 { font-size: 28px; }
}

@media (max-width: 767.98px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
}

@media (max-width: 575.98px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
}

p {
  margin-bottom: 20px;
  font-weight: 300;
  font-family: var(--dj-site-p);
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"] {
  outline: none;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 16px;
  padding-left: 26px;
  padding-right: 26px;
  color: var(--dj-color-black-primary);
  border: 1px solid var(--dj-color-black-primary);
  background-color: var(--dj-color-white);
}

textarea {
  outline: none;
  width: 100%;
  min-height: 140px;
  font-size: 16px;
  line-height: 1.5;
  padding: 16px 26px;
  color: var(--dj-color-black-primary);
  border: 1px solid var(--dj-color-black-primary);
  background-color: var(--dj-color-white);
}

input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="tel"]:focus-visible,
input[type="number"]:focus-visible,
input[type="password"]:focus-visible,
input[type="url"]:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--dj-color-orange-primary);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
textarea:focus {
  border-color: var(--dj-color-orange-primary);
  box-shadow: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
  transition: opacity 0.2s ease;
}

input[type="text"]:focus::placeholder,
input[type="email"]:focus::placeholder,
input[type="tel"]:focus::placeholder,
input[type="number"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="url"]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--dj-color-gray-secondary);
  opacity: 1;
  margin: 0;
}


/*----------------------------------------*/
/* CONTAINERS */
/*----------------------------------------*/

/* Custom container system (independent from Bootstrap .container breakpoints) */
.dj-container {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

.dj-container--1280 {
  max-width: 1280px;
}

.dj-container--1320 {
  max-width: 1320px;
}

.dj-container--1440 {
  max-width: 1440px;
}

@media (min-width: 1400px) {
  .container-1280 {
    max-width: 1304px;
  }

  .container-1320 {
    max-width: 1344px;
  }

  .container-1440 {
    max-width: 1464px;
  }
}


/*----------------------------------------*/
/* UTILITIES */
/*----------------------------------------*/

.fw200 { font-weight: 300 !important; }
.fw300 { font-weight: 300 !important; }
.fw400 { font-weight: 400 !important; }
.fw500 { font-weight: 500 !important; }
.fw600 { font-weight: 600 !important; }
.fw700 { font-weight: 700 !important; }
