@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&display=swap");

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  padding: 20px 40px;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);

  z-index: 1000;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO */
.logo {
  color: white;
  text-decoration: none;

  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;

  transition: 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  width: 100%;
  height: 100vh;

  background-image: url("../assets/images/bg-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}

/* OVERLAY */
.overlay {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;

  padding-bottom: 150px;
}

/* CONTAINER */
.social-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 20px;

  z-index: 10;
}

/* BOX WHATSAPP */
.whatsapp-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 55px;

  min-width: 420px;
  padding: 16px 26px;

  background: #64da7e;

  border-radius: 16px;

  color: white;
  text-decoration: none;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;

  box-shadow: none;

  transition: transform 0.25s ease;
}

.whatsapp-box i {
  font-size: 30px;
}

.whatsapp-box:hover {
  transform: translateY(-4px);
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 24px;
}

/* LINKS */
.social-icons a {
  color: white;
  font-size: 26px;

  transition: 0.3s ease;
}

/* HOVER */
.social-icons a:hover {
  transform: translateY(-4px);
  opacity: 0.7;
}

/* COPYRIGHT */
.copyright {
  position: fixed;
  bottom: 10px;
  left: 0;

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 20;

  pointer-events: none;
}

.copyright p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);

  letter-spacing: 1px;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero {
    background-image: url("../assets/images/bg-image-mobile.png");

    background-position: center;
    background-size: cover;
  }

  .header {
    padding: 18px 20px;
  }

  .logo {
    font-size: 16px;
  }

  .overlay {
    padding-bottom: 110px;
  }

  .whatsapp-box {
    width: min(90%, 360px);
    min-width: 0;
    padding: 13px 16px;
    gap: 8px;
    margin-bottom: 10px;

    font-size: 14px;
    letter-spacing: 0.04em;

    text-align: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: none;
  }

  .whatsapp-box i {
    font-size: 22px;
  }

  .social-icons {
    gap: 18px;
  }

  .social-icons a {
    font-size: 24px;
  }

  .copyright p {
    font-size: 10px;
    text-align: center;

    padding: 0 20px;
  }

}