/* Basis */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Hintergrundbild */
body {
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

/* Header & Navigation */
header {
  background: rgba(0,0,0,0.6);
  padding: 15px;
  text-align: center;
  position: sticky;
  top: 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
  transition: color 0.3s;
}

footer {
  text-align: center;
  padding: 20px;
  color: #ddd;
  font-size: 0.9em;
  background: rgba(0,0,0,0.5);
}

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

nav a:hover {
  color: #ffcc00;
}

/* Inhalt */
.content {
  padding: 40px;
  text-align: center;
}

/* Inhalt */
.content_service {
  padding: 40px;
  text-align: left;
}

/* Kontaktformular */
form {
  margin-top: 20px;
}

input, textarea {
  padding: 10px;
  margin: 10px 0;
  width: 80%;
  max-width: 400px;
  border: none;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #ffcc00;
  cursor: pointer;
}

button:hover {
  background: #ffaa00;
}

/* Bild in der Mitte der Startseite */
.center-image {
  display: block;
  margin: 40px auto;
  max-width: 500px; /* maximale Breite */
  width: 80%;       /* passt sich an kleine Displays an */
  border-radius: 10px; /* abgerundete Ecken, optional */
  box-shadow: 0 4px 15px rgba(0,0,0,0.5); /* leichter Schatten */
}

/* Logo mit Link */
.logo-link {
  display: block;
  margin: 30px auto;
  max-width: 120px;
  width: 50%;
  transition: transform 0.3s;
  cursor: pointer;
}

.logo-link:hover {
  transform: scale(1.1); /* kleiner Zoom-Effekt beim Hover */
}