/*
Theme Name: Gemini Mag V10 (No Comments)
Author: Gemini
Description: Yorum alanları tamamen kaldırıldı. 16:9 manşet ve 4'lü grid (4:5) içeren sürüm.
Version: 10.0
Text Domain: gemini-mag-v10
*/

:root {
    --primary-color: #eab308;
    --bg-color: #f8f9fa;
    --text-color: #1f2937;
    --header-bg: #ffffff;
    --font-family: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
body { 
    font-family: var(--font-family); 
    background-color: var(--bg-color); 
    color: var(--text-color); 
    margin: 0; padding: 0; line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary-color); transition: 0.2s; }
a:hover { opacity: 0.8; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* TOP BAR MENU */
.top-bar { background: #111827; color: #fff; padding: 8px 0; font-size: 13px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-text { opacity: 0.7; }
.top-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 15px; }
.top-navigation ul li a { color: #d1d5db; font-weight: 500; }
.top-navigation ul li a:hover { color: var(--primary-color); }

/* HEADER */
.site-header { background: var(--header-bg); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.site-title { font-size: 26px; font-weight: 800; color: var(--text-color); }
.main-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.main-navigation li a { color: var(--text-color); font-weight: 600; font-size: 15px; text-transform: uppercase;}
.main-navigation li a:hover { color: var(--primary-color); }

/* HERO SLIDER (16:9) */
.hero-section { padding: 40px 0; background: var(--bg-color); }
.hero-swiper { width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.hero-slide { position: relative; width: 100%; height: 100%; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%); }
.hero-content { position: absolute; bottom: 12%; left: 5%; right: 5%; color: #fff; z-index: 10; }
.hero-category { background: var(--primary-color); color: #fff; padding: 5px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; border-radius: 4px; margin-bottom: 15px; display: inline-block; }
.hero-title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin: 0 0 10px 0; }
.hero-title a { color: #fff; }
.hero-pagination { position: absolute; bottom: 20px !important; right: 20px !important; width: auto !important; left: auto !important; z-index: 20; display: flex; gap: 8px; }
.hero-pagination .swiper-pagination-bullet { width: 32px; height: 32px; background: rgba(255,255,255,0.2); color: #fff; opacity: 1; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; border-radius: 6px; transition: 0.3s; cursor: pointer; border: 1px solid rgba(255,255,255,0.3); }
.hero-pagination .swiper-pagination-bullet-active { background: var(--primary-color); border-color: var(--primary-color); }

/* CATEGORY ROWS & GRIDS */
.category-row { margin-bottom: 50px; }
.cat-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #e5e7eb; margin-bottom: 20px; padding-bottom: 10px; }
.cat-title { font-size: 22px; font-weight: 800; color: var(--text-color); margin: 0; position: relative; }
.cat-title::after { content: ''; position: absolute; bottom: -12px; left: 0; width: 60px; height: 3px; background: var(--primary-color); }

.cat-view-all { font-size: 14px; font-weight: 700; color: var(--primary-color); background: rgba(0,0,0,0.04); padding: 6px 14px; border-radius: 4px; display: inline-flex; align-items: center; gap: 5px; }
.cat-view-all:hover { background: var(--primary-color); color: #fff; }

/* 4 SUTUNLU GRID YAPI */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.post-card { background: var(--header-bg); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.post-thumb { aspect-ratio: 4 / 5; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-info { padding: 20px; }
.post-title { font-size: 16px; font-weight: 700; margin: 0 0 10px 0; line-height: 1.3; }
.post-title a { color: var(--text-color); }
.post-meta { font-size: 12px; opacity: 0.6; }

/* KATEGORI SAYFASI PAGINATION */
.pagination-area { margin-top: 50px; text-align: center; display: flex; justify-content: center; gap: 15px; }
.pagination-area a { background-color: var(--primary-color); color: #fff; padding: 12px 24px; border-radius: 6px; font-weight: 700; font-size: 15px; display: inline-block; transition: 0.2s; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.pagination-area a:hover { opacity: 0.9; transform: translateY(-2px); }

/* FOOTER */
.site-footer { background: #111827; color: #9ca3af; padding: 60px 0 20px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-widget h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-widget ul li { margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.footer-widget ul li a { color: #9ca3af; }
.footer-widget ul li a:hover { color: var(--primary-color); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;}
.footer-navigation ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; flex-wrap: wrap; }
.footer-navigation ul li a { color: #d1d5db; font-size: 14px; font-weight: 500; }
.footer-navigation ul li a:hover { color: var(--primary-color); }
.site-info { font-size: 14px; }

/* SINGLE POST */
.single-container { max-width: 800px; margin: 0 auto; background: var(--header-bg); padding: 40px; border-radius: 12px; margin-top: 40px; }
.single-title { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.single-thumb { aspect-ratio: 16 / 9; margin: 20px 0; border-radius: 8px; overflow: hidden; }

@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .top-bar-inner { flex-direction: column; gap: 10px; text-align: center; }
    .header-inner { flex-direction: column; gap: 15px; }
    .hero-title { font-size: 1.5rem; }
    .cat-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
}
