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

body {
  font-family: "Lora", serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.7;
}

/* Header */
header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 3rem 0;
  text-align: center;
}

.logo {
  font-family: "Fleur De Leah", serif;
  font-size: 92px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 2rem;
  display: block;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.logo:hover {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  font-size: 14px;
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

nav a:hover {
  color: rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(0, 0, 0, 0.3);
}

/* Main Content */
main {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

img {
  display: block;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  margin: 5rem 0 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.8px;
  color: #000000;
}

.hero p {
  font-size: 19px;
  color: rgba(0, 0, 0, 0.65);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.65;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
  cursor: pointer;
  border-radius: 1px;
}

.cta-button:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* Section Preview */
.section-preview {
  margin: 5rem 0;
}

.section-preview h2 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: -0.3px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 0;
}

/* Section Cards */
.section-card {
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.section-card:hover {
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.section-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #000000;
}

.section-card h3 a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.section-card h3 a:hover {
  color: rgba(0, 0, 0, 0.65);
}

.section-card time {
  display: block;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.75rem;
}

.section-card p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
}

/* Post/Article Styling */
article.post {
  margin: 4rem 0;
}

.post-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.post-header h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.8px;
  color: #000000;
}

.post-header time {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.3px;
}

.post-content {
  line-height: 1.85;
  font-size: 17px;
  color: rgba(0, 0, 0, 0.8);
}

.post-content h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 3rem 0 1.25rem 0;
  letter-spacing: -0.3px;
  color: #000000;
}

.post-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 2.5rem 0 1rem 0;
  letter-spacing: -0.2px;
  color: #000000;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.post-content li {
  margin-bottom: 0.75rem;
  color: rgba(0, 0, 0, 0.8);
}

.post-content blockquote {
  border-left: 3px solid rgba(0, 0, 0, 0.15);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: rgba(0, 0, 0, 0.7);
  font-style: italic;
  font-size: 16px;
}

.post-content code {
  background-color: rgba(0, 0, 0, 0.04);
  padding: 0.25rem 0.5rem;
  font-family: "Monaco", "Menlo", "Courier New", monospace;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
}

.post-content pre {
  background-color: rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.post-content pre code {
  background: none;
  padding: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}

/* Post Footer */
.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background-color: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  font-size: 13px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.tag:hover {
  background-color: rgba(0, 0, 0, 0.08);
  color: #000000;
  border-color: rgba(0, 0, 0, 0.15);
}

/* Post Navigation */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 4rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.post-nav a {
  flex: 1;
  padding: 0.75rem;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
  line-height: 1.5;
}

.post-nav a:hover {
  color: #000000;
}

.post-nav .prev {
  text-align: left;
}

.post-nav .next {
  text-align: right;
}

/* Archive/List Styling */
.archive {
  margin: 2rem 0;
}

.archive-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.archive-header h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.8px;
  color: #000000;
}

.archive-intro {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.post-item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.post-item h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.post-item h2 a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-item h2 a:hover {
  color: rgba(0, 0, 0, 0.65);
}

.post-item time {
  display: block;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}

.post-item p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.read-more {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.read-more:hover {
  color: #000000;
}

.page-content {
  line-height: 1.85;
  font-size: 17px;
  color: rgba(0, 0, 0, 0.8);
  max-width: 65ch;
}

.page-content p {
  display: block;
  margin: 0 0 1.6rem;
}

.page-content a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-content ul {
  margin-bottom: 2rem;
  margin-left: 3rem;
  color: rgba(0, 0, 0, 0.8);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 4rem 0;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 2px;
}

.pagination-prev,
.pagination-next {
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.pagination-prev:hover,
.pagination-next:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.pagination-numbers {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.pagination-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #000000;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  transition: all 0.2s ease;
  font-size: 15px;
  font-weight: 500;
}

.pagination-link:hover {
  background-color: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.4);
}

.pagination-current {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #000000;
  color: #ffffff;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #000000;
}

/* Footer */
footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #000000;
}

.footer-bottom {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 2rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 2rem 0;
  }
  
  .logo {
    font-size: 36px;
    margin-bottom: 1.5rem;
  }
  
  nav ul {
    gap: 1.5rem;
    font-size: 13px;
  }
  
  main {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 36px;
    letter-spacing: -0.5px;
  }
  
  .hero p {
    font-size: 17px;
  }
  
  .section-preview h2 {
    font-size: 18px;
  }
  
  .section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-card {
    padding: 1.5rem;
  }
  
  .post-header h1 {
    font-size: 32px;
    letter-spacing: -0.4px;
  }
  
  .post-content {
    font-size: 16px;
    line-height: 1.8;
  }
  
  .post-content h2 {
    font-size: 26px;
    margin: 2.5rem 0 1rem 0;
  }
  
  .post-content h3 {
    font-size: 20px;
  }
  
  .post-nav {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .post-nav .next {
    text-align: left;
  }
  
  .archive-header h1 {
    font-size: 32px;
    letter-spacing: -0.4px;
  }
  
  .post-item h2 {
    font-size: 22px;
  }
  
  .pagination {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  footer {
    padding: 2rem 0;
    margin-top: 3rem;
  }
}

.signature {
  font-family: "Allura", cursive;
  font-size: 2.5rem;
  margin-top: 3rem;
  color: rgba(0, 0, 0, 0.75);
}

.archive-intro p {
  margin: 2rem;
}
