#home-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 8vh;
  padding: 300px 50px;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.623),
      rgba(255, 255, 255, 0.3)
    ),
    url("/assets/images/background-home.avif");
  background-size: cover;
  background-position: center;
}

#home-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 50%;
  margin-left: 200px;
}

#home-section h1 {
  font-size: 4.5rem;
  margin-bottom: 10px;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 10px #fff;
}

#home-section h2 {
  font-size: 4rem;
  margin-bottom: 10px;
  color: black;
  font-weight: bold;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 10px #fff;
}

#home-section p {
  font-size: 2rem;
  color: white;
  font-weight: 700;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(66, 66, 66, 0.4);
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 6s steps(19, end) infinite;
  -webkit-text-stroke: 1px rgb(145, 140, 140);
  text-stroke: 1px rgb(83, 82, 82);
}

@keyframes typing {
  0%,
  100% {
    width: 0;
  }
  50%,
  70% {
    width: 75%;
  }
}

#waving-hand-icon {
  width: 70px;
  height: 70px;
}

.social-icons {
  display: flex;
  margin-top: 30px;
  gap: 40px;
  align-items: center;
}

.social-icons div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px rgba(71, 71, 71, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.social-icons div:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px 10px #023e8a;
}

.social-icons img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.social-icons img:hover {
  transform: scale(1.1);
}

#home-profile-image-container {
  width: 350px;
  height: 430px;
  margin-top: 20px;
  margin-right: 200px;
  overflow: hidden;
  box-shadow: 0 5px 15px #232424;
  transition: all 0.5s ease-in-out;
  background-color: white;
  border-radius: 30px;
}

#home-profile-image {
  width: 100%;
  height: 90%;
  object-fit: cover;
  transform: scale(1.42);
  transition: all 0.5s ease-in-out;
  margin-left: 18px;
  margin-top: 18px;
}

#home-profile-image-container:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px 10px #023e8a;
  border-color: #023e8a;
}

@media (max-width: 1440px) {
  #home-section {
    padding: 180px 20px;
  }

  #home-content {
    margin-left: 150px;
  }

  #home-profile-image-container {
    width: 320px;
    height: 400px;
    margin-right: 150px;
  }
}

@media (max-width: 1024px) {
  #home-section {
    padding: 150px 20px;
  }

  #home-content {
    margin-left: 100px;
    max-width: 60%;
  }

  #home-section h1 {
    font-size: 3.5rem;
  }

  #home-section h2 {
    font-size: 3rem;
  }

  #home-section p {
    font-size: 1.6rem;
  }

  #home-profile-image-container {
    width: 300px;
    height: 380px;
    margin-right: 100px;
  }
}

@media (max-width: 900px) {
  #home-section {
    padding: 100px 20px;
  }

  #home-section h1 {
    font-size: 2.8rem;
  }

  #home-section h2 {
    font-size: 2.2rem;
  }

  #home-section p {
    font-size: 1.3rem;
  }

  #home-profile-image-container {
    width: 280px;
    height: 360px;
  }

  .social-icons {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  #home-section {
    flex-direction: column-reverse;
    padding: 120px 20px;
    text-align: center;
  }

  #home-content {
    align-items: center;
    margin-left: 0;
    max-width: 100%;
    margin-top: 40px;
  }

  #home-section h1 {
    font-size: 3rem;
  }

  #home-section h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  #home-section p {
    font-size: 1.4rem;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  #home-profile-image-container {
    width: 280px;
    height: 350px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  #home-profile-image {
    margin-left: 15px;
    margin-top: 15px;
  }

  #waving-hand-icon {
    width: 55px;
    height: 55px;
  }

  .social-icons {
    justify-content: center;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  #home-section {
    padding: 100px 20px;
    margin-top: 5vh;
  }

  #home-section h1 {
    font-size: 2.5rem;
  }

  #home-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  #home-section p {
    font-size: 1.2rem;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  #home-profile-image-container {
    width: 270px;
    height: 340px;
  }

  .social-icons {
    justify-content: center;
    gap: 30px;
  }

  .social-icons div {
    width: 50px;
    height: 50px;
  }

  .social-icons img {
    width: 35px;
    height: 35px;
  }

  #waving-hand-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 425px) {
  #home-section {
    padding: 80px 20px;
  }

  #home-section h1 {
    font-size: 2rem;
  }

  #home-section h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  #home-section p {
    font-size: 1rem;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  #home-profile-image-container {
    width: 250px;
    height: 320px;
    border-radius: 20px;
  }

  #home-profile-image {
    margin-left: 12px;
    margin-top: 12px;
  }

  .social-icons {
    justify-content: center;
    gap: 20px;
  }

  .social-icons div {
    width: 40px;
    height: 40px;
  }

  .social-icons img {
    width: 30px;
    height: 30px;
  }

  #waving-hand-icon {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 375px) {
  #home-section {
    padding: 60px 20px;
  }

  #home-section h1 {
    font-size: 1.8rem;
  }

  #home-section h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  #home-section p {
    font-size: 0.9rem;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  #home-profile-image-container {
    width: 200px;
    height: 250px;
  }

  .social-icons {
    justify-content: center;
    gap: 15px;
  }

  .social-icons div {
    width: 35px;
    height: 35px;
  }

  .social-icons img {
    width: 25px;
    height: 25px;
  }

  #waving-hand-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 320px) {
  #home-section {
    padding: 50px 20px;
  }

  #home-section h1 {
    font-size: 1.6rem;
  }

  #home-section h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  #home-section p {
    font-size: 0.8rem;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  #home-profile-image-container {
    width: 180px;
    height: 240px;
  }

  #home-profile-image {
    margin-left: 10px;
    margin-top: 10px;
  }

  .social-icons {
    justify-content: center;
    gap: 10px;
  }

  .social-icons div {
    width: 30px;
    height: 30px;
  }

  .social-icons img {
    width: 20px;
    height: 20px;
  }

  #waving-hand-icon {
    width: 35px;
    height: 35px;
  }
}
