
/* Custom CSS for Aurora Financial Nexus */

/* Font Family */
body {
  font-family: 'Inter', 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* Background Animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bg-animate {
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

/* Glassmorphism Components */
.backdrop-blur-xl {
  backdrop-filter: blur(24px);
}

/* Glassmorphism effect - Updated with indigo tones */
.glass-card {
  background: rgba(49, 46, 129, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: all 0.3s ease;
}

.glass-card:hover {
  box-shadow: 0 12px 36px 0 rgba(99, 102, 241, 0.2);
}

/* Button shimmer effect - Updated with indigo tones */
.btn-enhanced {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.btn-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
}

.btn-enhanced:hover::before {
  left: 100%;
}

.btn-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Form inputs enhancement - Updated with indigo tones */
.input-enhanced {
  transition: all 0.3s ease;
  background: rgba(49, 46, 129, 0.5);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.input-enhanced:focus {
  border-color: #8B5CF6;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
  outline: none;
  background: rgba(49, 46, 129, 0.7);
}

/* Enhanced focus indicators */
.focus-indicator {
  position: relative;
}

.focus-indicator::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  transition: width 0.3s ease;
}

.focus-indicator:focus-within::after {
  width: 100%;
}

/* Light pulse animation for elements */
@keyframes pulse-light {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.animate-pulse-light {
  animation: pulse-light 3s infinite;
}

/* Custom checkbox - Updated with indigo tones */
input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  outline: none;
  transition: all 0.2s ease;
}

input[type="checkbox"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: rgba(49, 46, 129, 0.3);
  border: 1px solid rgba(99, 102, 241, 0.3);
  transition: all 0.2s ease;
}

input[type="checkbox"]:checked:before {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  border-color: rgba(99, 102, 241, 0.5);
}

input[type="checkbox"]:checked:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Hover effect for links */
a {
  transition: all 0.2s ease;
}
