/* Enhanced styles for AI theme visibility and better contact icons */

/* Make the neural network particles more visible */
#particles-js {
  position: fixed !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: transparent;
}

/* Enhanced contact icons */
#contact .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

#contact .icons li {
  margin: 0;
}

#contact .icons a {
  border: 2px solid var(--ai-primary);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ai-primary);
  background-color: rgba(10, 17, 40, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#contact .icons a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ai-gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#contact .icons a:hover {
  transform: translateY(-5px);
  border-color: transparent;
  color: #ffffff;
}

#contact .icons a:hover:before {
  opacity: 1;
}

/* Add glow effect to icons */
#contact .icons a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 15px var(--ai-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#contact .icons a:hover:after {
  opacity: 0.5;
}

/* AI theme enhancements for better visibility */
#bg:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(58, 134, 255, 0.1), transparent 70%);
  z-index: -2;
  pointer-events: none;
}
