@font-face {
  font-family: "CustomHelvetica";
  src: url(Helvetica.ttf);
}

* {
  font-family: "CustomHelvetica", Arial, Helvetica, sans-serif;
}

#title {
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

#title-section {
  text-align: center;
  white-space: nowrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Navbar Container */
.navbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.171);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15.2px);
  -webkit-backdrop-filter: blur(15.2px);
  border: 1px solid rgba(255, 255, 255, 0.23);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

#pages-section {
  text-align: center;
  white-space: nowrap;
}

#pages-section a {
  margin-right: 30px;
}

#login-profile-section {
  margin-right: 3%;
  text-align: right;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.navbar a {
  float: left;
  text-align: center;
  padding: 8px;
  color: white;
  text-decoration: none;
  font-size: 17px;
}

.navbar a:hover {
  color: #00bbff;
  transform: scale(1.06);
  text-decoration: none;
}

.active {
  background: #00bbff;
  border-radius: 10px;
  backdrop-filter: blur(15.2px);
  -webkit-backdrop-filter: blur(15.2px);
}

/* BUTTON */

.button_nav {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  /* background-color: #00bbff; */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0000;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

#active {
  background-color: #00bbff;
  color: #ffff;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button_nav:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button_nav:hover .icon {
  transform: translate(4px);
}

.button_nav:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button_nav::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.button_green {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #00ff73;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button_green:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button_green:hover .icon {
  transform: translate(4px);
}

.button_green:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button_green::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}
