/* Armaan — Personal Website */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;1,6..72,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.layout {
  display: flex;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 40px;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 30px;
  padding-top: 6px;
  flex-shrink: 0;
}

.nav-link {
  font-size: 16px;
  color: #C96442;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Divider — removed; using border-left on content instead */
.divider {
  display: none;
}

/* Content */
.content {
  padding-left: 40px;
  max-width: 640px;
  border-left: 3px solid #C96442;
  padding-left: 37px;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #1a1a1a;
}

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #C96442;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Quote */
.quote {
  max-width: 500px;
  margin: 40px auto 40px;
  padding: 28px 40px 0;
  border: none;
  border-top: 1px solid #bbb;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Beliefs */
.beliefs {
  list-style: disc;
  padding-left: 1.2em;
}

.beliefs li {
  margin-bottom: 10px;
  line-height: 1.65;
}

/* Notion-style toggle */
.belief-toggle {
  border-bottom: 1px solid #eee;
}

.belief-toggle:first-of-type {
  border-top: 1px solid #eee;
}

.belief-toggle summary {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: #888;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.belief-toggle summary::-webkit-details-marker,
.belief-toggle summary::marker {
  display: none;
  content: '';
}

.belief-toggle summary:hover {
  color: #C96442;
}

.belief-toggle[open] summary {
  color: #1a1a1a;
}

.belief-toggle .beliefs {
  padding-bottom: 16px;
}

/* Writing — Post List */
.post-list {
  border-top: 1px solid #ddd;
}

.post-entry {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.post-entry:hover {
  opacity: 0.7;
  text-decoration: none;
}

.post-title {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: #C96442;
  line-height: 1.35;
}

.post-date {
  display: block;
  font-style: italic;
  font-size: 15px;
  color: #888;
  margin-top: 3px;
}

/* Writing — Article */
.post-subtitle {
  font-style: italic;
  color: #666;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 640px) {
  .layout {
    flex-direction: column;
    padding: 40px 24px;
  }

  .sidebar {
    flex-direction: row;
    gap: 1.2rem;
    padding-right: 0;
    padding-bottom: 20px;
    padding-top: 0;
  }

  .divider {
    display: none;
  }

  .content {
    padding-left: 0;
    padding-top: 28px;
    border-left: none;
    border-top: 3px solid #C96442;
  }
}
