/* styles.css */
:root {
  --brand-blue: #005bbb;
  --white:       #ffffff;
  --dark-grey:  #333;
}

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

body {
  font-family: Arial, sans-serif;
  color: var(--dark-grey);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

.site-header {
  background: var(--brand-blue);
  padding: 1rem 0;
}

.logo img {
  height: 50px;
}

.logo2 img {
  height: 200px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
}

.site-nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--brand-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
}

.btn:hover {
  opacity: 0.9;
}

.site-footer {
  background: #f4f4f4;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.875rem;
}

/* Add at the bottom of styles.css */

.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  padding: 4rem 0;
}

.headshot img {
  max-width: 200px;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.bio-box {
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 6px;
  flex: 1;
  min-width: 250px;
}

.bio-box h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.bio-box p {
  margin-bottom: 1rem;
}

.site-nav a.active {
  text-decoration: underline;
}

