@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@700;800&family=Inter:ital,wght@0,400;0,600;1,400&display=swap");
* {
  box-sizing: border-box;
}

h1 {
  font-size: 250%;
  margin: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a;
  color: #f8fafc;
  flex-direction: column;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  gap: 2.5rem;
  margin: 0;
  min-height: 100vh;
  padding: 2rem;
}

.container {
  display: grid;
  gap: 1.5rem;
  grid-template-areas: "A U" "S S" "Ed Ex";
  grid-template-columns: 1fr 1fr;
  max-width: 120ch;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
  }
}

.card {
  background: #1e293b;
  border: 1px solid rgb(44.191011236, 60.3943820225, 86.908988764);
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card:hover {
  border-color: #818cf8;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}
.card h2 {
  color: #f8fafc;
  font-family: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

#about {
  grid-area: A;
}
#about .content-wrapper {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  #about .content-wrapper {
    flex-direction: column;
  }
}
#about img {
  border: 3px solid #0f172a;
  border-radius: 50%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100px;
}
#about p {
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

#updates {
  grid-area: U;
}
#updates > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#updates > div > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
#updates .update-preview {
  color: #cbd5e1;
  font-size: 0.9rem;
  overflow: hidden;
}
#updates .date-badge {
  color: rgb(208.2, 217.2, 228);
  font-size: 0.75rem;
  font-style: italic;
}

#skills {
  grid-area: S;
}
#skills .tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
#skills .tag {
  background: rgb(37.095505618, 50.6971910112, 72.954494382);
  border: 1px solid rgba(129, 140, 248, 0.4);
  border-radius: 50px;
  color: #818cf8;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: all 0.2s;
}
#skills .tag:hover {
  background: rgba(129, 140, 248, 0.2);
  border-color: #818cf8;
  color: rgb(141.6, 151.5, 248.7);
}

#experience {
  grid-area: Ex;
}
#experience ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
#experience li {
  color: #cbd5e1;
}
#experience li::before {
  color: #818cf8;
  content: "•";
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 0;
  margin-right: 0.5rem;
}

#education {
  grid-area: Ed;
}
#education > div {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
#education .edu-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#education .edu-main {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
#education .degree {
  color: #f8fafc;
  font-weight: 600;
}
#education .year {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(129, 140, 248, 0.15);
  border-radius: 8px;
  color: #818cf8;
  padding: 0.3em 0.4em;
  white-space: nowrap;
}
#education .school {
  color: #cbd5e1;
  font-size: 0.9rem;
}

#footer {
  border-top: 1px solid rgb(26.9210526316, 41.2789473684, 75.3789473684);
  display: flex;
  gap: 2rem;
  grid-area: F;
  justify-content: center;
  padding-top: 1rem;
}
#footer .social-link {
  color: #cbd5e1;
  transition: all 0.2s ease;
}
#footer .social-link:hover {
  color: #818cf8;
  transform: translateY(-3px);
}
#footer .social-link svg {
  height: 28px;
  width: 28px;
}

.arrow {
  color: #818cf8;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
}

.arrow:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */