body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: #09090b;
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes typingReveal {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blinkCursor {
  0%, 45% {
    border-color: transparent;
  }
  50%, 100% {
    border-color: #10b981;
  }
}

.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(9, 9, 11, 0.9);
  backdrop-filter: blur(12px);
  z-index: 50;
  border-bottom: 1px solid #27272a;

  .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

    h1 {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    .nav-links {
      display: none;
      gap: 2rem;
      font-size: 0.875rem;
      font-weight: 500;

      @media (min-width: 768px) {
        display: flex;
      }

      a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;

        &:hover {
          color: #10b981;
        }
      }
    }
  }
}

.hero-bg {
  background: rgb(21, 21, 21);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5.5rem;

  @media (min-width: 768px) {
    padding-top: 4rem;
  }

  .hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;

    @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;

      h2 {
        font-size: 3rem;
        line-height: 1.2;
        font-weight: 700;

        @media (min-width: 768px) {
          font-size: 4.5rem;
        }

        .text-emerald {
          color: #10b981;
        }
      }

      .subtitle {
        font-size: 1.5rem;
        color: #a1a5ab;

        @media (min-width: 768px) {
          font-size: 1.875rem;
        }
      }

      .description {
        font-size: 1.125rem;
        color: #a1a5ab;
        max-width: 28rem;
      }

      .button-group {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;

        a {
          padding: 1rem 2rem;
          border-radius: 1rem;
          font-weight: 600;
          transition: all 0.3s;
          text-decoration: none;
          cursor: pointer;
          display: inline-block;

          &.btn-primary {
            background-color: #10b981;
            color: #ffffff;

            &:hover {
              background-color: #059669;
            }

            &:active {
              transform: scale(0.95);
            }
          }

          &.btn-secondary {
            border: 1px solid #a1a5ab;
            color: #ffffff;

            &:hover {
              background-color: #ffffff;
              color: #09090b;
            }
          }
        }
      }
    }

    .hero-image {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: zoomInFade 0.9s ease-out both;

      img {
        width: min(100%, 30rem);
        /* height: auto; */
        border-radius: 1.5rem;
        /* object-fit: contain; */
        object-position: center;
        display: block;

        @media (min-width: 768px) {
          width: min(100%, 35rem);
        }
      }
    }
  }
}

section.about {
  padding: 5rem 0;
  background-color:  rgb(21, 21, 21);

  .about-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;

    h2 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 2rem;
    }

    p {
      font-size: 1.125rem;
      color: #d4d4d8;
      line-height: 1.625;
    }
  }
}

section.projects {
  padding: 6rem 0;
  background-color: transparent;

  .projects-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    cursor: pointer;

    h2 {
      font-size: 2.25rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 3rem;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;

      @media (min-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
      }

      @media (min-width: 1024px) {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  }
}

section.skills {
  padding: 6rem 0;
  background-color: #18181b;

  .skills-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;

    h2 {
      font-size: 2.25rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 3rem;
    }

    .skills-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;

      @media (min-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
      }

      @media (min-width: 1024px) {
        grid-template-columns: repeat(5, 1fr);
      }

      > div {
        background-color: #27272a;
        padding: 1.5rem;
        border-radius: 1rem;
        text-align: center;
      }
    }
  }
}

section.contact {
  padding: 6rem 0;
  background-color: #09090b;

  .contact-container {
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;

    h2 {
      font-size: 2.25rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    p {
      color: #a1a5ab;
      margin-bottom: 2.5rem;
    }

    a {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background-color: #ffffff;
      color: #09090b;
      font-weight: 600;
      padding: 1.25rem 2.5rem;
      border-radius: 1rem;
      text-decoration: none;
      transition: all 0.3s;
      font-size: 1.125rem;

      &:hover {
        background-color: #10b981;
        color: #ffffff;
      }
    }
  }
}

footer {
  padding: 3rem 0;
  border-top: 1px solid #27272a;
  text-align: center;
  color: #737373;
  font-size: 0.875rem;
}

.project-card {
  background-color: #18181b;
  border-radius: 1.875rem;
  overflow: hidden;
  transition: all 0.3s ease;

  &:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  }

  img {
    width: 100%;
    height: 13rem;
    object-fit: cover;
  }

  .project-content {
    padding: 1.75rem;

    h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    p {
      color: #a1a5ab;
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .tech-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;

      span {
        font-size: 0.75rem;
        background-color: #27272a;
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
      }
    }

    a {
      color: #10b981;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;

      &:hover {
        color: #059669;
      }

      i {
        margin-left: 0.5rem;
      }
    }
  }
}

/*# sourceMappingURL=main.css.map */
