/* 1. Sayfa Temeli ve Tipografi */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    background: #ffffff;
    color: #111111;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased; /* Font netliği (V1'den) */
}

/* 2. Ana Taşıyıcı (Container) */
.container {
    max-width: 720px;
    margin: auto;
    padding: 56px 20px;
}

/* 3. Başlıklar ve Hiyerarşi */
h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #000;
}

h2 {
    font-size: 24px; /* Biraz daha vurgulu */
    margin-top: 48px;
    margin-bottom: 18px;
    color: #000;
}

/* Mobil cihazlar için başlık ve boşluk optimizasyonu (V1'den) */
@media (max-width: 600px) {
    h1 { font-size: 32px; }
    h2 { font-size: 22px; }
    .container { padding: 30px 20px; }
}

.subtitle {
    color: #555555;
    margin-bottom: 42px;
    font-size: 17px;
}

/* 4. Navigasyon (Menü) */
nav {
    margin-bottom: 52px;
    border-bottom: 1px solid #eee; /* Hafif ayırıcı çizgi (V1'den) */
    padding-bottom: 20px;
}

nav a {
    margin-right: 22px;
    text-decoration: none;
    color: #111111;
    font-weight: 600; /* Daha belirgin (V2'den) */
}

nav a:hover {
    text-decoration: underline;
}

/* 5. İçerik ve Yazı Listesi */
.section {
    margin-bottom: 56px;
}

.post {
    margin-bottom: 25px;
}

.post a {
    font-size: 22px; /* Başlık vurgusu (V1'den) */
    font-weight: 600;
    text-decoration: none;
    color: #111111;
    display: block; /* Tıklama alanını genişletir */
}

.post a:hover {
    color: #007bff; /* Renk değişimi ile etkileşim (V1'den) */
}

/* Yazı Meta Verileri (Tarih vb. - V2'den) */
.post-meta, .article-meta {
    font-size: 14px;
    color: #606060;
    margin-bottom: 8px;
}

/* 6. Liste ve Makale Düzeni */
ul {
    padding-left: 20px;
    margin-top: 16px;
}

li {
    margin-bottom: 10px;
}

/* Makale sayfası paragraf boşlukları (V2'den) */
article p {
    margin-bottom: 22px;
}

/* 7. Alt Bilgi (Footer) */
footer {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #606060;
}

/* Genel görseller */
img {
  max-width: 100%;
  height: auto;
}

/* Makale içi görseller */
article img {
  display: block;
  margin: 30px auto;
  border-radius: 6px;
}

/* Gece Modu Başlangıcı */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212 !important; /* !important zorunlu kılar */
        color: #e0e0e0 !important;
    }
    
    .container {
        background-color: #121212 !important;
    }

    h1, h2, nav a, .post a {
        color: #ffffff !important;
    }
    
    .subtitle, .post-meta, footer {
        color: #aaaaaa !important;
    }

    nav, footer {
        border-color: #333 !important;
    }
    
    nav a:hover, .post a:hover {
        color: #4dabff !important;
    }
}
/* Gece Modu Bitişi */
