@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");

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

:root {
  --main-color: #ffb400;
  --body-bg: #111;
  --txt-color: #fff;
  --toggle-color: #252525;
  --nav-bg-color: #2b2a2a;
  --cursor-color: 255, 199, 64;
  --title-bg: hsl(0deg 0% 82% / 7%);
  --reverse-color: #fff;
}

html {
  font-size: 62.5%;
  font-family: "Lato", "Poppins", sans-serif;
  width: 100%;
  overflow-x: hidden !important;
}
body {
  background-color: var(--body-bg);
  scroll-behavior: smooth;
  position: relative;
  overflow-y: hidden;
  width: 100vw;

  height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 12px;
}
.app {
  width: 100%;
  position: relative;
  height: 100vh;
}

.app__decorate {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  height: 100vh;
  background-color: var(--main-color);
  clip-path: polygon(0 0, 40% 0, 70% 100%, 0% 100%);
}

.app__container {
  position: absolute;
  top: 20%;
  left: 40%;
  color: var(--txt-color);
  width: 50%;
}

.app__avata--box {
  position: absolute;
  top: 10%;
  left: 5%;
  bottom: 10%;
  width: 28%;
}

.app__avata {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  box-shadow: 0px 1px 2px rgb(218, 210, 210);
}

.user__header--title {
  font-size: 4.8em;
  font-weight: bold;
}

.user__des {
  margin-top: 16px;
  font-size: 1.8rem;
  line-height: 1.6;
}
.user__jobs {
  color: var(--txt-color);
}
.btn--group {
  min-width: 180px;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.btn-text {
  display: block;
  padding: 16px 32px 16px 64px;
  z-index: 3;
  transition: all 0.4s ease-in-out;
}

.btn-icon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  color: var(--reverse-color);
  width: 55px;
  height: 100%;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.btn-icon i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.btn--group a {
  font-size: 1.7rem;
  text-decoration: none;
  color: var(--txt-color);
  font-weight: bold;
  text-transform: uppercase;
}

.color--hightlight {
  color: var(--main-color);
}

.btn--group :hover .btn-icon {
  background-color: transparent;
  width: 100%;
  border-radius: unset;
}

.btn--group :hover .btn-text {
  background-color: var(--main-color);
  padding: 16px 64px 16px 32px;
}

.user__footer {
  display: flex;
  margin-top: 24px;
}

/* darkmode */
.app__dark--mode {
  position: fixed;
  top: 40px;
  right: 20px;
}

/* button effect */
.btn__item {
  background-color: #444;
  outline: none;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--reverse-color);
  font-size: 18px;
}

.btn__item.active {
  background-color: var(--main-color);
}

/* direction */
.app__direct {
  position: fixed;
  top: 25%;
  right: 1%;
}
.nav__box {
  list-style-type: none;
}

.nav__item .btn__item i {
  font-size: 16px;
}

.nav__box li {
  margin: 24px 0;
}

.nav__box .nav__item {
  text-decoration: none;
  color: var(--reverse-color);
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
  border-radius: 40px;
}

.nav__box .nav__item h2 {
  position: absolute;
  top: 0;
  right: 0px;
  height: 50px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  background-color: var(--main-color);
  min-width: 100px;
  display: flex;
  text-align: left;
  align-items: center;
  border-radius: 40px;
  padding-right: 40px;
  padding-left: 30px;
  z-index: -1;
  text-shadow: 1px 0px 0px black;
  transition: 0.2s ease;
  visibility: hidden;
}

.nav__box .nav__item:hover .btn__item {
  background-color: var(--main-color);
}
.nav__box .nav__item:hover h2 {
  right: 10px;
  visibility: visible;
  font-size: 16px;
}

.content__title {
  position: relative;
}

.content__title .content__title--head {
  font-size: 5.6rem;
  text-align: center;
  font-weight: 900;
  color: var(--txt-color);
  padding: 8rem 0;
}

.content__title .content__title--head span {
  color: var(--main-color);
}

.content__title .content__title--sub__head {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  z-index: -1;
  font-size: 11rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: 10px;
  color: var(--title-bg);
}
.user__content {
  margin-bottom: 60px;
}
