/*
Theme Name: TET YAPI
Theme URI: https://tetyapi.com.tr
Author: TET YAPI
Author URI: https://tetyapi.com.tr
Description: Cam Balkon, Cam Mekan ve Mimari Cam Sistemleri için özel geliştirilmiş kurumsal WordPress teması.
Version: 1.0.0
Text Domain: tetyapi
*/

/* Artık CSS yorum dışında -> çalışır */
.container{max-width:1100px;margin:0 auto;padding:24px}
.post-card{padding:16px;border:1px solid #e6e6e6;border-radius:14px;margin:0 0 16px 0}
.entry-title{margin:0 0 10px 0}
.entry-title a{text-decoration:none}
/* ===== PROJELER PAGE ===== */
.page-hero { padding: 56px 0; background: #f5f1e8; }
.page-hero .container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.page-hero h1 { margin: 0; font-size: 40px; font-weight: 800; color: #0b1f3b; }
.page-hero p { margin-top: 10px; color: #475569; max-width: 70ch; }

.projeler-content { padding: 56px 0; background: #ffffff; }
.projeler-content .container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

.projeler-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 18px;
}
@media (min-width: 640px) { .projeler-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px){ .projeler-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.proje-card {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.proje-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(2,6,23,.10); }

.proje-link { display: block; text-decoration: none; color: inherit; }

.proje-image { background: #f1f5f9; aspect-ratio: 16/10; overflow: hidden; }
.proje-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proje-placeholder {
  width: 100%; height: 100%;
  display:flex; align-items:center; justify-content:center;
  color:#64748b; font-weight:700;
}

.proje-info { padding: 16px 16px 18px; }
.proje-title { margin: 0; font-size: 18px; font-weight: 800; color: #0b1f3b; }
.proje-desc { margin-top: 8px; color: #475569; font-size: 14px; line-height: 1.6; }
.proje-cta { margin-top: 12px; font-weight: 800; color: #f59e0b; }

.pagination { margin-top: 28px; }
.pagination ul { list-style: none; display: flex; gap: 8px; padding: 0; }
.pagination li a, .pagination li span {
  display: inline-flex; align-items:center; justify-content:center;
  min-width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
  padding: 0 12px;
  color: #0b1f3b;
  text-decoration: none;
  font-weight: 700;
}
.pagination li span.current { background: #0b1f3b; color: #fff; border-color: #0b1f3b; }
/* ===== SINGLE PROJECT ===== */
.project-hero{ padding:56px 0; background:#f5f1e8; }
.project-hero .container,
.project-body .container{ max-width:1100px; margin:0 auto; padding:0 16px; }

.project-breadcrumb{ display:flex; gap:8px; align-items:center; color:#64748b; font-weight:700; font-size:14px; flex-wrap:wrap; }
.project-breadcrumb a{ color:#0b1f3b; text-decoration:none; }
.project-breadcrumb a:hover{ text-decoration:underline; }

.project-title{ margin:14px 0 0; font-size:42px; line-height:1.15; font-weight:900; color:#0b1f3b; }
.project-subtitle{ margin-top:10px; color:#475569; max-width:70ch; }

.project-body{ padding:56px 0; background:#fff; }

.project-featured{ margin:0 0 22px; border-radius:18px; overflow:hidden; border:1px solid rgba(0,0,0,.06); box-shadow:0 18px 40px rgba(2,6,23,.08); }
.project-featured img{ width:100%; height:auto; display:block; object-fit:cover; }

.project-content{ color:#334155; line-height:1.8; }
.project-content h2, .project-content h3{ color:#0b1f3b; margin-top:26px; }
.project-content a{ color:#0b1f3b; font-weight:800; }

.project-nav{ display:flex; justify-content:space-between; gap:12px; margin-top:28px; padding-top:18px; border-top:1px solid rgba(0,0,0,.08); }
.project-nav-item a{ text-decoration:none; font-weight:900; color:#0b1f3b; }
.project-nav-item.right{ text-align:right; }

.project-cta{ margin-top:28px; border-radius:18px; background:#0b1f3b; color:#fff; padding:22px; position:relative; overflow:hidden; }
.project-cta h2{ margin:0; font-size:22px; font-weight:900; }
.project-cta p{ margin:8px 0 0; color:rgba(255,255,255,.82); }

.cta-inner{ display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.cta-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.btn{ display:inline-flex; align-items:center; justify-content:center; padding:12px 16px; border-radius:12px; font-weight:900; text-decoration:none; }
.btn-accent{ background:#f59e0b; color:#0b1f3b; }
.btn-outline{ border:1px solid rgba(255,255,255,.28); color:#fff; }
.btn-outline:hover{ background:rgba(255,255,255,.10); }

.project-related{ margin-top:34px; }
.project-related h3{ margin:0 0 12px; font-size:22px; font-weight:900; color:#0b1f3b; }

.related-grid{ display:grid; grid-template-columns:repeat(1,minmax(0,1fr)); gap:16px; }
@media (min-width:640px){ .related-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); } }

.related-card{ border:1px solid rgba(0,0,0,.06); border-radius:16px; overflow:hidden; background:#fff; box-shadow:0 10px 30px rgba(2,6,23,.06); transition:transform .18s ease, box-shadow .18s ease; }
.related-card:hover{ transform:translateY(-3px); box-shadow:0 18px 40px rgba(2,6,23,.10); }
.related-card a{ display:block; text-decoration:none; color:inherit; }

.related-thumb{ aspect-ratio:16/10; background:#f1f5f9; overflow:hidden; }
.related-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.thumb-placeholder{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#64748b; font-weight:800; }

.related-info{ padding:12px 12px 14px; }
.related-title{ font-weight:900; color:#0b1f3b; }
.related-more{ margin-top:8px; font-weight:900; color:#f59e0b; }
/* Editor content typography (the_content) */
.entry-content > * + * { margin-top: 14px; }
.entry-content p { line-height: 1.75; color: rgba(15, 23, 42, .85); }
.entry-content h2 { font-size: 28px; font-weight: 800; margin-top: 28px; color: #0B1B3A; }
.entry-content h3 { font-size: 22px; font-weight: 800; margin-top: 22px; color: #0B1B3A; }
.entry-content ul { padding-left: 18px; list-style: disc; }
.entry-content li { margin: 6px 0; }
.entry-content a { color: #F59E0B; font-weight: 800; text-decoration: none; }
.entry-content a:hover { opacity: .85; }

/* Simple container helper (kullanmak istersen) */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }