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

body {
  font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
  background: #fff;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #000;
}

h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem 0;
  color: #333;
}

h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 1.5rem 0 0.5rem 0;
  color: #444;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.project-summary {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 4px solid #000;
}

.project-summary:last-child {
  border-bottom: none;
}

.project-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.project-description {
  color: #000;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.project-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #000;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.2s;
  color: #fff;
}

.project-link:hover {
  background: #333;
  text-decoration: none;
  transform: translateY(-1px);
}

.project-link .icon {
  width: 1em;
  height: 1em;
}

.social-links {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 0.75rem;
  background: var(--bg, #000);
  box-shadow: var(--shadow, none);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
  gap: 0.8rem;
  font-size: 2rem;
}

.social-button:hover {
  background: var(--hover-bg, #333);
  box-shadow: var(--hover-shadow, var(--shadow, none));
  text-decoration: none;
  transform: translateY(-1px);
}

/* Brand class overrides removed; use CSS variables via params.style */

.icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.home-photo {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1.5rem 0;
}

.home-photo img {
  width: 70%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.social-button .icon {
  width: 1.4em;
  height: 1.4em;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: #666;
  font-size: 0.9rem;
}

.back-link:hover { color: #000; }

@media (max-width: 480px) {
  body { padding: 1rem 0.75rem; }
  h1 { font-size: 2rem; }
  .project-links { flex-direction: column; }
  .project-link { text-align: center; }
}


