/* ── 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: 60px;
}

.home-hero-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.home-hero-text {
  flex: 1;
  min-width: 0;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
}

.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: 0;
  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: 0;
  line-height: 1.6;
}

.home-hero .home-btn {
  margin-top: 35px;
  align-self: flex-start;
}

.home-hero-photo {
  width: 35%;
  flex-shrink: 0;
}

.home-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── 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: Stack (≤900px) ── */
@media screen and (max-width: 900px) {
  .home-hero {
    margin-top: 30px;
  }

  .home-hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .home-hero-text {
    padding-top: 20px;
  }

  .home-hero-photo {
    width: 100%;
    max-width: 480px;
  }
}

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

  .home-hero-text {
    text-align: center;
    padding-top: 10px;
  }

  .home-hero-name {
    font-size: 50px;
    line-height: 64px;
    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;
  }

  .home-hero .home-btn {
    margin-top: 30px;
    margin-bottom: 40px;
    align-self: center;
  }

  .home-hero-photo {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

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