@charset "UTF-8";
/* =============================================
   Baydrogo Blog — Ana Stil Dosyası
   ============================================= */
/* Değişkenler */
/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.75;
  color: #2d2d2d;
  background: #fafaf9;
}

/* Container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  background: white;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d2d2d;
  text-decoration: none;
}
.site-title:hover {
  color: #2563eb;
}

.site-nav a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  color: #666;
  text-decoration: none;
  margin-left: 1.25rem;
}
.site-nav a:hover {
  color: #2563eb;
}

/* Main */
.site-main {
  padding: 3rem 0;
  min-height: calc(100vh - 200px);
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #666;
}

/* Yazı listesi (ana sayfa) */
.post-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.post-item {
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.post-item:last-child {
  border-bottom: none;
}
.post-item .post-title {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}
.post-item .post-title a {
  color: #2d2d2d;
  text-decoration: none;
}
.post-item .post-title a:hover {
  color: #2563eb;
}
.post-item .post-excerpt {
  color: #666;
  margin: 0.5rem 0;
}
.post-item .read-more {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
}
.post-item .read-more:hover {
  text-decoration: underline;
}

/* Post meta */
.post-meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #666;
  margin: 0.25rem 0 0.75rem;
}
.post-meta .category, .post-meta .tag {
  display: inline-block;
  background: #f3f4f6;
  border-radius: 3px;
  padding: 0 6px;
  margin-left: 4px;
}

/* Yazı içeriği */
.post .post-title {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.post .post-content {
  margin-top: 2rem;
}
.post .post-content h1, .post .post-content h2, .post .post-content h3, .post .post-content h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.3;
  margin: 2rem 0 0.75rem;
}
.post .post-content a {
  color: #2563eb;
  text-decoration: underline;
}
.post .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
}
.post .post-content blockquote {
  border-left: 3px solid #2563eb;
  margin: 1.5rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: #666;
  font-style: italic;
}
.post .post-content pre {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 0.875rem;
}
.post .post-content code {
  font-family: "Fira Code", "Courier New", monospace;
}
.post .post-content p code {
  background: #f3f4f6;
  padding: 0 4px;
  border-radius: 3px;
  font-size: 0.9em;
}
.post .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.post .post-content table th, .post .post-content table td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.75rem;
  text-align: left;
}
.post .post-content table th {
  background: #f3f4f6;
}

/* Yazı navigasyonu */
.post-navigation {
  display: flex;
  justify-content: space-between;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
}
.post-navigation a {
  color: #2563eb;
  text-decoration: none;
}
.post-navigation a:hover {
  text-decoration: underline;
}

/* Sayfalama */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  color: #666;
}
.pagination a {
  color: #2563eb;
  text-decoration: none;
}
.pagination a:hover {
  text-decoration: underline;
}

/* Ana sayfa — açıklama */
.site-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Ana sayfa — yazı satırları */
.post-row {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.post-row:first-of-type {
  border-top: 1px solid #e5e7eb;
}

.post-date {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.82rem;
  color: #666;
  white-space: nowrap;
  min-width: 70px;
}

.post-link {
  color: #2d2d2d;
  font-size: 0.97rem;
  text-decoration: none;
}
.post-link:hover {
  color: #2563eb;
}

/* Yazı başlık alanı */
.post-header {
  margin-bottom: 2rem;
}
.post-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

/* Yazı navigasyonu (önceki/sonraki) */
.post-nav {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.9rem;
  overflow: hidden;
}
.post-nav a {
  color: #2563eb;
  text-decoration: none;
}
.post-nav a:hover {
  text-decoration: underline;
}

/* Bölüm etiketi */
.section-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin: 2.5rem 0 0.75rem;
}

/* Ana sayfa — son yazı önizlemesi */
.latest-post {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0.5rem;
}
.latest-post .latest-title {
  font-size: 1.5rem;
  margin: 0.25rem 0;
}
.latest-post .latest-title a {
  color: #2d2d2d;
  text-decoration: none;
}
.latest-post .latest-title a:hover {
  color: #2563eb;
}
.latest-post .latest-excerpt {
  color: #666;
  margin: 0.5rem 0;
}
.latest-post .read-more {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
}
.latest-post .read-more:hover {
  text-decoration: underline;
}

/* Konular / etiket bulutu */
.topics-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
}
.tag-link:hover {
  color: #2563eb;
}

.tag-link-inline {
  color: #666;
  font-size: 0.875rem;
  text-decoration: none;
}
.tag-link-inline:hover {
  color: #2563eb;
}

/* Yazılar bölümü etiketi */
.post-list .section-label {
  margin-top: 2rem;
}

/* İlgili yazılar */
.related-posts {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.related-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.related-posts li {
  padding: 0.3rem 0;
}
.related-posts li::before {
  content: "· ";
  color: #666;
}
.related-posts li a {
  color: #2d2d2d;
  text-decoration: none;
}
.related-posts li a:hover {
  color: #2563eb;
}

/* Newsletter formu */
.newsletter-form {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.newsletter-form .newsletter-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.newsletter-form form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsletter-form input[type=email] {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  flex: 1;
  min-width: 200px;
  background: white;
  color: #2d2d2d;
}
.newsletter-form input[type=email]:focus {
  outline: none;
  border-color: #2563eb;
}
.newsletter-form button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  padding: 0.5rem 1.25rem;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.newsletter-form button:hover {
  opacity: 0.9;
}

/* Etiketler sayfası */
.tags-page h1 {
  margin-bottom: 2rem;
}
.tags-page .tag-group {
  margin-bottom: 2rem;
}
.tags-page .tag-heading {
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e5e7eb;
}
.tags-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tags-page li {
  padding: 0.3rem 0;
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.tags-page .post-date {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  color: #666;
  min-width: 80px;
}
.tags-page a {
  color: #2d2d2d;
  text-decoration: none;
}
.tags-page a:hover {
  color: #2563eb;
}

/* Responsive */
@media (max-width: 640px) {
  body {
    font-size: 17px;
  }
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav a:first-child {
    margin-left: 0;
  }
  .post .post-title {
    font-size: 1.6rem;
  }
  .newsletter-form form {
    flex-direction: column;
  }
  .newsletter-form input[type=email] {
    min-width: unset;
  }
}
.author-link {
  color: #666;
  text-decoration: none;
}
.author-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

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