* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "acumin-pro", sans-serif;
  color: black;
  background-color: white;
}

p {
  line-height: 1.4;
}

html {
  scroll-behavior: smooth;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url("images/hero-image.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .logo {
  position: absolute;
  align-items: center;
  top: 80px;
}
.hero .logo img {
  width: 260px;
}
.hero-content {
  text-align: center;
  position: absolute;
  bottom: 60px;
  color: #fff;
  max-width: 600px;

  border-radius: 8px;
}
.hero-content h1 {
  font-size: 40px;
  font-family: "kepler-std", serif;
  font-weight: normal;
}
.hero-content .scroll-down {
  display: inline-flex;
  width: 50px;
  height: 50px;
  animation: bounce 2s infinite;
  transition: background 0.3s;
  margin-top: 40px;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Intro */
.intro {
  text-align: center;
  padding: 180px 1rem 180px 1rem;
  max-width: 1600px;
  margin: 0 auto;
}
.intro h1 {
  text-transform: uppercase;
  font-weight: normal;
  color: #911851;
  font-size: 16px;
}
.intro h2 {
  margin: 30px auto;
  font-size: 40px;
  font-family: "kepler-std", serif;
  font-weight: normal;
  color: #911851;
  width: 66%;
  justify-items: center;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #911851;
  color: #911851;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
  margin-top: 44px;
  text-transform: uppercase;
}
.btn:hover {
  background: #911851;
  color: #fff;
}

/* Partners */
.partners {
  padding: 0 150px;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto;
}
.partners h2 {
  margin-bottom: 2rem;
  color: #911851;
  font-size: 16px;
  font-weight: normal;
}
.partners h3 {
  color: #911851;
  font-size: 40px;
  font-weight: normal;
  font-family: "kepler-std", serif;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}
.logos-grid img {
  width: 80%;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}

.logos-grid img:hover {
  filter: none;
  opacity: 1;
}

.outro {
  text-align: center;
  padding: 200px 1rem 220px 1rem;
  max-width: 1600px;
  margin: 0 auto;
}
.outro h2 {
  text-transform: uppercase;
  font-weight: normal;
  color: #911851;
  font-size: 16px;
}
.outro h3 {
  margin: 30px auto;
  font-size: 40px;
  font-family: "kepler-std", serif;
  font-weight: normal;
  color: #911851;
  max-width: 700px;
  justify-items: center;
}

.outro p,
.outro a {
  color: #911851;
}

.outro p {
  max-width: 380px;
  margin: 0 auto;
  font-size: 18px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background-color: #be9e55;
  padding: 80px 0;                /* Padding auf dem Container, nicht auf dem Track */
}

.marquee-track {
  display: flex;
  width: max-content;             /* Track so breit wie Inhalt */
  will-change: transform;
  animation: marquee 15s linear infinite;
}

.marquee-copy {
  flex: 0 0 auto;                 /* Verhindert Schrumpfen */
  display: inline-flex;
  align-items: center;
}

.marquee-copy span {
  white-space: nowrap;
  font-size: 120px;
  font-family: "kepler-std", serif;
  color: #fff;
  margin-right: 30rem;   
  text-transform: uppercase;
}

/* Nahtloser Loop: halbe Track-Breite (zwei identische Kopien, kein Extra-Gap dazwischen) */
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Bonus: respektiert reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: none; }
}


footer {
  background: #911851;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.footer-main {
  display: flex;
  justify-content: center;
  padding: 135px 1rem 120px 1rem;
}
.footer-info {
  display: flex;
  gap: 50px;
  align-items: center;
}

.footer-line {
  width: 1px;
  background-color: #fff;
  align-self: stretch;
}
.footer-content p {
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: normal;
}

/* Footer Bottom */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* links | Mitte | rechts */
  align-items: center;
  padding: 0 35px 55px 35px;
  gap: 16px; /* optional */
}

.footer-bottom .copyright {
  font-size: 18px;
  justify-self: start; 
  align-self: end;
}

.footer-center {
  grid-column: 2;      
  text-align: center;  
  margin: 0;        
  font-size: 18px;   
}

.footer-bottom .footer-links {
  justify-self: end;   
  display: flex;
  gap: 16px;
}

.footer-bottom a {
  color: #fff;
}
.footer-bottom p {
  text-align: center;
}
.footer-links a {
  margin-left: 1rem;
  font-size: 18px;
  color: #fff;
}

.footer-content a {
  color: #fff;
}
.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content h1,
  .intro h2,
  .outro h3 {
    font-size: 28px;
    width: 100%;
  }

  .outro h3 {
    max-width: 400px;
  }

  .intro h1,
  .outro h2,
  .footer-bottom .copyright,
  .footer-links a {
    font-size: 15px;
  }

  .hero .logo img {
    width: 185px;
  }

  .hero-content {
    bottom: 50px;
  }

  .hero .logo {
    top: 55px;
  }

  .intro {
    padding: 120px 1rem 100px 1rem;
  }

  .outro {
    padding: 120px 1rem 100px 1rem;
  }

  .intro h2 {
    width: 100%;
  }

  .outro h2 {
    width: 100%;
  }

  .partners {
    padding: 1rem;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .marquee {
    padding: 30px;
  }

  .marquee-copy span {
    font-size: 60px;
  }

  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 25px;
    gap: 20px;
    width: 100%;
    padding-right: 15px;
  }

  .footer-info img {
    padding-left: 10px;
  }
  .footer-main {
    margin-top: 30px;
    padding: 0;
    justify-content: left;
    width: 100%;
  }

  .footer-content p {
    font-size: 18px;
  }

  .footer-line {
    width: 100%;
    background-color: #fff;
    height: 1px;
    margin-top: 90px;
  }

  .footer-bottom {
    display: block;
    padding-top: 130px;
    padding-bottom: 35px;
    align-items: baseline;
    padding-left: 25px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
  }
  .footer-bottom .copyright {
    order: 2;
    justify-self: start;
    align-self: start; 
  }
  .footer-bottom .footer-links {
    order: 1;
  }
  .footer-bottom p {
    text-align: left;
    margin-bottom: 20px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-links a {
    margin-left: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
