*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-social {
  display: flex;
  align-items: center;
  color: #666;
  transition: color 0.15s ease;
}

.header-social:hover {
  color: #333;
}

.header-social svg {
  transition: fill 0.15s ease;
}

.header-social:hover svg {
  fill: #004182;
}

.site-header {
  padding: 32px 0;
  background: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.site-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}

/* About */
.about {
  padding: 40px 0 48px;
}

.about p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

/* Projects */
.projects {
  padding-bottom: 64px;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.project-card:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.project-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
}

.placeholder-icon {
  width: 64px;
  height: 64px;
}

.dawnset-icon-wrapper {
  background: linear-gradient(to bottom, #d4737f, #c75b6e);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dawnset-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info {
  flex: 1;
  min-width: 0;
}

.project-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.project-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-dev {
  background: #e8f4fd;
  color: #1a73b5;
}

.badge-hold {
  background: #f0ece4;
  color: #8a7a5e;
}

.project-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 32px 0;
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
}

.site-footer p {
  font-size: 0.9rem;
  color: #999;
  text-align: center;
}

/* Responsive */
@media (max-width: 480px) {
  .site-header {
    padding: 32px 0 0;
  }

  .site-title {
    font-size: 1.4rem;
  }

  .project-card {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }

  .project-icon,
  .placeholder-icon {
    width: 56px;
    height: 56px;
  }
}
