/* === GLOBAL RESETS === */
body.home-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;
}

/* === HOMEPAGE STYLES === */
.home-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  gap: 3rem;
  flex-direction: row;
}

.sidebar {
  width: 340px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.sidebar-headshot {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.sidebar h1 {
  font-size: 1.4rem;
  margin: 0.5rem 0;
  font-weight: bold;
  text-align: center;
}

.email-link {
  display: block;
  text-align: center;
  color: #444;
  font-size: 0.9rem;
  text-decoration: underline;
  margin-bottom: 2rem;
}

.sidebar h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
}

.sidebar p {
  line-height: 1.6;
  font-size: 1rem;
  padding-right: 1rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.sidebar .btn {
  background: #000000;
  color: white;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.sidebar .btn:hover {
  background: #c882a2;
}

.sidebar .socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid #ccc;
  padding-top: 0.75rem;
  width: 100%;
}

.sidebar .socials a {
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
}

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

.main-content {
  flex: 1;
  background: #fff;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 0 1px #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  max-height: 420px;
  overflow-y: auto;
}

.main-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.main-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.main-content a {
  color: #dea3bd;
  text-decoration: underline;
}

.main-content i {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.btn {
  background: #dea3bd;
  color: white;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 6px;
}

.btn:hover {
  background: #c882a2;
}

/* === RESPONSIVE BREAKPOINT === */
@media (max-width: 768px) {
  .home-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .sidebar {
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
  }

  .sidebar p {
    padding-right: 0;
    text-align: center;
  }

  .main-content {
    max-height: none;
    padding: 2rem 1.25rem;
  }
}