/* ── Logo-Name auf der Startseite ausblenden (Name steht prominent im Hero) ── */
.logo-name {
  display: none;
}

/* ── Merriweather für Hero-Tags ── */
.home-hero-tags {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
}

/* ── Hero ── */
.home-hero {
  margin-top: 20px;
}

.home-hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-hero-text {
  width: 70%;
  padding-right: 15px;
  box-sizing: border-box;
}

.home-hero-name {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 3.55rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-text);
  margin-top: 130px;
  margin-bottom: 5px;
}

.home-hero-subtitle {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.78rem;
  color: var(--color-text);
  text-transform: uppercase;
  margin: 0;
}

.home-hero-tags {
  font-size: 1.16rem;
  color: var(--color-text);
  margin-top: 30px;
  margin-bottom: 35px;
  line-height: 1.6;
}

.home-hero-photo {
  width: 30%;
  min-height: 480px;
  background-size: 130%;
  background-repeat: no-repeat;
  background-position: 90% 70%;
}

/* ── Logos ── */
.home-logos {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #F0F0F1;
  padding: 20px 0;
  overflow: hidden;
}

.home-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logos-scroll 50s linear infinite;
}

@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.home-logos-track img {
  width: 300px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 2rem;
}

/* ── Responsive: Tablet (≤960px) ── */
@media screen and (max-width: 960px) {
  .home-hero-content {
    min-height: 480px;
    align-items: stretch;
  }

  .home-hero-name {
    margin-top: 65px;
  }

  .home-hero-text {
    width: 60%;
  }

  .home-hero-photo {
    width: 40%;
    min-height: unset;
    background-size: 130%;
    background-position: 90% 70%;
  }
}

/* ── Responsive: Mobile (≤600px) ── */
@media screen and (max-width: 600px) {
  .home-hero {
    margin-top: 0;
  }

  .home-hero-text {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .home-hero-name {
    font-size: 50px;
    line-height: 64px;
    margin-top: 1rem;
    margin-bottom: 10px;
  }

  .home-hero-subtitle {
    font-size: 25px;
    line-height: 40px;
  }

  .home-hero-tags {
    font-size: 1.16rem;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 25px;
  }

  .home-hero .home-btn {
    margin-bottom: 40px;
  }

  .home-hero-photo {
    width: 100%;
    min-height: 480px;
    background-size: 130%;
    background-position: 90% 70%;
    margin-bottom: 40px;
  }
}

/* ── Barrierefreiheit: Bewegung reduzieren ── */
@media (prefers-reduced-motion: reduce) {
  .home-logos-track {
    animation-play-state: paused;
  }
}
