/* Globale Stile & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f1117;
  color: #f4f4f4;
  line-height: 1.6;
}

a {
  color: #00ffae;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  color: #00ffae;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* === Layout-Komponenten (Header, Footer, Sections etc.) === */

header {
  background-color: #1a1c23;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 2rem;
}

header nav a {
  color: #f4f4f4;
  margin-left: 20px;
  font-weight: 500;
  text-decoration: none;
}

header nav a:hover {
  color: #00ffae;
}

footer {
  background-color: #1a1c23;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

footer nav a {
  margin: 0 10px;
  color: #888;
}

.section {
  padding: 60px 40px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section p {
  margin-bottom: 20px;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(145deg, #00ffae, #009988);
  color: #0f1117;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #0f1117; /* Hero-Überschriften sind dunkel */
}

.hero p {
  font-size: 1.2rem;
}

/* === Spezifische Seiten-Stile === */

/* Für AGB, Datenschutz (einfache Textseiten) */
.legal-page {
  padding: 40px;
  max-width: 800px;
  margin: auto;
}

/* Für Impressum */
.impressum-box {
  background-color: #1a1c23;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 60px auto;
}

.impressum-box h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* Für index.html (Features) */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature {
  flex: 1 1 300px;
  background-color: #1a1c23;
  padding: 20px;
  border-radius: 10px;
}

.feature h4 {
  margin-bottom: 10px;
}

.feature a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
}

/* Für index.html (Kontaktformular) */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background: #111;
  color: white;
  border: 1px solid #333;
  border-radius: 5px;
}

.contact-form button {
  background-color: #00ffae;
  color: #0f1117;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #00c28a;
}

/* Für reinigung.html (Highlight Box) */
.highlight {
  background-color: #1a1c23;
  padding: 20px;
  border-left: 5px solid #00ffae;
  margin-top: 20px;
  border-radius: 5px;
}

/* Für einrichtung.html & Rechner.html (Listen-Icons) */
ul li::before {
    content: "✔️"; /* Standard-Icon wurde geändert */
    margin-right: 10px;
    color: #00ffae;
}

/* Überschreiben für spezifische Seiten */
.setup-list li::before { /* z.B. für einrichtung.html */
    content: "🛠️";
}
.rechner-list li::before { /* z.B. für Rechner.html */
    content: "🖥️";
}