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

html {
  height: 100%;
  margin: 0;
  font-size: 16px;
  transition: none !important;
}

/* Header */
.header {
  width: 100%;
  background: #0056b3;
  position: fixed;
  top: 0;
  z-index: 10;
  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: clamp(0.5rem, 1.85vw, 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: none;
  color: #ffffff;
  width: 7.125rem;
  height: 2rem;
  padding: 0.375rem 1rem;
  border-radius: 6.1875rem;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.header__login:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transition: ease-out 0.3s;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.3);
  border: solid 1px rgba(255, 255, 255, 0.5);
}
.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  width: clamp(8.125rem, 16.5vw, 9.8125rem);
  text-decoration: none;
  transition: all 3s ease-out;
}
.header__logo-description {
  color: #ffffff;
  text-align: left;
  font-family: Poppins;
  font-size: clamp(0.4rem, 0.8vw, 0.5rem);
  font-weight: 400;
  line-height: 65%;
  width: 6.5rem;
}
.header__logo-bold {
  color: #ffffff;
  font-size: clamp(1rem, 2.15vw, 1.438rem);
  font-weight: 800;
  line-height: 90%;
  font-family: Poppins;
}
.header__logo-text--wrap {
  display: flex;
  flex-direction: column;
}
.header__logo-subtitle {
  color: #28a745;
  font-family: Poppins;
  font-size: clamp(0.4rem, 0.8vw, 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;
  gap: clamp(0.75rem, 2vw, 2rem);
}
.header__nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  width: 100%;
  max-width: 8.5rem;
  height: 2rem;
  position: relative;
}
.header__nav-item span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.header__nav-item a {
  text-decoration: none;
}
.header__nav-underline {
  background: #ffc107;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.25rem;
  width: 0;
  /* start at 0 */
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.3s ease, width 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

/* 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: #0056b3;
  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: #fff;
  border: 1px solid rgba(0, 123, 255, 0.35);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  box-shadow: 6px 6px 4px rgba(0, 123, 255, 0.25);
  position: absolute;
  top: 3.75rem;
  right: 1.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  min-width: 150px;
}
.dropdown__row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.dropdown a {
  color: #0056b3;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: background 0.3s;
}
.dropdown a:hover {
  background: #d0d1d7;
  color: #ffffff;
  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 clamp(0.25rem, 0.5vw, 2rem);
  cursor: pointer;
  background: transparent;
  border: none;
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 400;
  width: clamp(6.5rem, 13.15vw, 10rem);
  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 #000;
  width: 100%;
  border-radius: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  box-sizing: border-box;
}
.language-dropdown__option {
  padding: 0.625rem 1.375rem;
  cursor: pointer;
  color: #000000;
  font-weight: 400;
  font-size: 0.75rem;
  text-align: left;
  width: 100%;
  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 {
  color: #0056b3;
  text-align: center;
  padding: 1.25rem;
  font-size: 0.875rem;
  margin-top: auto;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 123, 255, 0.35);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  border-radius: 16px;
}

/* Reveal animation*/
.reveal {
  opacity: 0;
  transition: all 0.5s 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 {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .header__left {
    justify-content: start;
    width: auto;
  }
  .header__right {
    width: auto;
  }
  .language-dropdown__btn {
    width: 7.5rem;
  }
  .burger {
    display: flex;
  }
  .footer {
    font-size: 0.8rem;
  }
}
/* ---------------- Phone (<= 480px) ---------------- */
@media (max-width: 480px) {
  .footer {
    font-size: 0.55rem;
  }
}/*# sourceMappingURL=styles.css.map */