/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "JUST Sans", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background-image: url("../img/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-position 0.5s;
}

@media (max-width: 800px) {
  body {
    background-position: center right -450px;
  }
}

main {
  display: flex;
  flex-grow: 1;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

#links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 20px;
}

#links form,
#links input {
  width: 100%;
}

#links input {
  background-color: #ffffff50;
  color: #fff;
}

#links input::before {
  background-color: #ffffff50;
}

#links input::placeholder {
  color: #fff;
  font-weight: 300;
}

#links input:focus {
  border-color: #ffffff50;
  background-color: #ffffffc9;
  color: #808080;
  box-shadow: 0 0 0 0.25rem rgba(76, 78, 83, 0.25);
}

#links .input {
  position: relative;
}

#links .input::before {
  content: "*";
  position: absolute;
  color: #f00;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: #c7c8bf;
  padding: 30px 0 30px 0;
  font-size: 0.9375rem;
}

.footer-link {
  font-weight: 100;
}

.copy-border {
  border-top: 2px solid #333333;
}

.copy-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Custom Bootstrap Classes
--------------------------------------------------------------*/

/**
* Width and Heigth
*/

/**
* Text
*/

.text-justify {
  text-align: justify;
}

/**
* Background
*/

/**
* Buttons
*/

.btn-golden {
  --bs-btn-color: #fff;
  --bs-btn-bg: #94670a;
  --bs-btn-border-color: #94670a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #694b0e;
  --bs-btn-hover-border-color: #694b0e;
  --bs-btn-focus-shadow-rgb: 105, 75, 14;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #694b0e;
  --bs-btn-active-border-color: #694b0e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #8b7549;
  --bs-btn-disabled-border-color: #8b7549;
}

/**
* Responsive Media Queries
*/

/* xxl */
@media (max-width: 1400px) {
}

/* xl */
@media (max-width: 1200px) {
}

/* lg */
@media (min-width: 992px) {
  .border-lg-0 {
    border: 0 !important;
  }
}

/* sm */
@media (max-width: 556px) {
  .w-sm-100 {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/JUST-Sans-ExBold.woff") format("woff"),
    url("../fonts/JUST-Sans-ExBold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Bold.woff") format("woff"),
    url("../fonts/JUST-Sans-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/JUST-Sans-SemiBold.woff") format("woff"),
    url("../fonts/JUST-Sans-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Medium.woff") format("woff"),
    url("../fonts/JUST-Sans-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Regular.woff") format("woff"),
    url("../fonts/JUST-Sans-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Light.woff") format("woff"),
    url("../fonts/JUST-Sans-Light.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/JUST-Sans-ExLight.woff") format("woff"),
    url("../fonts/JUST-Sans-ExLight.woff2") format("woff2");
}
