@import url("https://fonts.googleapis.com/css2?family=Oxanium&family=Courgette&family=Pangolin&family=Jomhuria&family=Onest:wght@400;700&display=swap");
nav .nav-dashboard .nav-dashboard-button {
  padding: 0.6em 1.4em;
  border: none;
  border-radius: 0.5em;
  background: #f56229;
  color: #ebebeb;
  font-family: "Onest", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(34, 4, 113, 0.08);
}
nav .nav-dashboard .nav-dashboard-button:hover, nav .nav-dashboard .nav-dashboard-button:focus {
  background: #f56229;
  box-shadow: 0 4px 16px rgba(34, 4, 113, 0.15);
  outline: none;
}
nav .nav-dashboard .nav-dashboard-button:active {
  background: #1a1d2d;
}

html, body {
  overflow: auto;
  background: linear-gradient(135deg, #1a1d2d, #101632);
  scroll-behavior: smooth;
  cursor: default;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: calc(100% - 50px);
  max-width: 1200px;
  height: 80px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0.8em 2em;
}
nav .nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
nav .nav-logo .nav-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .nav-logo .nav-logo-text {
  font-family: "Onest", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-left: 0.3em;
  color: #ebebeb;
}
nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
nav .nav-links .nav-link,
nav .nav-links .nav-link-active {
  font-family: "Onest", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  text-decoration: none;
  background-color: transparent;
  transition: text-shadow 0.3s;
  cursor: pointer;
}
nav .nav-links .nav-link {
  color: #ebebeb;
}
nav .nav-links .nav-link:hover {
  text-shadow: 0 0 3px #f56229, 0 0 18px #f56229;
}
nav .nav-links .nav-link-active {
  background: linear-gradient(90deg, #f56229, #c82043);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  text-decoration-color: #ebebeb;
  text-decoration-thickness: 3px;
}
nav .nav-links .nav-link-active:hover {
  text-shadow: 0 0 3px #16063f, 0 0 18px #16063f;
}
nav .nav-dashboard {
  display: flex;
  align-items: center;
  margin-left: auto;
}
nav .nav-dashboard .nav-dashboard-button {
  font-size: 1.2rem;
  margin-left: 1em;
  background: linear-gradient(90deg, #f56229, #c82043);
  transition: opacity 0.5s;
}
nav .nav-dashboard .nav-dashboard-button:hover {
  opacity: 0.7;
  background: linear-gradient(90deg, #f56229, #c82043) !important;
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
    height: auto;
  }
  nav .nav-logo {
    width: 100%;
    justify-content: center;
    margin-bottom: 1em;
  }
  nav .nav-logo .nav-logo-img {
    width: 50px;
    height: 50px;
  }
  nav .nav-logo .nav-logo-text {
    font-size: 2rem;
  }
  nav .nav-links {
    flex-direction: column;
    width: 100%;
    row-gap: 1em;
  }
  nav .nav-links .nav-link,
  nav .nav-links .nav-link-active {
    font-size: 1.2rem;
  }
  nav .nav-dashboard {
    margin-top: 1em;
    width: 100%;
    justify-content: center;
  }
  nav .nav-dashboard .nav-dashboard-button {
    width: 100%;
    text-align: center;
  }
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
footer .footer-slogan {
  font-family: "Onest", Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #ebebeb;
}
footer .footer-slogan .branding {
  font-weight: 800;
}
footer .footer-slogan .slogan {
  font-weight: 600;
  background: linear-gradient(90deg, #f56229, #c82043);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0.5em 0;
}
footer .footer-sections {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin: 1em 0 0 0;
  padding: 0.8em 2em;
}
footer .footer-sections .footer-links {
  display: flex;
  flex-direction: row;
  gap: 8rem;
  justify-content: center;
  width: 100%;
}
footer .footer-sections .footer-links .footer-navigation {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  cursor: pointer;
}
footer .footer-sections .footer-links .footer-navigation .footer-navigation-title {
  font-family: "Onest", Arial, sans-serif;
  font-weight: 670;
  font-size: 1.2rem;
  background: linear-gradient(90deg, #f56229, #c82043);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: default;
}
footer .footer-sections .footer-links .footer-navigation .footer-navigation-item {
  font-family: "Onest", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: #ebebeb;
  opacity: 0.5;
  text-decoration: none;
  background-color: transparent;
  transition: opacity 0.3s;
}
footer .footer-sections .footer-links .footer-navigation .footer-navigation-item:hover {
  opacity: 1;
}
footer .footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 2rem;
}
footer .footer-copyright .footer-copyright-text {
  font-family: "Onest", Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #ebebeb;
  opacity: 0.7;
  text-decoration: none;
}
@media (max-width: 768px) {
  footer .footer-slogan {
    text-align: center;
    margin-bottom: 1rem;
  }
  footer .footer-sections {
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  footer .footer-sections .footer-links {
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }
  footer .footer-sections .footer-links .footer-navigation {
    margin-top: 1em;
    text-align: center;
  }
  footer .footer-sections .footer-links .footer-navigation .footer-navigation-title {
    font-size: 1.5rem;
  }
  footer .footer-sections .footer-links .footer-navigation .footer-navigation-item {
    font-size: 1.2rem;
  }
  footer .footer-copyright {
    margin-top: 1em;
    text-align: center;
  }
  footer .footer-copyright .footer-copyright-text {
    font-size: 0.9rem;
  }
}

::-moz-selection {
  background: #f56229;
  color: #1a1d2d;
}

::selection {
  background: #f56229;
  color: #1a1d2d;
}

::-webkit-scrollbar {
  width: 5px;
  background: #1a1d2d;
  height: 80%;
}

::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 8px;
  padding: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b0b0b0;
}

::-webkit-scrollbar-corner {
  background: #3d3d3d;
}

homepage {
  display: flex;
  overflow: auto;
}
homepage .welcome-section {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 5rem auto 10rem;
  padding: 2em;
  gap: 5rem;
}
homepage .welcome-section .welcome-part1 {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
}
homepage .welcome-section .welcome-part1 .welcome-logo {
  width: 500px;
  height: 500px;
  border-radius: 50%;
}
homepage .welcome-section .welcome-part2 {
  display: flex;
  flex-direction: column;
  width: 50rem;
}
homepage .welcome-section .welcome-part2 .welcome-title,
homepage .welcome-section .welcome-part2 .welcome-subdescription {
  font-family: "Onest", Arial, sans-serif;
  font-weight: 800;
  background: linear-gradient(90deg, #f56229, #c82043);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
homepage .welcome-section .welcome-part2 .welcome-title {
  font-size: 4rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
homepage .welcome-section .welcome-part2 .welcome-description {
  font-family: "Onest", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #ebebeb;
  margin-top: 2rem;
}
homepage .welcome-section .welcome-part2 .welcome-description .welcome-subdescription {
  font-weight: 600;
  font-size: 1.6rem;
  margin-top: 1rem;
}
homepage .welcome-section .welcome-part2 .welcome-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 3rem;
  font-size: 1.15rem;
}
homepage .welcome-section .welcome-part2 .welcome-buttons .welcome-button-primary,
homepage .welcome-section .welcome-part2 .welcome-buttons .welcome-button {
  font-family: "Onest", Arial, sans-serif;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
homepage .welcome-section .welcome-part2 .welcome-buttons .welcome-button-primary {
  color: #ebebeb;
  background: linear-gradient(90deg, #f56229, #c82043);
  padding: 7px 22px;
}
homepage .welcome-section .welcome-part2 .welcome-buttons .welcome-button-primary:hover {
  opacity: 0.7;
}
homepage .welcome-section .welcome-part2 .welcome-buttons .welcome-button {
  color: #f56229;
  background-color: transparent;
  border: 2px solid #f56229;
  padding: 5px 20px;
  opacity: 0.7;
}
homepage .welcome-section .welcome-part2 .welcome-buttons .welcome-button:hover {
  opacity: 1;
}
@media (max-width: 1200px) {
  homepage .welcome-section {
    flex-direction: column;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-top: 0;
    gap: 2rem;
  }
  homepage .welcome-section .welcome-part1 {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  homepage .welcome-section .welcome-part1 .welcome-logo {
    width: 300px;
    height: 300px;
  }
  homepage .welcome-section .welcome-part2 {
    width: 100%;
    text-align: center;
  }
  homepage .welcome-section .welcome-part2 .welcome-title {
    font-size: 3rem;
    margin: 0 auto;
  }
  homepage .welcome-section .welcome-part2 .welcome-description {
    font-size: 1.2rem;
  }
  homepage .welcome-section .welcome-part2 .welcome-buttons {
    flex-direction: row;
    margin: 4rem auto;
  }
}/*# sourceMappingURL=homepage.css.map */