:root {
  --font-proxima-nova: "proxima-nova", sans-serif;
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #ff004f;
  --color-primary-dark: #7a0032;
  --color-tertiary-dark: #0e0e0e;
  --color-dark-gray: #3a3a3a;
  --color-gray: #a7a7a7;
}
html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(50%);
  transition: all 1s;
  z-index: -1;
}

.shown {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  z-index: -1;
}

body {
  font-family: var(--font-proxima-nova);
  width: 100%;
  cursor: none;
}

a, button {
  cursor: none !important;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20em;
  padding: 1.5em 10em;
  position: fixed;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  transition: background-color 500ms ease-in-out, padding 500ms ease-in-out,
    font-size 100ms ease-in-out;
}

header.scroll {
  padding: 0.7em 1em;
  font-size: 1.1em;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px);
  z-index: +1;
}

header.scroll img {
  width: 80%;
}

.header--buttons li a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header--buttons li a:hover {
  color: var(--color-primary);
}

.header--logo {
  width: 100%;
  transition: 500ms ease-in-out;
}

.header--logo--button {
  width: 20rem;
}

.header--logo--button :hover {
  width: 21rem;
}

.header--buttons {
  display: flex;
  gap: 2em;
}

.landing-page {
  background-color: var(--color-black);
  width: 100%;
  min-height: 100vh;
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.introduction {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: 100vh;
}

.highlight-word {
  color: var(--color-white);
  font-weight: 700;
  transition: color 0.3s ease;
}

.highlight-word:hover {
  color: var(--color-primary);
}

.introduction h1 {
  color: var(--color-white);
  font-size: 10rem;
  font-weight: 800;
  text-align: center;
}

.introduction img {
  width: 50%;
  object-fit: contain;
}

.meet-our-team {
  color: var(--color-white);
  font-size: 5rem;
  font-weight: 1000;
}

.landing-page-content {
  max-width: 1800px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}


.luna, .electro, .feedy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 75%;
}

.luna, .feedy {
  flex-direction: row; 
}

.electro {
  flex-direction: row-reverse;
}

.luna img,
.electro img,
.feedy img {
  width: 40%;
  max-width: 40%;
}

.luna h1, .electro h1, .feedy h1 {
  color: var(--color-white);
  margin: 0 0 1rem;
  font-size: 3rem;
}

.luna p, .electro p, .feedy p {
  color: var(--color-gray);
  line-height: 1.4;
  font-size: 2rem;
  margin: 0 0 1rem;
}

.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 2rem 10rem;
  font-size: 2rem;
}

.footer a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: var(--color-primary);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.footer-column {
  flex: 1 1 300px;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
.footer-column h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
}
.footer-column p {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: var(--color-gray);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-left a {
  margin-right: 1rem;
}
.footer-center,
.footer-right {
  margin: 0.5rem 0;
}

@media screen and (max-width: 768px) {
  header {
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    padding: 1em 2em;
    font-size: 1.2rem;
  }

  .header--logo--button {
    width: 12rem;
  }

  .header--buttons {
    flex-direction: column;
    gap: 1em;
  }

  .introduction {
    flex-direction: column;
    gap: 2rem;
    height: auto;
    padding: 2rem 1rem;
  }

  .introduction h1 {
    font-size: 4rem;
  }

  .introduction img {
    width: 80%;
    max-width: 300px;
  }

  .landing-page {
    min-height: auto;
    padding: 15rem 0;
  }

  .landing-page-content {
    width: 90%;
    gap: 3rem;
  }

  .luna, .electro, .feedy {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }

  .luna img, .electro img, .feedy img {
    width: 60%;
    max-width: 300px;
    margin-bottom: 1rem;
  }

  .luna h1, .electro h1, .feedy h1 {
    font-size: 2.4rem;
  }

  .luna p, .electro p, .feedy p {
    font-size: 1.6rem;
  }

  .footer {
    padding: 0rem 1.5rem;
    font-size: 1.3rem;
  }
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-column {
    margin-right: 0;
  }
  .footer-column h3 {
    font-size: 1.6rem;
  }
}