
/* ===============================
   Base Reset & Variables
================================ */
:root {
  --bg-dark: #0b1220;
  --bg-panel: #0f172a;
  --text-primary: #e5e7eb;
  --text-secondary: #94a3b8;
  --accent: #3b82f6;
  --border-subtle: rgba(148,163,184,0.15);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
}

/* ===============================
   Header / Navigation
================================ */
header {
  background: linear-gradient(180deg, #0f172a, #020617);
  border-bottom: 1px solid var(--border-subtle);
}

header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand .name {
  font-size: 1.2rem;
  font-weight: 600;
}

.brand .tag {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.85rem;
}

nav a:hover {
  color: var(--text-primary);
}

/* ===============================
   Hero Section
================================ */
.hero {
  padding: 72px 24px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}

.headshot {
  width: 240px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero-copy h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-sub {
  color: var(--text-secondary);
  max-width: 620px;
  font-size: 1.05rem;
}

/* ===============================
   Content Sections
================================ */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}

section {
  margin-bottom: 72px;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 760px;
}

/* ===============================
   Cards / Panels
================================ */
.card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

/* Profile headshot (homepage) */
.profile-wrap{
  display:flex;
  justify-content:center;
  margin: 6px 0 22px;
}

.card .profile-img{
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.25);
  box-shadow: 0 14px 28px rgba(0,0,0,0.32);
}



/* ===============================
   Footer
================================ */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 768px) {
  header .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  nav a {
    margin-left: 0;
    margin-right: 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .headshot {
    margin: 0 auto;
    width: 180px;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  main {
    padding: 32px 20px;
  }
}
