/* Shepherd Test Page - Elegant Design */

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background: #fafaf8;
}

/* Header */
header {
  background: #fefefe;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #78553c;
}

.nav-links a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: #2c2c2c;
}

/* Hero Section */
.hero {
  background: #fefefe;
  padding: 5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hero h1 {
  font-size: 2rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.1rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.hero-verse {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  background: #f8f6f3;
  color: #555;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-top: 1rem;
}

.hero-verse strong {
  color: #78553c;
}

/* Content Sections */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 2.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.alt-bg {
  background: #fefefe;
}

/* Blog Post Style */
.blog-post {
  background: #fefefe;
  padding: 2.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-post h3 {
  font-size: 1.35rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.blog-post .meta {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 1.75rem;
}

.blog-post p {
  margin-bottom: 1.5rem;
  color: #444;
}

.blog-post strong {
  color: #78553c;
  font-weight: 600;
}

.blog-post blockquote {
  background: #f8f6f3;
  border-left: 2px solid #c9b99a;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

/* Bible Study Notes */
.study-notes {
  background: #fefefe;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 2.5rem;
}

.study-notes h3 {
  font-weight: 400;
  color: #78553c;
  margin-bottom: 1.5rem;
}

.study-notes h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #999;
  margin: 2rem 0 1rem;
}

.verse-list ul,
.study-questions ol {
  margin-left: 1.25rem;
  color: #444;
}

.verse-list li,
.study-questions li {
  margin-bottom: 0.75rem;
}

.cross-references table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.cross-references th,
.cross-references td {
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.95rem;
}

.cross-references th {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: #f8f6f3;
  color: #78553c;
}

.cross-references td {
  background: #fefefe;
  color: #444;
}

/* Quote Cards */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.quote-card {
  background: #fefefe;
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.quote-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.quote-ref {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: #78553c;
  font-weight: 500;
  text-align: right;
}

/* Edge Cases */
.edge-cases {
  background: #fefefe;
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.edge-cases h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #2c2c2c;
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.edge-cases h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.edge-cases ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
  color: #444;
}

.edge-cases li {
  margin-bottom: 0.5rem;
}

.edge-cases p {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f6f3;
  border-radius: 3px;
  color: #555;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.main-content {
  background: #fefefe;
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.main-content h3 {
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.main-content p {
  margin-bottom: 1.5rem;
  color: #444;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: #fefefe;
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 2px solid #c9b99a;
}

.sidebar-widget h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #999;
  margin-bottom: 1rem;
}

.votd {
  font-style: italic;
  color: #555;
  margin-bottom: 0.75rem;
}

.votd-ref {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: #78553c;
  font-weight: 500;
}

.verse-links {
  list-style: none;
}

.verse-links li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
  color: #78553c;
}

.verse-links li:last-child {
  border-bottom: none;
}

/* Footer */
footer {
  background: #fefefe;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 2.5rem;
  margin-top: 4rem;
}

footer p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .nav-links {
    display: none;
  }

  .content-section {
    padding: 3rem 1.5rem;
  }
}
