html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Poppins";
  src: url("/public/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  background: rgba(11, 11, 11);
}

.text-red {
  color: red;
}
.text-blue {
  color: #38bdf8;
}
.text-lime {
  color: #6aff00;
}

/* Header */

header {
  width: 100%;
  margin-top: 1%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 11);
  transition: padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease, background-color 0.35s ease;
}

header.scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid white;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.08);
}

.header-divider {
  width: 90%;
  margin-left: 10%;
  display: flex;
  justify-content: space-between;
}

.header-name {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-name-img-src {
  height: 50px;
}

.header-name-text {
  color: white;
  margin-left: 10px;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
}

.header-menus {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 10%;
}

.header-menu {
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  transition: color 0.4s ease, font-size 0.4s ease;
}

.header-menu:hover {
  color: #eddd53;
  font-size: 30px;
}

.header-language-menu {
  position: relative;
  font-size: 14px;
}

.header-language-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
}

.header-language-selected img {
  width: 20px;
  border-radius: 3px;
}

.header-language-selected span {
  color: white;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.header-language-selected span:hover {
  color: #eddd53;
}

.header-language-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: none;
  min-width: 150px;
  padding: 6px;
  z-index: 100;
}

.header-language-menu.open .header-language-dropdown {
  display: block;
}

.header-language-choose {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
}

.header-language-choose img {
  width: 20px;
  border-radius: 3px;
}

.header-language-choose span {
  font-family: "Poppins", sans-serif;
  color: black;
  font-size: 18px;
}

.header-language-choose:hover {
  background-color: #f2f2f2;
}

.header-language-choose.active {
  background-color: #eaeaea;
  font-weight: 600;
}

/* Header */

/* Footer */

.main-footer {
  background: #0f0f0f;
  padding: 60px 0 25px 0;
  margin-top: 80px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #1375ff,
    #00c6ff,
    #1375ff,
    transparent
  );
}

.footer-glow-line {
  width: 150px;
  height: 3px;
  background: #1375ff;
  margin: 0 auto 40px auto;
  border-radius: 20px;
  box-shadow: 0 0 20px #1375ff;
  animation: glowPulse 2.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 30px #1375ff;
  }
  100% {
    opacity: 0.6;
  }
}

.footer-content {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #1375ff;
}

.footer-description {
  font-size: 14px;
  color: rgb(150, 150, 150);
}

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

.footer-sitemap h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: white;
}

.footer-sitemap a {
  text-decoration: none;
  color: rgb(150, 150, 150);
  margin-bottom: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-sitemap a:hover {
  color: #1375ff;
  transform: translateX(5px);
}

.footer-socials a {
  color: white;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #1375ff;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  font-size: 13px;
  color: rgb(110, 110, 110);
}

.fade-footer {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.fade-footer.visible {
  opacity: 1;
  transform: translateY(0);
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(135deg, #1375ff, #0a4bcc);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: none;
  transition: all 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(19, 117, 255, 0.4);
}

/* Footer */
