/* Sandcastles Archive Custom Theme */
/* Colors: Background #FAEECB, Accent #789BF7, Text black */

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

body {
  background-color: #FAEECB;
  color: #000000;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  font-size: 18px;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Headers use Source Serif */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif Pro', Georgia, serif;
  margin: 1.5em 0 0.5em;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 2.5em;
  margin-top: 0;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

/* Links */
a {
  color: #789BF7;
  text-decoration: none;
  border-bottom: 1px solid #789BF7;
}

a:hover {
  border-bottom: 2px solid #789BF7;
}

/* Site header */
header.site-header {
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 2px solid #789BF7;
}

header.site-header h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

header.site-header p {
  font-size: 1.1em;
  color: #333;
}

/* Post list */
.post-list {
  list-style: none;
}

.post-item {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(120, 155, 247, 0.3);
}

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

.post-meta {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 8px;
}

.post-title {
  font-size: 2.2em;
  margin: 0 0 10px;
}

.post-title a {
  color: #000;
  border-bottom: none;
}

.post-title a:hover {
  color: #789BF7;
}

.post-summary {
  color: #333;
  margin-top: 10px;
}

/* Make headings inside post summaries smaller than post titles */
.post-summary h1,
.post-summary h2,
.post-summary h3 {
  font-size: 1.1em;
  margin: 0.5em 0 0.3em;
  font-weight: 600;
}

/* Single post */
article.post {
  margin-bottom: 60px;
}

article.post header {
  margin-bottom: 40px;
}

article.post h1 {
  margin-bottom: 15px;
}

article.post .post-date {
  font-size: 0.95em;
  color: #666;
}

article.post .content {
  font-size: 1.05em;
}

article.post .content p {
  margin-bottom: 1.2em;
}

article.post .content blockquote {
  border-left: 4px solid #789BF7;
  padding-left: 20px;
  margin: 1.5em 0;
  font-style: italic;
  color: #333;
}

article.post .content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
}

article.post .content ul, article.post .content ol {
  margin: 1em 0 1em 2em;
}

article.post .content li {
  margin-bottom: 0.5em;
}

/* Footer */
footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(120, 155, 247, 0.3);
  text-align: center;
  font-size: 0.9em;
  color: #666;
}

/* Search box */
.search-box {
  margin: 30px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

/* Pagefind overrides */
.pagefind-ui__search-input {
  width: 100%;
  padding: 10px 15px;
  font-size: 1em;
  border: 2px solid #789BF7 !important;
  border-radius: 4px;
  background: #fff !important;
  font-family: 'IBM Plex Sans', sans-serif;
}

.pagefind-ui__result-link {
  color: #789BF7 !important;
}

.pagefind-ui__result-title {
  font-family: 'Source Serif Pro', Georgia, serif !important;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2em;
  }

  header.site-header h1 {
    font-size: 2.2em;
  }

  .container {
    padding: 20px 15px;
  }
}

/* Signature */
.signature {
  margin-top: 3em;
  font-style: italic;
  color: #666;
}

/* Hide the auto-generated "Posts" section link */
.post-item a[href$="/posts/"] {
  display: none;
}

.post-item:has(a[href$="/posts/"]) {
  display: none;
}
