@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

html {
  scroll-behavior: smooth;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
:root{
  --bp: transparent;
  --bs: #0006;
  --br: #27272a;
  --g1: #388e3c;
  --g2: #4caf50;
  --w1: #fff;
  --w2: #bdbdbd;
  --b1: #000;
}

/*Area Portfolio*/

a{
  text-decoration: none;
  color: var(--w1);
  transition: all .3s ease;
}

a:hover{
  color:var(--g1) !important;
}

.body{
  background: var(--bp);
  padding: 20px;
  animation: fadeInAnimation ease 2s;
}

nav {
  display: flex;
  gap: 20px;
}

nav .logo {
  height: 64px;
  width: 64px;
  background: var(--bs);
  border: 1px solid var(--br);
  backdrop-filter:blur(3px);
  box-shadow:0 4px 10px #0000004d;
  border-radius: 48px;
  display: grid;
  place-content: center;
}

nav .logo img{
  height: 60px;
  width: auto;
}

nav .links{
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 66px;
  background: var(--bs);
  border: 1px solid var(--br);
  backdrop-filter:blur(3px);
  box-shadow:0 4px 10px #0000004d;
  border-radius: 48px;
}

nav .links a{
  font-size: 20px;
}

nav .links a.active{
  font-weight: bold;
  color: var(--g1);
}

.about{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 42px;
  background: var(--bs);
  border: 1px solid var(--br);
  backdrop-filter:blur(3px);
  box-shadow:0 4px 10px #0000004d;
  border-radius: 14px;
  margin-top: 20px;
}

.about .left h3{
  color: var(--w2);
  font-size: 24px;
  font-weight: 400;
}

.about .left .info{
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about .left .info h2{
  font-size: 36px;
  color: var(--w1);
  font-weight: 500;
}

.about .left .info p{
  font-size: 20px;
  color: var(--w2);
}

.about .left .info .buttons{
  display: flex;
  gap: 14px;
}

.about .left .info .buttons button{
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all .3s ease;
}

.about .left .info .buttons button.hire{
  color: var(--w1);
  background: var(--g1);
  border: 1px solid var(--bp);
}

.about .left .info .buttons button.hire:hover{
  background: var(--g2);
}

.about .left .info .buttons button.email{
  color: #bdbdbd;
  border: 1px solid var(--br);
  background: var(--bp);
}

.about .left .info .buttons button.email:hover{
  background: var(--b1);
}

.about .right a.online,
footer a.online{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bp);
  border: 1px solid var(--br);
  padding: 4px 15px;
  border-radius: 14px;
  font-size: 13px;
}

.about .right a.online i,
footer a.online i{
  color: var(--g2);
  font-size: 9px;
}

.about .right img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 8px solid var(--br);
  object-fit: cover;
  margin-top: 70px;
}

.works{
  display: flex;
  gap: 20px;
  margin-top: 80px;
}

.works .left{
  flex: 1;
  padding: 60px 40px;
  background: var(--bs);
  border: 1px solid var(--br);
  backdrop-filter:blur(3px);
  box-shadow:0 4px 10px #0000004d;
  border-radius: 14px;
}

.works .left h3{
  color: var(--w2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}

.works .left h3 i{
  font-size: 8px;
}

.works .left .works-list{
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.works .left .works-list .item{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.works .left .works-list .item .work-info h5{
  color: var(--w1);
  font-size: 24px;
  font-weight: 500;
}

.works .left .works-list .item .work-info h5.active{
  color: var(--g1);
}
.works .left .works-list .item .work-info p{
  margin-top: 12px;
  color: var(--w2);
  font-size: 20px; 
}

.works .left .works-list .item > p{
  font-size: 20px;
  color: var(--w2);
}

.works .right{
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 40% auto;
  gap: 20px;
}

.works .right .item:first-child{
  grid-column: span 2;
}

.works .right .item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  background: var(--bs);
  border: 1px solid var(--br);
  backdrop-filter:blur(3px);
  box-shadow:0 4px 10px #0000004d;
  border-radius: 14px;
  cursor: pointer;
  transition: all .3s ease;
}

.works .right .item:hover a{
  color: var(--g1);
}

.works .right .item a{
  font-size: 24px;
  font-weight: 500;
}

.works .right .item > p{
  color: white;
  font-size: 17px;
  line-height: 26px;
}

.works .right .item:not(:first-child){
  gap: 14px;
}

.works .right .item:not(:first-child) a{
  font-size: 18px;
}

.works .right .item:not(:first-child) p{
  font-size: 15px;
}

footer{
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  background: var(--bs);
  border: 1px solid var(--br);
  backdrop-filter:blur(3px);
  box-shadow:0 4px 10px #0000004d;
  padding: 45px;
  border-radius: 14px;
}

footer > a{
  font-size: 24px;
  font-weight: 500;
}

footer .socials{
  display: flex;
  align-items: center;
  gap: 12px;
}

footer .socials a{
  font-size: 20px;
  font-weight: 500;
  color: var(--w2);
}

.logo-footer img{
  height: 60px;
  width: auto;
}

@keyframes fadeInAnimation{
  0%{
    opacity: 0;
  }
  100%{   
    opacity: 1;
  }
}

@media screen and (max-width: 1220px) {
  
  .about{
    padding: 60px 30px;
  }

  .works {
    flex-direction: column;
  }

  .works .right .item,
  footer{
    padding: 40px 30px;
  }

  .works .right{
    grid-template-rows: auto auto;
  }
}

@media screen and (max-width: 992px) {
  nav .links{
    padding: 0 40px;
  }

  footer > a{
    font-size: 20px;
  }

  footer .socials a{
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  nav .links a{
    font-size: 16px;
  }

  .about{
    flex-direction: column-reverse;
    gap: 20px;
    padding: 30px;
  }
  
  .about .left .info{
    margin-top: 30px;
  }

  .about .right img{
    margin-top: 20px;
  }

  footer a.online{
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .about .left .info h2{
    font-size: 30px;
  }
  .about .left .info p,
  .works .left .works-list .item .work-info p,
  .works .left .works-list .item > p{
    font-size: 16px;
  }
  .about .left .info .buttons button{
    font-size: 14px;
  }

  .works .left .works-list{
    margin-top: 40px;
  }

  .works .left .works-list .item .work-info h5,
  .works .right .item a{
    font-size: 20px;
  }

  .works .right .item > p,
  .works .right .item:not(:first-child) a {
    font-size: 14px;
  }

  .works .right .item:not(:first-child) p {
    font-size: 13px;
  }
}
