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

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 100px 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: 10px;
}
.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: 100px 1rem 180px 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;
  width: 66%;
  justify-items: center;
}

footer {
  background: #911851;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.footer-main {
  display: flex;
  justify-content: center;
  padding: 160px 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: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 35px 20px 35px;
}
.footer-bottom .copyright {
  font-size: 16px;
}
.footer-links a {
  margin-left: 1rem;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

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

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

  .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);
  }

  .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: 17px;
  }

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

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: self-end;
    padding-top: 130px;
    padding-bottom: 35px;
  }

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