/* Text Glow and Animation Effects */
:root {
  --glow-color: rgba(14, 165, 233, 0.6);
  --glow-spread: 15px;
  --glow-strength: 0;
}

/* Apply glow effect to text elements */
.contact-title,
.contact-description,
.contact-info h3,
.contact-actions h3,
.contact-info li {
  position: relative;
  transition: all 0.3s ease;
}

/* Glow effect when active */
.glow-active {
  text-shadow: 0 0 calc(var(--glow-spread) * var(--glow-strength)) var(--glow-color);
}

/* Button particle canvas */
.button-particles {
  border-radius: 8px;
  overflow: hidden;
}

/* Add subtle animation to all headings */
h1, h2, h3, h4, h5, h6 {
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover {
  text-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
  transform: scale(1.01);
}

/* Add hover effect to all list items */
li {
  transition: transform 0.3s ease, color 0.3s ease;
}

li:hover {
  transform: translateX(3px);
  color: rgba(255, 255, 255, 1);
}

/* Add subtle animation to paragraphs */
p {
  transition: color 0.3s ease;
}

p:hover {
  color: rgba(255, 255, 255, 1);
}
