/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  font-size: 16px;
}

@supports (background-attachment: fixed) {
  body {
    background-attachment: fixed;
    background-position: center calc(50% + 0px);
  }
}
:root {
  --color-aaa: #009a44;
  --color-aa: #91bd00;
  --color-a: #a5c91f;
  --color-bbb: #d9b600;
  --color-bb: #d9ce04;
  --color-b: #efe31e;
  --color-ccc: #d96400;
  --color-cc: #d99c00;
  --color-c: #f0ae13;
  --color-d: #d92804;
  --color-NAPP: #00345c;
}

.layer-blur {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  margin-top: 4.75rem;
}

.layer-blur::before {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.15);
  z-index: -1;
}

/* Header */
.header {
  width: 100%;
  background: var(--color-NAPP);
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  /* Logo */
  /* Nav */
}
.header__container {
  max-width: 1200px;
  min-height: 4.75rem;
  padding: 1rem 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__left {
  display: flex;
  gap: 1.875rem;
  width: 29.5625rem;
  justify-content: center;
}
.header__right {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  align-items: center;
  width: 13.375rem;
}
.header__login {
  background: #fff;
  color: #000;
  padding: 0.375rem 1rem;
  border-radius: 6.1875rem;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  width: 4.6875rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__login:hover {
  background: #d0d1d7;
  transition: ease-out 0.3s;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}
.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  width: 9.8125rem;
  text-decoration: none;
  transition: all 3s ease-out;
}
.header__logo-description {
  color: #ffffff;
  text-align: left;
  font-family: Poppins;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 65%;
  width: 6.5rem;
}
.header__logo-bold {
  color: #ffffff;
  font-size: 1.438rem;
  font-weight: 800;
  line-height: 90%;
  font-family: Poppins;
}
.header__logo-text--wrap {
  display: flex;
  flex-direction: column;
}
.header__logo-subtitle {
  color: #1c9b66;
  font-family: Poppins;
  font-size: 0.5rem;
  font-weight: 400;
}
.header__logo-img {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-block;
  animation: spin 5s linear infinite;
  transition: transform 0.3s ease;
}
.header__logo-img:hover {
  background-color: rgba(28, 155, 102, 0.2);
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 1.875rem rgba(28, 155, 102, 0.6), 0 0 3.75rem rgba(28, 155, 102, 0.2);
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.header__nav {
  display: flex;
  gap: 1.25rem;
  align-self: center;
  width: 17.875rem;
  height: 2rem;
  position: relative;
}
.header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.header__nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
  cursor: pointer;
  width: 5.5rem;
  height: 2rem;
  position: relative;
}
.header__nav-item span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
}
.header__nav-item a {
  text-decoration: none;
}
.header__nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.25rem;
  width: 33%;
  background: #ffffff;
  transition: transform 0.3s ease-out, width 0.3s ease-out;
  will-change: transform, width;
}

/* Burger */
.burger {
  cursor: pointer;
  width: 1.875rem;
  height: auto;
  gap: 0.25rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  margin: 1rem;
  z-index: 1000;
  position: relative;
}
.burger span {
  height: 0.125rem;
  width: 100%;
  background: #fff;
  color: var(--color-NAPP);
  border-radius: 0.125rem;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(2px) translateX(2px);
}
.burger.active span:nth-child(3) {
  opacity: 0;
}
.burger.active span:nth-child(2) {
  transform: rotate(-45deg);
}

/* Dropdown menu */
.dropdown {
  display: none;
  flex-direction: column;
  background: #ffffff;
  position: absolute;
  top: 3.75rem;
  right: 1.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  min-width: 150px;
}
.dropdown a {
  color: var(--color-NAPP);
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: background 0.3s;
}
.dropdown a:hover {
  background: #d0d1d7;
  transition: ease-out 0.3s;
  transform: scale(1.02);
}
.dropdown.active {
  display: flex;
  animation: dropdownFade 0.3s ease;
}
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Language dropdown */
.language-dropdown {
  position: relative;
  display: inline-block;
}
.language-dropdown__btn {
  padding: 0.625rem;
  cursor: pointer;
  background: transparent;
  border: none;
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 400;
  width: 8.125rem;
  height: 2.1875rem;
  display: flex;
  justify-content: center;
  text-align: center;
}
.language-dropdown__btn:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 1rem;
}
.language-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 0.0625rem solid #ccc;
  width: 8.125rem;
  border-radius: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
}
.language-dropdown__option {
  padding: 0.625rem 1.375rem;
  cursor: pointer;
  color: var(--color-NAPP);
  font-weight: 400;
  font-size: 0.75rem;
  text-align: left;
  width: 8.125rem;
  height: 2.1875rem;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
.language-dropdown__option:hover {
  background: #d0d1d7;
  border-radius: 1rem;
}
.language-dropdown.active .language-dropdown__menu {
  display: block;
}
.language-dropdown__flag {
  width: 0.75rem;
  height: 0.75rem;
}

/* Footer */
.footer {
  background: #fff;
  color: var(--color-NAPP);
  text-align: center;
  padding: 1.25rem;
  font-size: 0.875rem;
  margin-top: auto;
  width: 100%;
}

/* Reveal animation*/
.reveal {
  opacity: 0;
  transition: all 1s ease-out;
}
.reveal-bottom {
  transform: translateY(30px);
}
.reveal-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  transform: translateX(-30px);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  transform: translateX(30px);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Magnetic button*/
.button {
  position: relative;
  transition: transform 0.2s ease;
  will-change: transform;
}

/* ---------------- Responsive Breakpoints ---------------- */
html {
  font-size: clamp(10px, 1vw + 0.5rem, 16px);
}

.header__container,
.footer__container {
  width: min(90%, 1200px);
  min-height: auto;
}

/* ---------------- Tablet (<= 768px) ---------------- */
@media (max-width: 768px) {
  .header__login {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    width: auto;
  }
  .header__nav {
    display: none;
  }
  .header__left {
    justify-content: start;
    width: auto;
  }
  .header__right {
    width: auto;
  }
  .burger {
    display: flex;
  }
  .footer {
    font-size: 0.8rem;
  }
  .layer-blur {
    gap: 2rem;
  }
}
/* ---------------- Phone (<= 480px) ---------------- */
@media (max-width: 480px) {
  .footer {
    font-size: 0.7rem;
  }
}/*# sourceMappingURL=styles.css.map */