/* ================= SOCIAL BAR ================= */
.social-bar {
  display: inline-flex;
  gap: 24px;
  padding: 14px 28px;
  border-radius: 999px;
  margin-bottom: 0;
  position: relative;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.social-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--glass);
  backdrop-filter: var(--blur);
  border-radius: inherit;
  opacity: 0;
  transition: opacity .3s ease;
}

.social-bar::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(58,160,255,.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease, left .1s ease, top .1s ease;
  filter: blur(25px);
  z-index: 0;
  left: calc(var(--mouse-x) - 50px);
  top: calc(var(--mouse-y) - 50px);
  will-change: left, top;
}

.social-bar:hover::before {
  opacity: 1;
}

.social-bar:hover::after {
  opacity: 1;
}

.social-bar a {
  color: white;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), color .3s ease;
}

.social-bar a:hover {
  transform: scale(1.3);
  color: var(--blue);
}