/* =========================================================
   Base setup & color palette
   ========================================================= */
:root {
  --bg-app: #f5f6f8;
  --bg-surface: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --accent: #2563eb;
}

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


/* =========================================================
   Body behaves like a centered page container
   ========================================================= */
body {
  margin: 2rem auto;
  max-width: 900px;
  padding: 2.25rem 2.5rem;
  background-color: var(--bg-surface);
  color: var(--text-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;

  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}


/* =========================================================
   Page background (outside the “page”)
   ========================================================= */
html {
  background-color: var(--bg-app);
}


/* =========================================================
   Headings & hierarchy
   ========================================================= */
h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}


/* =========================================================
   Text
   ========================================================= */
p {
  margin: 0.75rem 0 1.25rem;
  color: var(--text-secondary);
}


/* =========================================================
   Links
   Displayed as clean vertical lists
   ========================================================= */
a {
  display: block;
  margin: 0.35rem 0;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}


/* =========================================================
   Table (About Me section)
   ========================================================= */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

td {
  padding: 0.75rem;
  border: 1px solid var(--border-subtle);
  vertical-align: middle;
}

tr:first-child td {
  background-color: #f9fafb;
  font-weight: 600;
}

img {
  border-radius: 6px;
}


/* =========================================================
   Small refinements
   ========================================================= */
br {
  display: none;
}
