body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
  background-color: #fff;
}

header {
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo {
  font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 8rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('bilder/hintergrund.jpg') center/cover no-repeat;
  filter: blur(5px);
  z-index: -1;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 2rem;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #c59d5f;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.about, .services, .gallery, .contact {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.about p {
  line-height: 1.8;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.card {
  flex: 1;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 200px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

footer {
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}