body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f4f9fd;
  color: #333;
}

.hero {
  padding: 40px;
  text-align: center;
  background-color: #eaf6fe;
}

section {
  padding: 30px;
  max-width: 800px;
  margin: auto;
}

h1, h2, h3 {
  color: #27A6F5;
}

.button {
  background-color: #27A6F5;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: 15px;
}

.button:hover {
  background-color: #1e90d8;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #d9effd;
  margin-top: 40px;
}
h1, h2, h3 {
  font-weight: 600;
}

nav a {
  font-weight: 500;
}

p, li {
  font-weight: 400;
}

.about-me {
  background-color: #f5fbff;
  padding: 70px 20px;
}

.about-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.headshot {
  width: 240px;
  height: auto;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-text h2 {
  text-align: left;
  margin: 0 0 10px;
}

.about-text h3 {
  margin: 0 0 18px;
  font-weight: 600;
  color: #27A6F5;
}

.about-text p {
  line-height: 1.7;
  margin: 0 0 16px;
}

.why-box {
  background: #e8f4ff;
  border-left: 5px solid #27A6F5;
  padding: 16px 18px;
  border-radius: 10px;
  margin: 18px 0 18px;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: left;
  }

  .headshot {
    width: 210px;
    margin: 0 auto 18px;
  }
}
.about-preview {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}
/* ===== Header ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 28px;
  background-color: #eaf6ff;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-logo {
  height: 160px;
  width: auto;
  display: block;
}

.site-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #27A6F5;
}

.main-nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #27A6F5;
  font-weight: 500;
}

.main-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.main-nav a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .header-left {
    flex-direction: column;
    gap: 6px;
  }

  .main-nav a {
    margin: 0 10px;
  }
}
.site-title-wrapper {
  flex: 1;
  text-align: center;
}

.site-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #2B3A42; /* ← recommended slate color */
  letter-spacing: 0.4px;
}
.site-title {
  text-transform: none;
  line-height: 1.2;
}
/* Centered logo + nav */
.site-header {
  background-color: #eaf6fe; /* same as hero top background */
  padding: 20px 0;
  border-bottom: 1px solid #d3e8fb;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.site-logo {
  height: 160px;
  width: auto;
  display: block;
  margin: 0 auto 10px;
}

.main-nav {
  margin-top: 5px;
}

.main-nav a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  color: #27A6F5;
}

.main-nav a:hover {
  color: #1F4FD8;
}
