#hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  align-items: start;
  padding: 30px;
  background-image: url("../images/MeNoBG.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  background-color: antiquewhite;
}
#hero > h1 {
  font-family: "playfair Display";
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}
#hero > p {
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.5;
}
#hero > button {
  width: 360px;
  padding: 18px 30px;
  background: transparent;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid black;
  border-radius: 3px;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

#hero > button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #2c98f0;
  z-index: -1;
  transition: left 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

#hero > button:hover {
  color: white;
  border-color: #2c98f0;
  box-shadow: 0 10px 30px rgba(44, 152, 240, 0.3);
  transform: translateY(-2px);
}

#hero > button:hover::before {
  left: 0;
}

.hero__social {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.hero__social a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(1, 8, 14, 0.1);
  color: #000000;
  border-radius: 50%;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(44, 152, 240, 0.3);
}

.hero__social a:hover {
  background-color: #2c98f0;
  color: white;
  transform: translateY(-5px);
  border-color: #2c98f0;
  box-shadow: 0 10px 25px rgba(44, 152, 240, 0.3);
}

.hero__social a i {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .hero__social {
    margin-top: 40px;
    gap: 15px;
  }

  .hero__social a {
    width: 42px;
    height: 42px;
  }

  .hero__social a i {
    font-size: 1.1rem;
  }
}
