/* Custom styles for the holographic theme */
body {
  font-family: "Poppins", sans-serif;
  background-color: #050a19;
  color: #e0e0e0;
  overflow-x: hidden;
}

/* Custom glow effects */
.hologram-glow {
  --glow-color: #00ffff;
  text-shadow: 0 0 5px var(--glow-color), 0 0 10px var(--glow-color),
    0 0 20px var(--glow-color);
}

.hologram-border {
  --border-color: rgba(0, 255, 255, 0.5);
  border: 1px solid var(--border-color);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3),
    inset 0 0 10px rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hologram-border:hover {
  --border-color: rgba(0, 255, 255, 1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5),
    inset 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Glassmorphism card effect */
.glass-card {
  background: rgba(10, 25, 47, 0.5);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(10px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #050a19;
}
::-webkit-scrollbar-thumb {
  background: #00ffff;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00b3b3;
}

/* Animation for sections */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#hologram-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* --- Styles from Skills Section --- */
.skill-tag {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: #00ffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.skill-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* --- Styles from Experience Section --- */
.documentation-button {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #99f6e4;
  background: rgba(0, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.documentation-button:hover {
  background: rgba(0, 255, 255, 0.2);
  color: #ffffff;
}

/* --- Styles from Projects Section --- */
.project-tech {
  background: rgba(0, 255, 255, 0.1);
  color: #99f6e4;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.8rem;
}

/* --- Styles from Contact Section --- */
.contact-link {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: #e0e0e0;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-link:hover {
  background: rgba(0, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}
