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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

header {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header .tagline {
  font-size: 1.1rem;
  opacity: 0.9;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.week-card {
  background: #f0f7ff;
  border-left: 4px solid #3498db;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.week-card h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.week-card .date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.button:hover {
  background: #2980b9;
}

.button.secondary {
  background: #95a5a6;
}

.button.secondary:hover {
  background: #7f8c8d;
}

ul, ol {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.week-list {
  list-style: none;
  margin-left: 0;
}

.week-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border-bottom: 1px solid #eee;
}

.week-list li:last-child {
  border-bottom: none;
}

.week-list a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
}

.week-list a:hover {
  color: #3498db;
}

.week-list .date {
  color: #999;
  font-size: 0.85rem;
}

.livestream {
  background: #f0f7ff;
  border-left: 4px solid #e67e22;
  padding: 1rem;
  border-radius: 0 8px 8px 0;
}

.livestream a {
  color: #e67e22;
  font-weight: 600;
}

.livestream a:hover {
  color: #d35400;
}

.creed-preview {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: #666;
  font-size: 0.9rem;
}

/* Reflection Guide Styles */
.reflection-guide {
  background: #fffef5;
  border-left: 4px solid #f1c40f;
}

.scripture {
  background: #f9f9f9;
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
  font-style: italic;
}

.questions {
  margin-top: 1rem;
}

.questions li {
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
  margin-left: 0;
}

.checklist li {
  padding-left: 1.5rem;
  position: relative;
}

.checklist li:before {
  content: "☐";
  position: absolute;
  left: 0;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }
  
  .week-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .week-list .date {
    margin-top: 0.25rem;
  }
  
  .button {
    display: block;
    text-align: center;
    margin-right: 0;
  }
}
