@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   scroll-behavior: smooth;
   font-family: "Poppins", serif;
}

body {
    background-color: #222831;
    margin: 0;
    cursor: none;
}

.cursor-dot, .cursor-circle {
      position: fixed;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 999999;
}

.cursor-dot {
      width: 10px;
      height: 10px;
      background-color: #00adb5;
      border-radius: 50%;
}

.cursor-circle {
      width: 40px;
      height: 40px;
      border: 2px solid #eeeeee;
      border-radius: 50%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem auto;
    max-width: 1200px;
}

.navigation ul{
    display: flex;
    list-style-type: none;
    gap: 2rem;
}

.navigation a{
    text-decoration: none;
    color: #eeeeee;
}

.navigation a:hover{
    color: #0080ff;
}

hr {
    opacity: 10%;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
    max-width: 1200px;
}

.arrow {
    position: absolute;
    transform: translateX(-5.5rem) translateY(1.5rem);
}

.herosub {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.name {
    font-size: 3rem;
    color: white;
}

.title {
    font-size: 4rem;
    color: #00adb5;
}

.herobtns {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hireme {
    background-color: #00adb5;
    color: #eeeeee;
    border-radius: 24px;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

.aboutme {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
    max-width: 1200px;
    gap: 10rem;
}

.textcon {
    display: flex;
    flex-direction: column;
}

.texttitle {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 2rem;
}

.aboutname {
    color: #eeeeee;
}

.abouttitle {
    color: #00adb5;
}

.aboutmepar {
    text-align: justify;
    color: rgba(238, 238, 238, 0.75);
}

.works {
    background-image: url("assets/svg/background.svg");
    padding: 10rem 10rem;
    margin: 5rem 0rem;
}

.workcon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: left;
    margin: 5rem auto;
    max-width: 1200px;
}

.projecttitel {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    font-size: 2rem;
}

.works ul{
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: space-between;
}

.works li{
    border-radius: 16px;
    background-color: rgba(57, 62, 70, 0.5);
    backdrop-filter: blur(4px);
    padding: 1rem 4rem;
}

.works li img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: transform 0.2s;
}

.works li :hover {
    transform: scale(1.5);
}

.lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .lightbox-overlay img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
      animation: zoomIn 0.3s ease;
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.8);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
      color: white;
      cursor: pointer;
      font-weight: bold;
    }

.contactcon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.contacttitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 2rem;
}

.contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5rem;
    gap: 20rem;
}

.contacts h3, .contacts a {
    color: #eeeeee;
    text-decoration: none;
}

.emailAndPhone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.emailAndPhone h3:hover {
    color: #0080ff;
}

.socialmedia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.socialmedia a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: rgba(57, 62, 70, 0.5);
    backdrop-filter: blur(4px);
    padding: 1rem;
}

.socialmedia img {
    width: 24px;
    height: 24px;
}

footer {
  color: #eeeeee;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

footer p {
  display: flex; align-items: center; gap: 8px;
}

footer a {
  width: 20px;
  height: 20px;
}

footer p:hover {
    color: #0080ff;
}

@media (max-width: 1023px) {
  header {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .hero {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .heroImg {
    width: 400px;
  }
  .name,
  .title {
    font-size: 2rem;
  }
  .arrow {
    display: none;
  }
  .aboutme {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
  .textcon {
    align-items: center;
    margin: 0rem 5rem;
    gap: 1rem;
  }
  .aboutname,
  .abouttitle {
    font-size: 2rem;
  }
  .light {
    width: 60px;
  }
  .abboutMeImg {
    width: 400px;
  }
  .works {
    padding: 0;
  }
  .workcon {
    padding: 5rem 0rem;
    gap: 3rem;
  }
  .projecttitel {
    margin-left: 1rem;
  }
  .works ul {
    flex-direction: column;
    gap: 1rem;
  }
  .contactcon {
    margin: 10rem 5rem;
    gap: 2rem;
  }
  .contacts {
    flex-direction: column;
    gap: 1rem;
    margin-right: 0;
  }
}