/* Custom Theme Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@600;700;800;900&family=Rajdhani:wght@600;700&display=swap');

:root {
  /* Techno-Organic Fusion Palette */
  --color-bg: #0B132B;
  --color-card: #1C2541;
  --color-primary: #00EBFF;
  --color-primary-glow: rgba(0, 235, 255, 0.3);
  --color-accent: #00E5FF;
  --color-magenta: #FF007F;
  --color-magenta-glow: rgba(255, 0, 127, 0.3);
}

/* Custom fonts setup */
.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

.font-rajdhani {
  font-family: 'Rajdhani', sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: #f1f5f9;
}

/* Typography styles for headers */
h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: -0.02em;
}

h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: -0.01em;
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glow Effects */
.glow-cyan {
  box-shadow: 0 0 25px var(--color-primary-glow);
}

.glow-magenta {
  box-shadow: 0 0 25px var(--color-magenta-glow);
}

.text-glow-cyan {
  text-shadow: 0 0 10px var(--color-primary);
}

.text-glow-magenta {
  text-shadow: 0 0 10px var(--color-magenta);
}

/* Animated Gradient Background */
.animated-gradient {
  background: linear-gradient(-45deg, #090e1d, #141b2f, #0f1c3f, #090e1d);
  background-size: 400% 400%;
  animation: gradient-shift 20s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Card glassmorphism style */
.glass-card {
  background: rgba(28, 37, 65, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 235, 255, 0.15);
}

.glass-card:hover {
  border-color: rgba(0, 235, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 235, 255, 0.15);
}

/* Active navigation dot animation */
.nav-dot {
  position: relative;
}

.nav-dot::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-dot:hover::after,
.nav-dot.active::after {
  opacity: 1;
  box-shadow: 0 0 8px var(--color-primary);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #090e1d;
}

::-webkit-scrollbar-thumb {
  background: #1C2541;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 235, 255, 0.5);
}
