@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap");

#start-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("assets/giving-black.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 1;
  gap: 5rem;
  font-size: 2.618rem;
  text-align: center;
}

#start-section > .logo {
  height: max(10vw, 10vh);
  width: auto;
  margin-bottom: 20px;
}

#start-text {
  font-size: 2.618vw;
  font-weight: bold;
  line-height: 3rem;
  margin-bottom: 20px;
}

.call-to-action {
  border-radius: 100px;
  background-color: rgb(92, 186, 227);
  width: fit-content;
  text-align: center;
  height: fit-content;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: white;
  text-decoration: none;
  transition: background-color 0.5s;
  z-index: 10;
  font-size: 20px;
}

.call-to-action:hover {
  background-color: rgb(77, 158, 193);
}

#socials {
  display: flex;
  padding: 3rem;
  font-size: 1.618rem;
}

#promotional-video-wrapper {
  width: 60%;
  aspect-ratio: 16/9;
  position: relative;
  z-index: -1;
}

#promotional-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#socials-column {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  justify-content: center;
  flex: 1;
  align-items: center;
}

#socials-column > a {
  text-decoration: none;
  transition: ease 0.4s;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: black;
}

#socials-column > a > p {
  transition: color 0.5s;
}

.font-awesome {
  width: 1.5rem;
  text-align: center;
}

.insta-link-text:hover {
  color: transparent;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: -webkit-radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.twitter-link-text:hover {
  color: rgb(28, 137, 221);
}

.dc-link-text:hover {
  color: rgb(77, 90, 234);
}

.yt-link-text:hover {
  color: rgb(239, 15, 22);
}

.linkedin-link-text:hover {
  color: rgb(14, 86, 173);
}

#who-are-we {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("assets/3botellas.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: -10;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  font-size: 1.2rem;
}

#who-are-we > p {
  margin-inline: 3rem;
}

#pillars {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-inline: 3rem;
}

.pillar {
  margin-top: 1rem;
  flex: 1;
  align-self: flex-start;
}

.pillar > h3 {
  font-weight: bolder;
  margin-bottom: 1rem;
}

.pillar > p {
  text-align: justify;
}

/* RESPONSIVENESS */

@media only screen and (max-width: 1000px) {
  #start-text {
    font-size: 30px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 750px) {
  #socials {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #pillars {
    flex-direction: column;
  }
}

@media only screen and (max-width: 600px) {
  #pillars {
    margin-inline: 1rem;
    position: relative;
  }
  #pillars-wrapper {
    width: 100%;
    height: 100vh;
    background-image: url("assets/3botellas.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: -10;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    font-size: 1.2rem;
  }
  #who-are-we {
    height: fit-content;
    margin-top: 2vw;
    background-image: none;
    color: black;
  }
  #who-are-we > p {
    margin-inline: 1rem;
  }
}
