/* ===== Base ===== */
body {
  margin: 0;
  font-family: 'EB Garamond', serif;
  color: #333;
  background: #ffffff;
}

/* ===== Layout ===== */
.container {
  display: flex;
  max-width: 1100px;
  margin: auto;
}

/* ===== Sidebar ===== */
.sidebar {
  width: 260px;
  padding: 60px 30px;
  background: #ffffff;              /* white sidebar */
  min-height: 100vh;
  border-right: 1px solid #e5e3df;
}

.profile {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* Sidebar name */
.sidebar h2 {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #2b2b2b;
  margin: 10px 0;
}

/* Divider under name */
.sidebar h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e0ded9;
  margin: 12px 0;
}

/* Sidebar subtitle */
.sidebar p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
}

/* ===== Sidebar nav ===== */
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #444;
  text-decoration: none;
  padding: 6px 0;
}

.side-nav a:hover {
  color: #b4633a;
}

/* Active page */
.side-nav a.active {
  background: #e9e6e1;
  padding-left: 8px;
  border-radius: 4px;
  color: #222;
}

/* ===== Main content ===== */
.content {
  flex: 1;
  padding: 50px 50px 50px 45px;
  max-width: 640px;
  background: #f7f5f2;              /* beige content area */
  min-height: 100vh;
}

/* Section label */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: #b4633a;
  margin-bottom: 10px;
}

/* Main title */
.content h1 {
  font-family: 'EB Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: #2b2b2b;
  margin-bottom: 8px;
}

/* Divider under title */
.content h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e5e3df;
  margin-top: 12px;
}

/* Body text */
.content p {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 18px;
}

/* Links */
a {
  color: #b4633a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Sidebar Icons ===== */
.sidebar-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.sidebar-icons a {
  color: #666;
  font-size: 16px;
  text-decoration: none;
}

.sidebar-icons a:hover {
  color: #b4633a;
}
