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

@font-face {
  font-family: 'Isabella';
  src: url('isabella.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple-main: purple;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
}

* {
  box-sizing: border-box;
}

html {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
  background: #ffffff;
  min-height: 100vh;
  color: var(--text-dark);
}

body {
  margin: 0;
  padding: 0 0 4rem 0;
  min-height: 100vh;
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1rem;
}

.logo-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at center, purple 0%, #ffffff 100%);
  flex-shrink: 0;
}

.name {
  font-family: 'Isabella', Georgia, serif;
  font-size: 2.25rem;
  color: purple;
  line-height: 1.1;
  font-weight: normal;
  margin: 0;
}

.subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0;
}

.projects-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.category-header {
  font-family: 'Isabella', Georgia, serif;
  font-size: 1.15rem;
  color: purple;
  background-color: #f7f0fa;
  padding: 0.75rem 1rem;
  letter-spacing: 0.03em;
}

.project-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1rem;
  text-decoration: none;
  color: var(--text-dark);
}

.project-item + .project-item {
  border-top: 1px solid #eeeeee;
}

.project-item:hover {
  background-color: #fafafa;
}

.project-gradient {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.project-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(circle, #000 50%, transparent 100%);
  mask-image: radial-gradient(circle, #000 50%, transparent 100%);
}

/* Inverted radial gradients: random colors at center to #ffffff at edge */
.gradient-wikifm {
  background: radial-gradient(circle at center, #0732E0 0%, #ffffff 100%);
}

.gradient-comlist {
  background: radial-gradient(circle at center, forestgreen 0%, #ffffff 100%);
}

.gradient-aphex {
  background: radial-gradient(circle at center, #000000 0%, #ffffff 100%);
}

.gradient-t4t {
  background: radial-gradient(circle at center, #5BCEFA 0%, #ffffff 33%, #F5A9B8 66%, #ffffff 100%);
}

.gradient-dwelling {
  background: radial-gradient(circle at center, #ffa502 0%, #ffffff 100%);
}

.gradient-blossoms {
  background: radial-gradient(circle at center, #fd79a8 0%, #ffffff 100%);
}

.gradient-pingpractice {
  background: radial-gradient(circle at center, silver 0%, #ffffff 100%);
}

.gradient-contact {
  background: radial-gradient(circle at center, purple 0%, #ffffff 100%);
}

.gradient-location {
  background: radial-gradient(circle at center, purple 0%, #ffffff 100%);
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.project-title {
  font-family: 'Isabella', Georgia, serif;
  font-size: 1.35rem;
  color: #222222;
  line-height: 1.1;
  margin: 0;
}

.project-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
