/* Barrierefreiheit: Skip-Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #1ed760;
  color: #000;
  padding: 8px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Visuell versteckte Elemente für Screenreader */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Verbesserte Fokus-Indikatoren */
a:focus, 
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #1ed760;
  outline-offset: 2px;
}

/* Hochkontrast-Modus Unterstützung */
@media (prefers-contrast: high) {
  body {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  }
  
  .container {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
  }
  
  h1, h2, h3 {
    color: #ffffff;
    text-shadow: 1px 1px 2px #000000;
  }
}

/* Reduzierte Bewegung für Nutzer mit Bewegungsempfindlichkeit */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Dunkler Modus Unterstützung */
@media (prefers-color-scheme: dark) {
  /* Die Seite ist bereits im dunklen Design, aber wir stellen sicher, dass es konsistent ist */
  body {
    background: linear-gradient(135deg, #1a2634 0%, #253543 100%);
    color: #f4f4f4;
  }
}

body {
  margin: 0;
  padding: 0;
  /* Option 1: Moderner Tech-Look mit dunklem Blau-Grün Verlauf */
  background: linear-gradient(135deg, #1a2634 0%, #253543 100%);
  
  /* Option 2: Dunkel mit leichtem Violett-Touch
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); */
  
  /* Option 3: Cyber-Style mit mehreren Farben
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1a2634 100%); */
  
  /* Option 4: Matrix-Style mit Grün-Akzent
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%); */
  
  color: #f4f4f4;
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px; /* Basis-Schriftgröße für bessere Skalierung */
  line-height: 1.5; /* Bessere Lesbarkeit */
}

.container {
  width: 100%;
  max-width: 580px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 48px 32px;
}

.logo {
  width: 100%;
  max-width: 400px;
  margin-bottom: 32px;
  margin-top: 12px;
}

header {
  margin-bottom: 48px;
}

h1 {
  color: #1ed760;
  font-size: 3.2rem;
  margin: 0 0 12px 0;
  letter-spacing: 2px;
}

h2 {
  color: #b2ffb2;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 32px 0;
  letter-spacing: 1px;
  opacity: 0.9;
}

section {
  margin-bottom: 36px;
  padding: 0 16px;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 24px 0;
  opacity: 0.9;
}

.owner-address h2, .owner-address h3, .contact h3 {
  color: #1ed760;
  margin-bottom: 8px;
  margin-top: 16px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.owner-address p, .contact p {
  margin: 0 0 16px 0;
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Verbesserte Link-Gestaltung für Barrierefreiheit */
a {
  color: #1ed760;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}

a:hover {
  color: #b2ffb2;
  text-decoration-thickness: 3px;
}

a:visited {
  color: #90ee90; /* Unterscheidbare Farbe für besuchte Links */
}

/* Verbesserte Adress-Formatierung */
address {
  font-style: normal;
}

/* Mobile-First Responsive Design */
@media (max-width: 600px) {
  .container {
    margin: 0;
    border-radius: 0;
    padding: 32px 24px;
  }
  .logo {
    width: 100%;
    max-width: 280px;
  }
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  section {
    padding: 0;
  }
}

/* Zusätzliche Mobile-Optimierung */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .container {
    padding: 24px 16px;
  }
}

/* Größere Schrift für bessere Lesbarkeit auf großen Bildschirmen */
@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
  
  .container {
    max-width: 680px;
  }
} 