/* === GLOBAL RESETS === */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f3d4dfbb;
  color: #111;
}

h1, h2, h3 {
  font-weight: 700;
}

/* === NAVIGATION === */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

nav h1 a {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #444;
  font-size: 0.75rem;
  text-transform: uppercase;
}

nav ul li a:hover,
nav ul li a.current {
  color: #dea3bd;
}

/* === PAGE WRAPPER === */
.main-wrapper {
  max-width: 860px;
  margin: 3rem auto;
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 5.5rem 2.5rem 2.5rem 2.5rem;
  display: block;
}

.bio-card {
  display: block;
  text-align: left;
}

.headshot {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.bio-content {
  overflow: hidden;
}

.bio-card h2 {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.75rem;
  font-weight: bold;
}

.bio-card .email {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #dea3bd;
}

.bio-card .about h3 {
  font-size: 1rem;
  text-transform: uppercase;
  color: #444;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.bio-card .about p {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.bio-card .about ul {
  padding-left: 1.25rem;
}

.bio-card .about ul li {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.bio-card .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #dea3bd;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.socials {
  margin-top: 1.5rem;
  text-align: center;
}

.socials a {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: #000;
  transition: color 0.3s ease;
  text-decoration: none;
}

.socials a:hover {
  color: #dea3bd;
}

.contact-box {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.contact-box h3 {
  text-transform: uppercase;
  font-size: 1rem;
  color: #444;
}

.contact-box p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-box a {
  color: #0366d6;
  text-decoration: none;
}

.contact-box a:hover {
  color: #dea3bd;
  text-decoration: underline;
}

/* === FOOTER === */
#footer {
  height: auto;
  background: #00000000;
  color: #000000;
  font-size: 14px;
  position: relative;
  padding: 20px;
  text-align: center;
}

#footer .footer-logo {
  margin-left: auto;
  margin-right: auto;
}

#footer .copyright {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 0.9rem;
}

#footer .privacy {
  text-align: center;
  font-size: 13px;
  margin-top: 0.5rem;
}

#footer a {
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
  margin: 0 0.5rem;
}

#footer a:hover {
  color: #dea3bd;
}

/* === RESPONSIVE BREAKPOINT === */
@media (max-width: 768px) {
  .main-wrapper {
    padding: 1.5rem 1rem;
  }

  .headshot {
    float: none;
    display: block;
    margin: 0 auto 1rem auto;
  }

  .bio-card {
    text-align: center;
  }

  .bio-card .email,
  .bio-card .about {
    text-align: center;
  }

  #footer a {
    display: inline-block;
    margin: 0.25rem;
  }
}