/* Grundlegende Reset-Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Allgemeine Styles für den Body */
body {
  font-family: 'Orbitron', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #ecf0f1;
  line-height: 1.6;

  /* Roboter Background (lokal im /seiten/ Ordner) */
  background-image: url("../img/jarvis/robot-6654025_640.png");
  background-repeat: no-repeat;
  background-position: left bottom;  
  background-attachment: fixed;
  background-size: contain;          

  /* dunkles Overlay für Lesbarkeit */
  position: relative;
  padding: 20px;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,14,.88), rgba(20,30,60,.82));
  z-index: -1;
}

/* Hauptbereich (Container) */
main {
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255,255,255,.12);
}

/* Headings */
h1 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 18px;
}

h2 {
  font-size: 1.6rem;
  margin-top: 26px;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(236,240,241,.7);
  padding-bottom: 6px;
}

/* Text */
p {
  margin-bottom: 14px;
  font-size: 1rem;
}

/* Listen */
ul {
  margin-left: 20px;
  list-style-type: disc;
}
li {
  margin-bottom: 8px;
}

/* Links */
a {
  color: #41a6ff;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 22px;
  padding: 16px;
  background-color: rgba(20,30,60,.55);
  border-top: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
}
footer a {
  color: #ecf0f1;
  margin: 0 10px;
  font-size: 1rem;
}
footer a:hover {
  color: #41a6ff;
}

/* Responsivität */
@media (max-width: 768px) {
  body { padding: 10px; }
  main { padding: 14px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.35rem; }
  footer a { font-size: 0.95rem; }
}