.hero {
  background-image: url('../img/main_living-room.jpg'); /* Ersetze durch ein hochwertiges Bild */
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #fff;
  font-size: 3.5em;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.intro {
  background-color: #f0f0f0;
  padding: 40px 0;
  text-align: center;
}
.intro p {
  font-size: 1.3em;
  color: #444;
}
.gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
.contact {
  background-color: #f9f9f9;
  padding: 40px 0;
}
.contact h2 {
  text-align: center;
  color: #444;
}
footer {
  background-color: #333;
  padding: 20px;
  text-align: center;
  color: white;
}
footer a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: #ddd;
}
