/* Wizard's Toolkit Blog - Simple Light Mode */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #0ea5e9;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --background: #ffffff;
  --background-alt: #f9fafb;
  --border: #e5e7eb;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--text-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* Header - Simple and Solid */
.blog-header {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
}

.blog-header .logo:hover {
  color: var(--primary-dark);
}

.blog-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.blog-nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
}

.blog-nav a:hover {
  color: var(--primary);
}

/* Main Content Area */
main.container {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.prose {
  max-width: 800px;
  margin: 0 auto;
}

/* Blog Content Styles */
.prose h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.prose h2 {
  color: var(--primary);
  font-size: 2rem;
  margin: 2rem 0 1rem 0;
}

.prose h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem 0;
}

.prose h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin: 1.25rem 0 0.5rem 0;
}

.prose p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
}

.prose a:hover {
  color: var(--primary-dark);
}

.prose code {
  background-color: var(--background-alt);
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.prose pre {
  background-color: var(--background-alt);
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}

.prose blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--primary-dark);
}

/* Footer - Simple */
.blog-footer {
  background-color: var(--background-alt);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.blog-footer .container {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.created-with {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.created-with a {
  color: var(--text-secondary);
  text-decoration: none;
}

.created-with a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .blog-header .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .blog-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .prose h1 {
    font-size: 2rem;
  }

  .prose h2 {
    font-size: 1.75rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .copyright, .created-with {
    width: 100%;
  }
}