/*
Theme Name: satrancturk
Author: Mehmet Türk
Version: 1.0
*/

body {
  margin: 0;                        /* Tarayıcının varsayılan boşluklarını kaldırır */
  background-color: #f5f5f5;         /* Arka plan rengi: beyazdan hafif griye */
  font-family: "Segoe UI", Arial, sans-serif;  /* Temel yazı tipi */
  color: #222;                       /* Metin rengi */
}


header {
  text-align: center;
  background: #FCFBF9;
  color: white;
  padding: 15px;
}
.site-header {
  display: flex;                     /* İçindeki elemanları (logo + menü) yatayda hizalar */
  justify-content: space-between;    /* Logo sola, menü sağa gider */
  align-items: center;               /* Yükseklik ortalaması */
  background-color: #FCFBF9;         /* Header arka planı (body ile aynı ton) */
  padding: 1px 2px;                /* Üst-alt ve sağ-sol boşluklar */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  /* Hafif gölge */
                    /* Header sayfa kayarken üstte sabit kalır */
  top: 0;                            /* Sabit konumun üst sınırı */
  z-index: 1000;
  border-bottom: 3px solid #4b2e05;  /* Menü rengiyle aynı alt çizgi */                     /* Diğer elemanların üstünde görünmesi için */
}

.logo {
  display: flex;                     /* Logo ve metin aynı hizada durur */
  align-items: center;               /* Dikey ortalama */
}

.logo img {
  height: 100px;                      /* Logonun yüksekliği */
  width: auto;
  margin-left:auto;                       /* Genişliği orantılı olarak ayarlanır */
}


.content {
  width: 70%;
  float: left;
  padding: 20px;
  background: #FCFBF9;
  min-height: 500px;
  
}

.sidebar {
  width: 25%;
  float: right;
  padding: 20px;
  background: #f1f1f1;
}

footer {
  clear: both;
  background: #333;
  color: #eee;
  text-align: center;
  padding: 10px;
}
/*category css kodlari*/
/* === CATEGORY PAGE STYLES === */

.category-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.category-header h1 {
  
  
   background: #4b2e05;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 26px;
}

.category-header p {
  color: #777;
  font-size: 14px;
  margin-bottom: 25px;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.category-post {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.category-post:last-child {
  border-bottom: none;
}

.post-title a {
  text-decoration: none;
  color: #0073aa;
  font-size: 22px;
  font-weight: 600;
}

.post-title a:hover {
  text-decoration: underline;
}

.post-meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.post-excerpt {
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

.read-more a {
  color: #0073aa;
  font-weight: 600;
  text-decoration: none;
}

.read-more a:hover {
  text-decoration: underline;
}

.pagination {
  margin-top: 30px;
  text-align: center;
}

.pagination a {
  color: #0073aa;
  padding: 6px 12px;
  border: 1px solid #ddd;
  margin: 0 3px;
  border-radius: 4px;
  text-decoration: none;
}

.pagination a:hover {
  background: #0073aa;
  color: white;
}

/* === ANA MENÜ TASARIMI (KATEGORİLER MENÜSÜ) === */

.main-nav {
  background-color: #4b2e05;     /* Koyu kahverengi arka plan */
  text-align: center;            /* Menü öğelerini ortalar */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* Hafif gölge efekti */
}

.main-nav ul {
  list-style: none;              /* Noktaları kaldırır */
  margin: 0;
  padding: 0;
  display: inline-flex;          /* Menü öğelerini yan yana dizer */
}

.main-nav li {
  margin: 0 18px;                /* Menü öğeleri arasına boşluk */
}

.main-nav a {
  color: #ffffff;                /* Yazı rengi beyaz */
  text-decoration: none;         /* Alt çizgiyi kaldırır */
  font-weight: 600;              /* Hafif kalın font */
  font-size: 16px;
  padding: 12px 0;               /* Dikey boşluk */
  display: inline-block;         /* Hover alanını genişletir */
  transition: all 0.3s ease;     /* Hover geçişi yumuşak olur */
}

.main-nav a:hover {
  color: #3F5DA2;                /* Hover rengi (açık kahve-bej ton) */
  transform: translateY(-2px);   /* Hafif yukarı kayma efekti */
}

.main-nav .current-menu-item a {
  border-bottom: 3px solid #d1b27c; /* Aktif kategoriye alt çizgi */
  padding-bottom: 9px; 
  color: #d1b27c;             /* Alt çizgi için yer açar */
}

/* === Mobil Uyum (küçük ekranlar) === */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;      /* Menü alt alta dizilir */
    align-items: center;
  }

  .main-nav li {
    margin: 10px 0;
  }
}

