/* Logo zentriert auf der Startseite */
.center-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.center-logo .logo-img {
  max-width: 200px;
  height: auto;
  display: block;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #1a1a1a;  /* Dunkelgrauer Hintergrund statt #f4f4f4 */
  color: #e0e0e0;       /* Helle Schrift statt #333 */
  padding-left: 40px;
  padding-right: 40px;
}

header {
  /* Verlauf passend zum goldenen Logo auf dunklem Hintergrund */
  background: linear-gradient(90deg, #0b1220 0%, #13202a 55%, #3a2a14 100%);
  color: #f5e6c0; /* warme Gold-Ton für Text */
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid rgba(212,175,55,0.12);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

header .logo {
  font-weight: bold;
  font-size: 20px;
  color: #ffd86b; /* deutlicher Gold-Ton */
  text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
}

nav a:hover {
  color: #ffd86b;
}

.hero {
  padding: 50px;
  background: #2d2d2d;  /* Dunkelgraue Karten statt weiß */
  color: #f0f0f0;       /* Helle Schrift */
  text-align: center;
  border-radius: 5px;   /* Abgerundete Ecken für moderneren Look */
}

.leistungen, 
.kontaktinfo, 
form {
  background: #2d2d2d;  /* Dunkelgraue Karten statt weiß */
  color: #f0f0f0;       /* Helle Schrift */
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  border-radius: 5px;
  border: 1px solid #444; /* Subtile Umrandung für Definition */
}

form input, 
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #555;    /* Dunklere Umrandung */
  border-radius: 4px;
  background: #3a3a3a;       /* Dunkelgrauer Input-Hintergrund */
  color: #f0f0f0;            /* Helle Schrift in Inputs */
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #660000;     /* Rote Umrandung bei Fokus */
  background: #424242;       /* Etwas hellerer Hintergrund bei Fokus */
}

form label {
  color: #f0f0f0;            /* Helle Label-Farbe */
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
}

button {
  background: #660000;       /* Dunkleres Rot statt #900 */
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #800000;       /* Helleres Rot beim Hover statt #780 */
}

footer {
  text-align: center;
  padding: 20px;
  background: #1a1a1a;       /* Noch dunkler als Body */
  color: #cccccc;            /* Etwas gedämpftere Schrift */
  position: relative;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #444; /* Subtile Trennung vom Inhalt */
}

footer a {
  color: #cccccc;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Zusätzliche Verbesserungen für das dunkle Theme */
.success {
  color: #4CAF50;            /* Grün für Erfolgsmeldungen */
  background: #1e3a1e;
  padding: 10px;
  border-radius: 4px;
  border-left: 4px solid #4CAF50;
}

.error {
  color: #f44336;            /* Rot für Fehlermeldungen */
  background: #3a1e1e;
  padding: 10px;
  border-radius: 4px;
  border-left: 4px solid #f44336;
}