/* NeuroGraph Services - Neural Network Themed Styles */

:root {
  /* NeuroGraph Color Palette */
  --primary: #10b981;
  --primary-400: #34d399;
  --primary-600: #059669;
  --secondary: #a855f7;
  --secondary-400: #c084fc;
  --secondary-600: #9333ea;
  --accent: #06b6d4;
  --accent-400: #22d3ee;
  
  /* Dark Theme Colors */
  --background: #0f172a;
  --foreground: #f8fafc;
  --muted: #334155;
  --muted-foreground: #94a3b8;
  --border: #334155;
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  line-height: 1.6;
  
  /* Neural Network Background Pattern */
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  background-size: 300px 300px, 400px 400px, 200px 200px;
  background-position: 0 0, 100px 100px, 50px 50px;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { 
    background-position: 0 0, 100px 100px, 50px 50px; 
  }
  50% { 
    background-position: 50px 50px, 150px 150px, 100px 100px; 
  }
}

/* Glass Morphism Effects */
.glass {
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-card {
  border-radius: 1rem;
  padding: 2rem;
}

/* Navigation */
.nav {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  height: 3rem;
  width: auto;
  filter: brightness(1.1);
}

/* Typography */
h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-400), var(--secondary-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-align: center;
}

p {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1rem;
}

/* Main Container */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.hero-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Status Cards */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 1000px;
}

.status-card {
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.status-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.status-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.status-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Environment Indicators */
.env-production {
  border: 1px solid var(--primary);
  background: rgba(16, 185, 129, 0.1);
}

.env-staging {
  border: 1px solid var(--secondary);
  background: rgba(168, 85, 247, 0.1);
}

/* Glow Effects */
.glow-primary {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.glow-secondary {
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

/* Banner */
.banner {
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
  color: white;
  text-align: center;
  padding: 0.75rem;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .logo {
    height: 2.5rem;
  }
  
  .status-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .container {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .glass-card {
    padding: 1.5rem;
  }
}

