html {
  font-size: 16px; /* Assuming 1rem = 16px */
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.banner {
  background-image: url('./assets/images/banner.jpg');
  height: 100vh;
  background-position: 25% 75%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* Changed for mobile first */
}

.banner .halfscreen:first-of-type {
  height: 0px;
}

.banner .halfscreen {
  width: 100%; /* Full width on mobile */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo {
  margin-top: 3rem;
  width: 7.5rem;
  height: 7.5rem;
  margin-bottom: 1rem;
}

h1 {
  font-weight: 500;
  font-size: 2.5rem;
  color: #333;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 2rem;
  text-align: center;
}

.social-buttons {
  display: flex;
  margin-top: 3.125rem;
  margin-bottom: 3rem;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-size: 2rem;
  text-decoration: none;
  transition: background-color 0.3s;
  color: white;
}

.social-button.facebook {
  background-color: #1877f2;
}

.social-button.facebook:hover {
  background-color: #145dbf;
}

.social-button.instagram {
  background: #c13584;
}

.social-button.instagram:hover {
  background-color: #ae3077;
}

.social-button.tiktok {
  background: #000000;
}

.social-button.tiktok:hover {
  background-color: #333333;
}

.social-button.whatsapp {
  background: #25d366;
}

.social-button.whatsapp:hover {
  background-color: #1da851;
}

.social-button.mail {
  background: #d44638;
}

.social-button.mail:hover {
  background-color: #b33629;
}

@media (min-width: 768px) {
  .banner {
    flex-direction: row;
  }

  .banner .halfscreen {
    width: 50%;
    justify-content: center;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.75rem;
  }
  .social-buttons {
    margin-top: 6.25rem;
    margin-bottom: 3.125rem;
  }

  .social-button {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 1.5rem;
  }

  .logo {
    width: 9.5rem;
    height: 9.5rem;
    margin-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .social-buttons {
    justify-content: center;
    gap: 2rem;
  }

  .logo {
    width: 11rem;
    height: 11rem;
  }
}
