/* InnoVation Hub Deutschland - Futuristic Digital / Cyber */
:root {
  --bg: #050A14;
  --primary: #00D4FF;
  --secondary: #0A4BFF;
  --accent: #39FF14;
  --surface: rgba(0,212,255,0.05);
  --border: 1px solid rgba(0,212,255,0.2);
  --text: #E0F7FF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Exo 2', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Orbitron', sans-serif; font-weight: 700; }
.tech-font { font-family: 'JetBrains Mono', monospace; }

/* Scanline overlay */
.scanline::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
  z-index: 9998;
}

/* Glitch effect for H1 */
@keyframes glitch {
  0% { text-shadow: 2px 0 #00D4FF, -2px 0 #39FF14; }
  25% { text-shadow: -2px 0 #39FF14, 2px 0 #0A4BFF; }
  50% { text-shadow: 2px 0 #0A4BFF, -2px 0 #00D4FF; }
  75% { text-shadow: -2px 0 #00D4FF, 2px 0 #39FF14; }
  100% { text-shadow: 2px 0 #39FF14, -2px 0 #00D4FF; }
}
.hero h1 { animation: glitch 4s ease-in-out infinite; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(5,10,20,0.9);
  border-bottom: var(--border);
}
.header .container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.logo { height: 42px; }
.nav { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--text); text-decoration: none; font-size: 0.95rem; }
.nav a:hover { color: var(--primary); }

/* Hero */
.hero {
  min-height: 90vh;
  padding: 6rem 2rem 4rem;
  position: relative;
  background: url('https://images.pexels.com/photos/163100/code-code-editor-coding-163100.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
}
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(5,10,20,0.82); }
.hero .container { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; color: #fff; }
.hero p { opacity: 0.95; margin-bottom: 1rem; }

/* Neon border cards */
.card-cyber {
  background: var(--surface);
  border: var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.3s;
}
.card-cyber:hover { box-shadow: 0 0 25px rgba(0,212,255,0.3); }

/* Section */
section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-title { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 1.5rem; color: var(--primary); }

/* Stats terminal style */
.stats-terminal { font-family: 'JetBrains Mono', monospace; }
.stats-terminal .line { color: var(--accent); margin-bottom: 0.25rem; }
.stats-terminal .line::before { content: '> '; }

/* Buttons */
.btn-cyber {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--primary) !important;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
  transition: all 0.3s;
}
.btn-cyber:hover { background: var(--primary); color: var(--bg) !important; box-shadow: 0 0 40px rgba(0,212,255,0.6); }

/* Footer */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: var(--border);
  padding: 4rem 2rem 2rem;
}
.footer a { color: rgba(224,247,255,0.9); }
.footer a:hover { color: var(--primary); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto 2rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 { margin-bottom: 1rem; font-size: 0.95rem; color: var(--primary); }
.footer ul { list-style: none; }
.footer-bottom { text-align: center; padding-top: 2rem; font-size: 0.85rem; opacity: 0.8; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 4px; background: rgba(0,212,255,0.1); color: var(--primary); border: 1px solid rgba(0,212,255,0.3); transition: all 0.2s; }
.footer-social a:hover { background: var(--primary); color: var(--bg); }
.footer-social svg { width: 20px; height: 20px; }
.map-container { height: 350px; border: var(--border); border-radius: 8px; overflow: hidden; margin-top: 1rem; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5,10,20,0.95);
  border-top: 2px solid var(--primary);
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.cookie-banner .btn-accept { background: var(--primary); color: var(--bg); padding: 0.6rem 1.2rem; border: none; font-weight: 700; cursor: pointer; border-radius: 4px; }
.cookie-banner.show { display: block !important; }

/* Form - terminal style */
input, select, textarea { width: 100%; padding: 0.9rem; background: rgba(0,0,0,0.4); border: var(--border); border-radius: 4px; color: var(--text); font-family: 'JetBrains Mono', monospace; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 10px rgba(0,212,255,0.2); }
.form-group { margin-bottom: 1.25rem; }
label { display: block; margin-bottom: 0.4rem; font-size: 0.9rem; }
