body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: #fafafa;
  color: #222;
}
.hero {
  background: url("img/stories/stories_13.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.content {
  position: relative;
  z-index: 2;
  margin-top: 10%;
}
.content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.content a {
  text-decoration: none;
  background: #ff4b5c;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}
.content a:hover {
  background: #e43f50;
}
header {
  background-image: url("img/stories/stories_13.jpg");
  color: #fff;
  padding: 40px 0 20px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}
header h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 2px;
}
header p {
  margin: 10px 0 0 0;
  font-size: 1.1em;
  color: #bbb;
}
nav {
  display: flex;
  justify-content: center;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav button {
  background: none;
  border: none;
  margin: 0 24px;
  font-size: 1em;
  color: #222;
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
nav button.active,
nav button:hover {
  border-bottom: 2px solid #222;
}
.section {
  display: none;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}
.section.active {
  display: block;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.gallery img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.03);
}
.bio,
.contact {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin-top: 24px;
}
.bio h2,
.contact h2 {
  margin-top: 0;
}
@media (max-width: 700px) {
  header h1 {
    font-size: 1.5em;
  }
  .bio,
  .contact {
    padding: 18px;
  }
}

/* Galerie-Filter Buttons */
#work > div > button {
  background: #f3f3f3;
  border: none;
  margin: 12px 8px 0 0;
  font-size: 1em;
  color: #333;
  cursor: pointer;
  padding: 8px 22px;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(34, 34, 34, 0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.13s;
  font-weight: 500;
}

#work > div > button.active,
#work > div > button:hover {
  background: #222;
  color: #fff;
  box-shadow: 0 3px 10px rgba(34, 34, 34, 0.1);
  transform: translateY(-1px) scale(1.03);
}

.bio {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin-top: 24px;
}

.bio-img {
  width: 360px;
  max-width: 50vw;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  flex-shrink: 0;
}

.bio-text {
  flex: 1;
  min-width: 0;
}

@media (max-width: 700px) {
  .bio {
    flex-direction: column;
    align-items: center;
    padding: 18px;
    gap: 18px;
  }
  .bio-img {
    width: 100%;
    max-width: 280px;
    margin-bottom: 12px;
  }
  .bio-text {
    text-align: center;
  }
}

.impressum {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  margin-bottom: 0px;
  font-size: 0.98em;
  position: relative;
  bottom: 0;
}

footer a {
  color: #fff;
  text-decoration: underline;
  margin-left: 12px;
  transition: color 0.2s;
}

footer a:hover {
  color: #ffd700;
}


