body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

.mountain {
  width: 100%;
  height: 55svh;
  overflow: hidden;
  margin: 0;
}

.mountain img {
  filter: brightness(50%);
}

.home-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgb(255, 255, 255);
}

.profile-info img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  margin-bottom: 20px;
}

.profile-info h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin: 10px 0;
}

.profile-info p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  font-style: italic;
}
.contact {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 0;
  border-top: 5px solid #4a4a4a;
  padding: 15px;
  background-color: #2f2f2f;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #e0e0e0;
}

.contact-item img {
  width: 20px;
}

.resume {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.resume h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  border-bottom: 2px solid#2f2f2f;
}

.resume h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.right {
  flex: 2;
  margin: 20px;
  padding: 40px;
}

.left {
  flex: 1;
  margin: 20px;
  padding: 40px;
  border-left: 4px solid #2f2f2f;
}

.profile {
  padding-bottom: 20px;
}

.profile p{
    text-align: justify;
}

.experience {
  padding-bottom: 20px;
}

.experience p {
  margin: 5px 0;
  font-size: 14px;
  color: #555;
}

.experience h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 0;
}

.education h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 0;
}

.education p {
  margin: 5px 0;
  font-size: 14px;
  color: #555;
}

.medsos {
  padding-bottom: 20px;
}

.medsos ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.medsos li {
  list-style: none;
  padding: 0;
}

.medsos img {
  width: 100px;
  margin: 0;
  padding: 0;
}

.skills {
  padding-bottom: 20px;
}

.skills .skill-item {
  margin-bottom: 15px;
}

.skills .skill-bar {
  background: #e0e0e0;
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
}

.skills .skill-level {
  background: #2f2f2f;
  height: 100%;
}

.languages {
  padding-bottom: 20px;
}

.languages .skill-item {
  margin-bottom: 15px;
}

.languages .skill-bar {
  background: #e0e0e0;
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
}

.languages .skill-level {
  background: #2f2f2f;
  height: 100%;
}

.portfolio h3 {
  text-align: center;
}
/* RESPONSIVE DESIGN - MOBILE */
@media (max-width: 768px) {
  .resume {
    flex-direction: column;
    gap: 0;
  }

  .right {
    flex: 1;
    margin: 20px 0;
    padding: 20px;
  }

  .left {
    flex: 1;
    margin: 20px 0;
    padding: 20px;
    border-left: none;
    border-top: 4px solid #2f2f2f;
  }

  .profile-info img {
    width: 150px;
    height: 150px;
  }

  .profile-info h1 {
    font-size: 18px;
  }

  .profile-info p {
    font-size: 14px;
  }

  .contact {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    width: 100%;
  }

  .medsos img {
    width: 70px;
  }
}

/* RESPONSIVE DESIGN - VERY SMALL MOBILE (< 480px) */
@media (max-width: 480px) {
  .profile-info {
    top: 35%;
  }

  .profile-info img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }

  .profile-info h1 {
    font-size: 16px;
    margin: 8px 0;
  }

  .profile-info p {
    font-size: 12px;
  }

  .contact {
    flex-direction: column;
    gap: 12px;
    padding: 10px;
    border-top: 3px solid #4a4a4a;
  }

  .contact-item {
    font-size: 12px;
  }

  .contact-item img {
    width: 16px;
  }

  .right {
    margin: 15px 0;
    padding: 15px;
  }

  .left {
    margin: 15px 0;
    padding: 15px;
  }

  .resume h2 {
    font-size: 18px;
  }

  .resume h3 {
    font-size: 14px;
  }

  .experience p,
  .education p {
    font-size: 12px;
  }

  .medsos img {
    width: 60px;
  }

  .skills .skill-item h3,
  .languages .skill-item h3 {
    font-size: 14px;
  }

  .profile p {
    font-size: 14px;
  }
}

ul {
  list-style-type: none;
  text-align: justify;
}