
/* Site title at top left */
.site-header {
  position: fixed;
  top: 2rem;
  left: 15rem;
  font-size: 1.5rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #111;
  z-index: 1000; /* Make sure it's above everything else */
}
/* Container holding sidebar and main */
.container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 180px;
  padding: 2rem 1rem;
  background-color: #fff;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.nav-link {
  margin-bottom: 1rem;
  text-decoration: none;
  color: #5c9fd9; /* Whisper blue links */
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #2a7bbd;
}

/* Main Content Area */
.homepage {
  flex: 1;
  padding: 6rem 4rem; /* BIG breathing space now */
  max-width: 800px;
  margin: 0 auto;
  color: #111;
  background-color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
}

/* Statement Styling */
.homepage .statement {
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
  margin-top: 2rem;
}
