@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

:root {
  --bg-color: #fff;
  --text-color: #333;
  --text-muted: #666;
  --project-bg: #f9f9f9;
  --project-hover: #f3f3f3;
  --border-color: #eee;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  max-width: 500px;
  margin: auto;
  padding-top: 8rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}

a {
  color: var(--text-muted);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.header-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.tagline {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.contact h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.contact p {
  font-style: normal;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project {
  padding: 2rem;
  background: var(--project-bg);
  border-radius: 24px;
  transition: all 0.3s ease;
  overflow: hidden;
  height: auto;
}

.project-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0;
}

.project-logo {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.project-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-details {
  flex: 1;
}

.project-details p {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
