/* Professional Terminal Design für meinit.net */
:root {
  --bg-primary: #1a1d23;
  --bg-secondary: #242830;
  --text-primary: #00d46a;
  --text-secondary: #8b949e;
  --accent: #00a152;
  --border: #30363d;
  --warning: #f0ad4e;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  line-height: 1.7;
  padding: 0;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--bg-secondary);
  margin-bottom: 0;
}

header h1 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

header h1 a {
  color: var(--text-primary);
  text-decoration: none;
}

header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: inline-block;
  transition: all 0.2s;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 212, 106, 0.08), rgba(0, 212, 106, 0));
}

nav a:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
  border-color: var(--text-primary);
  box-shadow: 0 0 0 2px rgba(0, 212, 106, 0.15);
  transform: translateY(-1px);
}

nav a:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}

/* Main Content */
main {
  padding: 3rem 0;
  min-height: 60vh;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  margin: 2rem 0 1rem;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Links */
a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Lists */
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

li {
  margin-bottom: 0.5rem;
}

/* Code Blocks */
pre, code {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

pre {
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1rem;
  line-height: 1.5;
}

code {
  padding: 0.2rem 0.5rem;
  font-size: 0.875em;
}

/* Service Cards */
.service-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-secondary);
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--text-primary);
}

.service-card h3 {
  color: var(--text-primary);
  margin-top: 0;
}

/* Command Prompt Style */
.terminal-prompt {
  color: var(--terminal-warning);
  font-weight: bold;
}

.terminal-prompt::before {
  content: '$ ';
}

/* Buttons / CTAs */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--text-primary);
  border-radius: 3px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  margin: 1rem 0;
  font-size: 0.95rem;
  width: 220px;
  text-align: center;
}

.cta-button:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding: 2rem 0;
  background: var(--bg-secondary);
  color: var(--text-secondary);
}



/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* Feature Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.feature-box {
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 4px;
  background: var(--bg-secondary);
  transition: border-color 0.2s;
}

.feature-box:hover {
  border-color: var(--text-primary);
}

.feature-box h3 {
  margin-top: 0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
  
  header {
    padding: 1.5rem 1rem;
  }
  
  header h1 {
    font-size: 1.25rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  nav a {
    width: 100%;
    text-align: center;
  }

  .site-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .site-tagline {
    max-width: 28rem;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  main {
    padding: 2rem 1rem;
  }

  ul, ol {
    margin-left: 0;
    padding-left: 0rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: .5rem .75rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: inline-block;
  transition: all .2s;
  font-size: .9rem;
  position: relative;
  overflow: hidden;
  
  background: linear-gradient(152deg, rgba(0, 212, 106, 0.3), rgba(0, 212, 106, 0));
  
  box-shadow: 0 0 2px rgba(0, 212, 106, 0.8), 0 0 4px rgba(0, 212, 106, 0.8), 0 0 8px rgba(0, 212, 106, 0.8);
  
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zY3JlZW5zY3JpcHQtMS4wIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIj4KPHJlY3Qgd2lkdGg9IjEwMDAwIiBoZWlnaHQ9IjEwMDAwIiBmaWxsPSJyZ2JhKDEyOCwgMTI4LCAxMjgsIDEyOCkiIC8+CjwvZz4='); /* This is a base64-encoded noise image (a simple noise pattern) */

  background-size: 100% 100%;
  
  animation: flicker 1s infinite alternate;

  /* Ensuring text stands out */
  z-index: 1;
}

@keyframes flicker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

