/* =======================
   Grundstile
======================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background-color: #fafafa; }

/* =======================
   Header & Navigation
======================= */
header { background-color: #0077b6; color: white; padding: 10px 0; }
header .logo h1 { margin: 0; text-align: center; }
nav ul { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
nav ul li { margin: 0 15px; }
nav ul li a { color: white; text-decoration: none; font-size: 18px; font-weight: bold; padding: 5px 10px; border-radius: 5px; transition: background 0.2s; }
nav ul li a:hover, nav ul li a.active { background-color: #005f87; }

/* =======================
   Hero
======================= */
.hero { background-color: #f1f1f1; padding: 50px 20px; text-align: center; }
.hero h2 { font-size: 2.5em; margin-bottom: 20px; color: #0077b6; }
.hero p { font-size: 1.2em; margin-bottom: 30px; }
.cta-btn { background-color: #0077b6; color: white; padding: 15px 30px; text-decoration: none; border-radius: 5px; font-size: 1.2em; transition: background 0.2s; }
.cta-btn:hover { background-color: #005f87; }

/* =======================
   Sections
======================= */
section { padding: 40px 20px; max-width: 1200px; margin: 0 auto; }
.about-content, .services .service-list, .downloads .download-list { max-width: 1000px; margin: 0 auto; }

/* =======================
   Service-Boxen
======================= */
.service-list { display: flex; flex-wrap: wrap; gap: 20px; }
.service-item { background: #f9f9f9; border: 1px solid #ddd; padding: 20px; flex: 1 1 30%; text-align: center; border-radius: 10px; transition: transform 0.2s, box-shadow 0.2s; }
.service-item:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.service-item h3 { margin-bottom: 10px; font-size: 1.4em; color: #0077b6; }

/* =======================
   Download-Boxen
======================= */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.download-item {
  background: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.download-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.download-item a {
  text-decoration: none;
  color: #333;
  font-size: 1.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-item a span {
  margin-top: 10px;
  word-break: break-word;
}

/* =======================
   Forms
======================= */
form { display: flex; flex-direction: column; max-width: 600px; margin: 0 auto; }
form label { margin-bottom: 10px; font-size: 1.1em; color: #0077b6; }
form input, form textarea { padding: 12px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; font-size: 1em; resize: vertical; }
form button { background-color: #0077b6; color: white; padding: 15px; border: none; border-radius: 5px; font-size: 1.2em; cursor: pointer; transition: background 0.2s; }
form button:hover { background-color: #005f87; }

/* =======================
   Footer
======================= */
footer { background-color: #0077b6; color: white; text-align: center; padding: 10px; margin-top: 40px; }

/* =======================
   Responsive
======================= */
@media(max-width: 768px) {
  .service-item, .download-item { flex: 1 1 100%; }
  nav ul { flex-direction: column; align-items: center; }
  nav ul li { margin: 10px 0; }
  .hero h2 { font-size: 2em; }
}

/* =======================
   Support Live-Status
======================= */
.support-status {
  background-color: #f1f1f1;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.support-status.online {
  background-color: #4caf50; /* grün */
  color: white;
}

.support-status.offline {
  background-color: #f44336; /* rot */
  color: white;
}


