/* Clean, minimal design system inspired by soerenweber.com */

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

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 20%);
  
  --text-primary: hsl(0, 0%, 20%);
  --text-secondary: hsl(0, 0%, 40%);
  --text-muted: hsl(0, 0%, 60%);
  
  /* Blue accent color matching the original site */
  --blue-primary: hsl(210, 100%, 50%);
  --blue-hover: hsl(210, 100%, 45%);
  
  /* Clean typography */
  --font-size-title: 2rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  
  --line-height-relaxed: 1.6;
  --line-height-normal: 1.5;
  
  /* Spacing system */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Component styles */
  --profile-image-size: 200px;
  --max-content-width: 600px;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: var(--line-height-normal);
  min-height: 100vh;
}

.profile-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.profile-title {
  color: var(--blue-primary);
  font-size: var(--font-size-title);
  font-weight: 400;
  margin-bottom: var(--spacing-xl);
  letter-spacing: -0.01em;
}

.profile-image {
  width: var(--profile-image-size);
  height: var(--profile-image-size);
  border-radius: 50%;
  margin: 0 auto var(--spacing-xl);
  display: block;
  object-fit: cover;
}

.profile-content {
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  color: var(--text-primary);
  text-align: left;
  margin-bottom: var(--spacing-xl);
}

.profile-content p {
  margin-bottom: var(--spacing-md);
}

.profile-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.profile-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: var(--spacing-md);
}

.profile-content ul {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
}

.profile-content li {
  margin-bottom: 0.25rem;
}

.profile-content hr {
  margin: var(--spacing-lg) 0;
  border: none;
  border-top: 1px solid hsl(0, 0%, 80%);
}

.profile-link {
  color: var(--blue-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.profile-link:hover {
  color: var(--blue-hover);
}

.text-muted-foreground {
  color: var(--text-muted);
}

.social-links {
  margin: var(--spacing-lg) 0;
  text-align: center;
}

.social-links svg {
  color: var(--blue-primary);
  width: 24px;
  height: 24px;
}

.legal-notice {
  margin-top: var(--spacing-2xl);
  text-align: center;
}

.legal-notice a {
  color: var(--text-muted);
  text-decoration: underline;
  font-size: var(--font-size-small);
}

.inline-block {
  display: inline-block;
}