@charset "UTF-8";
:root {
  --color-background: #ffffff;
  --color-text: #000000;
  --color-text-muted: #666666;
  --color-teal: #2a9d8f;
  --color-teal-dark: #005555;
  --color-teal-light: #dffbfa;
  --color-border: #008080;
  --color-border-light: #e0e0e0;
  --color-border-subtle: rgba(255, 255, 255, 0.3);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    --color-background: #1a1a1a;
    --color-text: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --color-teal: #2a9d8f;
    --color-teal-dark: #4db8aa;
    --color-teal-light: #dffbfa;
    --color-border: #2a9d8f;
    --color-border-light: #333333;
    --color-border-subtle: rgba(255, 255, 255, 0.1);
  }
}
[data-theme=dark] {
  --color-background: #1a1a1a;
  --color-text: #e0e0e0;
  --color-text-muted: #a0a0a0;
  --color-teal: #2a9d8f;
  --color-teal-dark: #4db8aa;
  --color-teal-light: #dffbfa;
  --color-border: #2a9d8f;
  --color-border-light: #333333;
  --color-border-subtle: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-background);
}

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

.site-header {
  text-align: center;
  padding: 1rem 0 0.5rem;
  margin: 0 -100vw 3rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: var(--color-teal);
}

.logo-link {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.logo-link:hover {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.site-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

.site-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}
.site-title a {
  color: var(--color-border);
  text-decoration: none;
}
.site-title a:hover {
  color: var(--color-teal-dark);
}

.site-description {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.site-nav {
  margin-top: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border-subtle);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.site-nav a {
  color: var(--color-teal-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}
.site-nav a:hover {
  color: var(--color-background);
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.theme-toggle:hover {
  opacity: 0.7;
}

.theme-toggle-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  line-height: 1;
}
.theme-toggle-icon::before {
  content: "☀️";
  font-size: 20px;
  display: block;
  filter: sepia(100%) saturate(300%) hue-rotate(180deg) brightness(0.9);
  line-height: 1;
}
[data-theme=dark] .theme-toggle-icon::before {
  content: "🌙";
  filter: sepia(100%) saturate(300%) hue-rotate(180deg) brightness(0.9);
}

.content {
  min-height: 60vh;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--color-border);
}
.content h1 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
}
.content h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
.content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.content strong {
  font-weight: 600;
  color: var(--color-text);
}
.content a {
  color: var(--color-teal);
  text-decoration: none;
}
.content a:hover {
  text-decoration: underline;
  color: var(--color-teal-dark);
}
.content ul,
.content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.content iframe {
  max-width: 100%;
  margin: 2rem 0;
}

.blog-post-preview {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border-light);
}
.blog-post-preview:last-of-type {
  border-bottom: none;
}
.blog-post-preview h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.blog-post-preview h2 a {
  color: var(--color-border);
  text-decoration: none;
}
.blog-post-preview h2 a:hover {
  color: var(--color-teal-dark);
}
.blog-post-preview .post-meta {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.blog-post-preview p {
  margin-bottom: 1rem;
}
.blog-post-preview a:not(h2 a) {
  color: var(--color-teal);
  font-weight: 500;
}

.site-footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem 1.5rem;
  }
  .site-header {
    padding: 0.75rem 0 0.5rem;
  }
  .site-logo {
    max-width: 280px;
  }
  .site-nav {
    gap: 1.5rem;
  }
  .site-nav a {
    font-size: 1rem;
  }
  .site-title {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */