:root {
  --alt-main-color: rgba(42, 61, 68, 1);
  --dark-accent-color: rgba(222, 185, 43, 1);
  --bright-accent-color: rgba(253, 214, 44, 1);
  --tertiary-color: rgba(213, 207, 186, 1);
  --main-text-color: rgba(27, 41, 44, 1);
  --secondary-color: rgba(90, 114, 119, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Buduj Regular", sans-serif;
}

body {
  background-image: url("/assets/img/bg.jpeg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

.bg-filter {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  z-index: -1;
}

.page-content {
  min-height: 65vh;
}

.site-header {
  padding: 10px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  z-index: 4;
}

.header-blured {
  background: rgba(90, 114, 119, 0.2);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 4px 0 #00000040;
  position: absolute;
  top: 0;
}

.logo-link {
  display: block;
}

.site-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0 50px;
  transition: 0.3s;
}

.nav-link {
  text-transform: uppercase;
  color: var(--alt-main-color);
  font-family: "Buduj Semibold", sans-serif;
  font-size: 15px;
}

.nav-link-light {
  color: var(--tertiary-color);
}

.burger {
  width: 24px;
  height: 24px;
  max-height: 24px;
  display: none;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger-line {
  width: 100%;
  height: 4px;
  background-color: var(--alt-main-color);
  border-radius: 1px;
  transition: 0.3s;
}

.burger.is-open .burger-line:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 10px;
}

.burger.is-open .burger-line:nth-child(2) {
  display: none;
}

.burger.is-open .burger-line:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  bottom: 10px;
}

.site-footer {
  background-color: #213134;
  padding: 30px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo-link {
  width: 65px;
  height: 65px;
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-link-big {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Buduj Bold", sans-serif;
  color: var(--tertiary-color);
}

.footer-link-arrow {
  height: 45px;
  width: 45px;
}

.footer-link-icon {
  width: 20px;
  height: 20px;
}

.footer-link-highlight {
  color: var(--dark-accent-color);
}

.footer-link-small {
  display: flex;
  align-items: center;
  gap: 0 15px;
  color: var(--tertiary-color);
  font-size: 15px;
  height: 50px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.footer-social-link {
  width: 30px;
  height: 30px;
  color: var(--tertiary-color);
}

.footer-social-link svg {
  width: 100%;
  height: 100%;
  display: block;
}

.placeholder-page {
  padding: 60px 10vw;
}

.placeholder-title {
  font-size: clamp(2rem, 6vw, 4rem);
  text-transform: uppercase;
  color: var(--main-text-color);
  font-family: "Buduj Black-Height", sans-serif;
  margin-bottom: 18px;
}

.placeholder-text {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--alt-main-color);
  font-family: "Futura Medium", sans-serif;
}

@font-face {
  font-family: "Buduj Regular";
  src: url("../fonts/BudujSansTRIAL-Regular.ttf");
}
@font-face {
  font-family: "Buduj Regular-Height";
  src: url("../fonts/BudujSansTRIAL-RegularHeight.ttf");
}
@font-face {
  font-family: "Buduj Semibold";
  src: url("../fonts/BudujSansTRIAL-Semibold.ttf");
}
@font-face {
  font-family: "Buduj Semibold-Height";
  src: url("../fonts/BudujSansTRIAL-SemiboldHeight.ttf");
}
@font-face {
  font-family: "Buduj Medium";
  src: url("../fonts/BudujSansTRIAL-Medium.ttf");
}
@font-face {
  font-family: "Buduj Medium-Height";
  src: url("../fonts/BudujSansTRIAL-MediumHeight.ttf");
}
@font-face {
  font-family: "Buduj Bold";
  src: url("../fonts/BudujSansTRIAL-Bold.ttf");
}
@font-face {
  font-family: "Buduj Bold-Height";
  src: url("../fonts/BudujSansTRIAL-BoldHeight.ttf");
}
@font-face {
  font-family: "Buduj Black";
  src: url("../fonts/BudujSansTRIAL-Black.ttf");
}
@font-face {
  font-family: "Buduj Black-Height";
  src: url("../fonts/BudujSansTRIAL-BlackHeight.ttf");
}
@font-face {
  font-family: "Futura Light";
  src: url("../fonts/FuturaPT-Light.ttf");
}
@font-face {
  font-family: "Futura Book";
  src: url("../fonts/FuturaPT-Book.ttf");
}
@font-face {
  font-family: "Futura Medium";
  src: url("../fonts/FuturaPT-Medium.ttf");
}
@font-face {
  font-family: "Futura Demi";
  src: url("../fonts/FuturaPT-Demi.ttf");
}
@font-face {
  font-family: "Futura Heavy";
  src: url("../fonts/FuturaPT-Heavy.ttf");
}
@font-face {
  font-family: "Futura Bold";
  src: url("../fonts/FuturaPT-Bold.ttf");
}
@font-face {
  font-family: "Futura ExtraBold";
  src: url("../fonts/FuturaPT-ExtraBold.ttf");
}

@media screen and (max-width: 868px) {
  .main-nav {
    gap: 0 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .site-footer {
    padding: 20px 30px;
  }

  .footer-link-big {
    font-size: 15px;
  }

  .footer-column {
    gap: 10px 0;
  }

  .footer-socials {
    gap: 0 10px;
  }

  .footer-social-link {
    width: 25px;
    height: 25px;
  }

  .footer-link-small {
    height: auto;
  }

  .footer-link-icon {
    width: 15px;
    height: 15px;
  }

  .footer-link-arrow {
    width: 25px;
    height: 25px;
  }

  .footer-logo-link {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 650px) {
  .site-header {
    justify-content: space-between;
    padding: 10px 30px;
  }

  .header-blured {
    padding: 5px 30px;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 50vh;
    background-color: var(--tertiary-color);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    z-index: 4;
  }

  .main-nav .nav-link,
  .main-nav .nav-link-light {
    color: var(--alt-main-color) !important;
  }

  .burger {
    display: flex;
    z-index: 5;
  }

  .site-logo-small {
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 768px) {
  .site-footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
