/* style.css - Simple website starter */

:root {
  --bg: #f7f8fc;
  --text: #1d1e22;
  --muted: #5b5f6b;
  --accent: #3b82f6;
  --card: #ffffff;
  --shadow: rgba(15, 23, 42, 0.1);
  --radius: 14px;
  --max-width: 900px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  padding: 3rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.12));
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.subtitle {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.content section {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem;
  box-shadow: 0 10px 25px var(--shadow);
  margin-bottom: 1.75rem;
}

.content h2 {
  margin-top: 0;
}

.content ul {
  padding-left: 1.25rem;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1rem;
}

.site-footer {
  text-align: center;
  padding: 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
