@font-face {
  font-family: "Circular";
  src: url("../assets/circular-std-4.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
body {
  background-color: #fafafa;
  color: #333;
  font-family: "Circular", cursive, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  gap: 20px;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  top: 20px;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-card {
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  overflow: hidden;
  position: relative;
  padding-top: 60px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
.profile-card .card-banner {
  height: 90px;
  width: 100%;
  background-image: url("../assets/matcha.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.profile-card .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  z-index: 1;
}
.profile-card h2 {
  font-size: 20px;
  color: #333;
}
.profile-card .location {
  font-size: 14px;
  color: #999;
  margin-bottom: 16px;
}
.profile-card .bio {
  font-size: 14px;
  color: #777;
}
.profile-card .socials {
  margin-top: 12px;
}
.profile-card .socials a {
  display: inline-block;
}
.profile-card .socials a:nth-of-type(2),
.profile-card .socials a:nth-of-type(3) {
  display: inline-block;
  margin: 0 8px;
}
.profile-card .socials a img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}
.profile-card .socials a img:hover {
  transform: scale(1.1);
}

.skills {
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  overflow: hidden;
  position: relative;
  padding: 20px;
}
.skills .skills-banner {
  height: 90px;
  width: 100%;
  background-image: url("../assets/pancake.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.skills .skills-lists {
  padding-top: 75px;
}
.skills li {
  margin-bottom: 4px;
}
.skills li i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.navbar {
  max-width: 900px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  position: relative;
  padding: 20px;
}
.navbar .navbar-banner {
  height: 90px;
  width: 100%;
  background-image: url("../assets/matcha-gradient.jpg");
  background-size: cover;
  background-position: 50% 60%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.project {
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 20px 40px;
}

.btn {
  display: flex;
  gap: 20px;
}

.project-github .btn-view-code {
  display: inline-flex;
  align-items: center;
  padding: 12px 12px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.project-github .btn-view-code i {
  margin-right: 6px;
  font-size: 1rem;
}
.project-github .btn-view-code:link {
  background-color: #333;
  color: #fff;
}
.project-github .btn-view-code:visited {
  background-color: #333;
  color: #fff;
}
.project-github .btn-view-code:hover {
  background-color: #7f7e7e;
}

.live-demo .btn-live-demo {
  display: inline-flex;
  align-items: center;
  padding: 12px 12px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.live-demo .btn-live-demo i {
  margin-right: 6px;
  font-size: 1rem;
}
.live-demo .btn-live-demo:link {
  background-color: #7f7e7e;
  color: #fff;
}
.live-demo .btn-live-demo:visited {
  background-color: #7f7e7e;
  color: #fff;
}
.live-demo .btn-live-demo:hover {
  background-color: #c9c9c9;
}

.project-header p {
  color: #888;
}

.project-tech-tags span {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #558012;
  background-color: #c2e789;
  border-radius: 9999px;
  line-height: 1;
  white-space: nowrap;
}

.project-image {
  margin: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

.project-image img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 460px;
  }
}

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