@import "./home/header.css";
@import "./home/skills.css";
@import "./home/projects.css";
/* @import "./home/proof.css"; */
@import "./home/blog.css";
@import "./home/footer.css";

.custom-cursor {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6188, #ab9df2);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 97, 136, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
}

.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.loader-logo {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6188, #ab9df2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s ease-in-out infinite;
}

.loader-progress {
  width: 200px;
  height: 3px;
  background: rgba(147, 146, 147, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff6188, #ab9df2);
  animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.project-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 50%
  );
  pointer-events: none;
  opacity: 0;
}

.gradient-text:hover {
  background: linear-gradient(
    90deg,
    #ff6188 0%,
    #fc5fa3 25%,
    #ab9df2 50%,
    #78dce8 75%,
    #ff6188 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
