:root {
  /* Colors */
  --light-grey: #dddfe5;
  --white: #f9fafb;
  --grey-select-8: #b4b5b814;
  --black: #242424;
  --grey-additional: #b4b5b8;
  --orange: #f2561d;
  
  /* Typography */
  --font-family: "Instrument Sans";
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  overflow-y: auto;
}

a {
  text-decoration: none;
}

/* buttons */

a.primary-button {
  padding: 20px 40px;
  border-radius: 50px;
  background: var(--orange, #f2561d);
  text-decoration: none;
  text-align: center;
}

a.primary-button .button-text {
  color: #f0f4f5;
  font-size: 22px;
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.44px;
}

a.secondary-button {
  padding: 20px 40px;
  border-radius: 50px;
  border: 1.6px solid #b4b5b8;
  text-decoration: none;
}

a.secondary-button .button-text {
  color: #323232;
  font-size: 22px;
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.44px;
}

a.secondary-white-button {
  padding: 20px 40px;
  border-radius: 50px;
  border: 1.6px solid var(--white, #f9fafb);
  text-decoration: none;
}

a.secondary-white-button .button-text {
  color: var(--white, #f9fafb);
  font-size: 22px;
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.44px;
}

a.black-button {
  border-radius: 24px;
  background: #212121;
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  padding: 16px 32px;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

a.black-button .button-text {
  color: #f9fafb;
  font-size: 20px;
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 420;
  line-height: 140%;
  letter-spacing: -0.4px;
}

a.white-button {
  border-radius: 24px;
  border: 1px solid #b4b5b814;
  background: #b4b5b814;
  display: inline-flex;
  padding: 16px 32px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

a.white-button .button-text {
  color: var(--black, #242424);
  font-size: 20px;
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 420;
  line-height: 140%;
  letter-spacing: -0.4px;
}

/* header */
.header {
  position: fixed;
  font-family: var(--font-family);
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--light-grey);
  background: var(--white);
  backdrop-filter: blur(5px);
  width: 100%;
}

.header .nav-bar {
  display: flex;
  gap: 90px;
  align-items: center;
  width: 100%;
  padding: 24px;
}

.header .nav-bar .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .nav-bar .logo img {
  width: 160px;
  height: 35px;
}

.header .nav-bar .nav-links-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header .nav-bar .nav-links-buttons .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
}

.header .nav-bar .nav-links-buttons .nav-links a.nav-link {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.4px;
  text-decoration: none;
}

.header .nav-bar .nav-links-buttons .nav-links .link-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header .nav-bar .nav-links-buttons .nav-link:has(span.link-text1) {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 28px;
  gap: 4px;
}

.header .nav-bar .nav-links-buttons .nav-links .coming-soon {
  color: var(--grey-additional);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.3px;
}

.header .nav-bar .nav-links-buttons .nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.header .nav-bar .nav-links-buttons .nav-buttons a.button-with-icon {
  text-decoration: none;
  color: #333;
  border-radius: 12px;
  border: 1px solid #b4b5b814;
background: #b4b5b814;
  display: inline-flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.header
  .nav-bar
  .nav-links-buttons
  .nav-buttons
  a.button-with-icon
  .arrow-right {
  width: 16px;
  height: 16px;
  color: var(--black);
}

.header
  .nav-bar
  .nav-links-buttons
  .nav-buttons
  a.button-with-icon
  .button-text {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.4px;
}

/* mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  position: relative;
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #242424;
  transition: all 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* menu animation */
.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* inside container */
.inside-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin: 0 auto;
  width: 100%;
  max-width: 1210px;
  /* na velikom ekranu je 400px */
}

/* footer */

.footer {
  border-top: 1px solid #dddfe5;
  background: linear-gradient(
      0deg,
      rgba(221, 223, 229, 0.08) 0%,
      rgba(221, 223, 229, 0.08) 100%
    ),
    #f9fafb;
}

.footer-container {
  padding: 160px 80px;
  display: flex;
  justify-content: space-between;
}

.footer-container .columns-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 950px;
}

.footer-container .columns-wrapper .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 312px;
}

.footer-container .columns-wrapper .footer-column .column-title {
  color: #dddfe5;
  font-family: "Instrument Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 475;
  line-height: 140%;
  letter-spacing: -0.48px;
}

.footer-container .columns-wrapper .footer-column .column-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
}

.footer-container .columns-wrapper .footer-column .column-links a.column-link {
  color: #707274;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 420;
  line-height: 140%;
}

.footer-container .columns-wrapper .footer-column .column-links.legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 166px;
}

.footer-container
  .columns-wrapper
  .footer-column
  .column-links.legal
  .upper-section,
.footer-container
  .columns-wrapper
  .footer-column
  .column-links.legal
  .lower-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

/* tablet breakpoint */
@media (min-width: 431px) and (max-width: 768px) {
  .inside-container {
    padding-inline: 32px;
  }

  .hero-content .hero-text h1.hero-title {
    font-size: 54px;
  }


  .mobile-menu-toggle {
    display: block;
  }

  .header,
  .nav-bar {
    justify-content: space-between;
  }

  .header .nav-bar .nav-links-buttons {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .header .nav-bar .nav-links-buttons.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 650px;
  }

  .header .nav-bar .nav-links-buttons .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .header .nav-bar .nav-links-buttons .nav-links a.nav-link {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    height: 100%;
  }

  .header .nav-bar .nav-links-buttons .nav-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .header .nav-bar .nav-links-buttons .nav-buttons a.button-with-icon {
    width: 80%;
    margin: 0.5rem 0;
    justify-content: center;
  }

  .footer .footer-container {
    padding: 80px 0;
    gap: 40px;
    flex-direction: column;
    align-items: center;
  }

  .footer .footer-container .columns-wrapper .footer-column,
  .footer-container .columns-wrapper .footer-column .column-links,
  .footer-container .columns-wrapper .footer-column .column-links.legal   {
    align-items: center;
  }  

  .footer .footer-container .columns-wrapper .footer-column .column-links.legal {
    gap: 30px;
  }

}

/* mobile breakpoint */
@media (max-width: 430px) {
  .mobile-menu-toggle {
    display: block;
  }

  .header,
  .nav-bar {
    justify-content: space-between;
  }

  .header .nav-bar .nav-links-buttons {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .header .nav-bar .nav-links-buttons.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 650px;
  }

  .header .nav-bar .nav-links-buttons .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .header .nav-bar .nav-links-buttons .nav-links a.nav-link {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    height: 100%;
  }

  .header .nav-bar .nav-links-buttons .nav-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .header .nav-bar .nav-links-buttons .nav-buttons a.button-with-icon {
    width: 80%;
    margin: 0.5rem 0;
    justify-content: center;
  }

  .footer-container {
    padding: 36px 24px;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .footer-container .columns-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .footer-container .columns-wrapper .footer-column,
  .footer-container .columns-wrapper .footer-column .column-title,
  .footer-container .columns-wrapper .footer-column .column-links,
  .footer-container .columns-wrapper .footer-column .column-links a.column-link,
  .footer-container .columns-wrapper .footer-column .column-links.legal {
    max-width: 100%;
    align-items: center;
  }

  .footer-container .columns-wrapper .footer-column .column-links.legal {
    gap: 16px;
  }

  .footer-container
    .columns-wrapper
    .footer-column
    .column-links.legal
    .upper-section,
  .footer-container
    .columns-wrapper
    .footer-column
    .column-links.legal
    .lower-section {
    align-items: center;
    gap: 16px;
  }

  .inside-container {
    padding-inline: 24px;
  }
}