#portrait,
#events,
#auto,
#galerie {
  scroll-margin-top: 140px;
}
h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  color: chocolate;
  font-family: ArchivoBlack-Regular;
  font-size: 24px;
}

.legal a {
  color: white;
}
.legal a:hover {
  color: chocolate;
  text-decoration: none;
}

.titel {
  position: sticky;
  top: calc(10vh + 34px);
  background: white;
  padding: 16px 0;
  margin: 0;
  z-index: 1;
}
.hero img {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  object-fit: cover; /* Center-Crop */
  object-position: center; /* Mittelpunkt bleibt */
  display: block;
}
.bilder {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
  margin-bottom: 64px;
}
.portraits-text {
  justify-content: center;
  margin: 32px 0px;
  background: white;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  flex-shrink: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.portraits-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.portraits img {
  width: 300px;
}

.events {
  display: flex;
 
}
.grufo {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.events .event-text {
  margin-left: 16px;
}

.grufo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex-grow: 1;
  width: 100%;
  height: 30vh;
}

/*Event*/

.fotos {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.fotos img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex-grow: 1;
  width: 100%;
  height: 30vh;
}
.event-text {
  justify-self: center;
  margin: 32px 0px;
  background: white;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  flex-shrink: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.event-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.auto {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.auto img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex-grow: 1;
  width: 100%;
  height: 30vh;
}
.cta-section {
  padding: 100px 20px;
  padding-bottom: 30vh;
  background: #f9f9f9;

  text-align: center;
}

/* Inhalt */
.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Überschrift */
.cta-section h2 {
  font-family: "ArchivoBlack-Regular", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: chocolate;
}

/* Button */
.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: chocolate;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: black;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 1280px) {
  .bilder {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .bilder {
    flex-wrap: wrap;
    justify-content: center;
  }
}
