/*
Theme Name: V66FEEEE
Theme URI: https://www.iyidizayn.com
Author: iyiDizayn Team
Author URI: https://www.iyidizayn.com
Description: Modern, responsive sohbet/blog WordPress teması. Gündüz/Gece modu, özelleştirilebilir admin paneli, renkli kategoriler ve modern tasarım.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sekershell
Tags: blog, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout, dark-mode
*/

/* ==================== CSS DEĞİŞKENLERİ ==================== */
:root {
    /* Ana Renkler */
    --primary: #4A5FC1;
    --primary-dark: #3a4da0;
    --primary-light: #6b7fd4;
    --secondary: #FF6B9D;
    --accent: #FFA726;
    --success: #66BB6A;
    --danger: #EF5350;

    /* Arka Plan */
    --bg-body: #f0f4ff;
    --bg-card: #ffffff;
    --bg-sidebar: #ffffff;
    --bg-footer: #ffffff;
    --bg-input: #ffffff;
    --bg-hover: #f5f7ff;

    /* Metin */
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --text-light: #ffffff;

    /* Kenarlık */
    --border-color: #e2e8f0;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;

    /* Gölge */
    --shadow-sm: 0 2px 4px rgba(74, 95, 193, 0.06);
    --shadow-md: 0 4px 12px rgba(74, 95, 193, 0.1);
    --shadow-lg: 0 8px 24px rgba(74, 95, 193, 0.15);

    /* Geçiş */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Yazı Tipi */
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ==================== KARANLIK MOD ==================== */
[data-theme="dark"] {
    --bg-body: #0f172a;
    --bg-card: #1e293b;
    --bg-sidebar: #1e293b;
    --bg-footer: #1e293b;
    --bg-input: #334155;
    --bg-hover: #2d3748;

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-light: #ffffff;

    --border-color: #334155;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ==================== GENEL TEMEL ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--transition);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================== KONTAINER ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==================== HEADER ==================== */
.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.site-logo span {
    color: var(--secondary);
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

/* ==================== NAVİGASYON ==================== */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

.main-navigation a {
    display: block;
    padding: 10px 18px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    background: var(--primary);
    color: var(--text-light);
}

/* Mobil Menü Butonu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-primary);
    font-size: 1.5rem;
}

/* ==================== TEMA DEĞİŞTİRİCİ ==================== */
.theme-toggle {
    background: var(--bg-hover);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    width: 50px;
    height: 26px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 2px;
    margin-left: 10px;
}

.theme-toggle::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    left: 2px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

[data-theme="dark"] .theme-toggle::after {
    left: calc(100% - 22px);
    background: var(--primary-light);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.theme-toggle .icon-sun { left: 6px; color: #fff; }
.theme-toggle .icon-moon { right: 6px; color: var(--text-secondary); }

[data-theme="dark"] .theme-toggle .icon-sun { color: var(--text-muted); }
[data-theme="dark"] .theme-toggle .icon-moon { color: #fff; }

/* ==================== HERO BÖLÜMÜ ==================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #fff;
    transition: var(--transition);
}

.hero-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-box p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Login Form */
.login-form {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
}

.login-form h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 95, 193, 0.1);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    width: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
    margin: 5px;
}

.btn-playstore { background: #FF6B00; }
.btn-appstore { background: #1c1c1c; }
.btn-mirc { 
    background: var(--secondary); 
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* ==================== ANA İÇERİK ==================== */
.site-content {
    padding: 40px 0;
}

.content-area {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.content-area.full-width {
    grid-template-columns: 1fr;
}

.content-area.sidebar-right {
    grid-template-columns: 1fr 300px;
}

/* ==================== SIDEBAR ==================== */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget {
    background: var(--bg-sidebar);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.widget:hover {
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Kategori Widget */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-left: 4px solid var(--primary);
    background: var(--bg-hover);
    transition: var(--transition);
}

.category-list a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(5px);
}

/* Renkli Kategori Kenarlıkları */
.cat-arkadaslik a { border-left-color: var(--primary); }
.cat-genel a { border-left-color: var(--secondary); }
.cat-haberler a { border-left-color: var(--accent); }
.cat-kadin-erkek a { border-left-color: var(--success); }
.cat-ruya a { border-left-color: var(--danger); }
.cat-sohbet a { border-left-color: #9C27B0; }

/* Popüler Yazılar Widget */
.popular-posts {
    list-style: none;
}

.popular-posts li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.popular-posts li:last-child {
    border-bottom: none;
}

.popular-posts a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.popular-posts a:hover {
    color: var(--primary);
}

.popular-posts .post-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.popular-posts .post-title {
    line-height: 1.4;
}

/* ==================== BLOG KARTLARI ==================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card .card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .card-image img {
    transform: scale(1.1);
}

.blog-card .card-content {
    padding: 20px;
}

.blog-card .card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card .card-meta i {
    margin-right: 4px;
    color: var(--primary);
}

.blog-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .card-title a:hover {
    color: var(--primary);
}

.blog-card .card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card .read-more {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.blog-card .read-more:hover {
    background: var(--primary-dark);
}

/* ==================== SAYFALAMA ==================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pagination a:hover,
.pagination .current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==================== TEKLİ YAZI ==================== */
.single-post {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.single-post .post-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.single-post .post-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.single-post .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.single-post .post-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.single-post .post-thumbnail {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
}

.single-post .post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.single-post .post-content h2,
.single-post .post-content h3 {
    color: var(--primary);
    margin: 30px 0 15px;
    font-weight: 700;
}

.single-post .post-content p {
    margin-bottom: 20px;
}

.single-post .post-content img {
    border-radius: var(--border-radius-sm);
    margin: 20px 0;
}

.single-post .post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.single-post .post-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-hover);
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 4px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.single-post .post-tags a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==================== YORUMLAR ==================== */
.comments-area {
    margin-top: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.comments-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.comment-list {
    list-style: none;
}

.comment {
    padding: 20px;
    margin-bottom: 20px;
    background: var(--bg-hover);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.comment .comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.comment .comment-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comment .comment-content {
    margin-left: 57px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Yorum Formu */
.comment-form {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-input);
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 95, 193, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form .form-submit input {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    border: none;
    padding: 14px 30px;
    width: auto;
    text-transform: uppercase;
}

.comment-form .form-submit input:hover {
    background: var(--primary-dark);
}

/* ==================== SAYFA İÇERİĞİ ==================== */
.page-content {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.page-content h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 800;
}

/* ==================== İLETİŞİM FORMU ==================== */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-input);
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 95, 193, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.contact-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget {
    text-align: center;
}

.footer-widget h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    display: block;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Sosyal Medya */
.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.social-facebook { background: #1877F2 !important; }
.social-twitter { background: #1DA1F2 !important; }
.social-instagram { background: #E4405F !important; }
.social-youtube { background: #FF0000 !important; }
.social-whatsapp { background: #25D366 !important; }

/* Footer Alt */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer Dekoratif */
.footer-decoration {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-body);
    border: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
}

.footer-decoration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== ÖZEL BÖLÜMLER ==================== */
/* Chat Odaları Bölümü */
.chat-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.chat-section h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

/* 3 Sütunlu Widget */
.three-column-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.column-widget {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.column-widget.blue { border-top: 4px solid var(--primary); }
.column-widget.pink { border-top: 4px solid var(--secondary); }
.column-widget.orange { border-top: 4px solid var(--accent); }

.column-widget h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.column-widget ul {
    list-style: none;
    padding-left: 0;
}

.column-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.column-widget ul li:last-child {
    border-bottom: none;
}

.column-widget ul li a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.column-widget ul li a:hover {
    color: var(--primary);
}

/* ==================== MOBİL MENÜ ==================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-card);
    z-index: 1001;
    padding: 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu ul {
    list-style: none;
    margin-top: 50px;
}

.mobile-menu ul li {
    margin-bottom: 5px;
}

.mobile-menu ul li a {
    display: block;
    padding: 12px 0;
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

/* ==================== DEKORATİF ELEMENTLER ==================== */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}

.circle-blue { background: var(--primary); }
.circle-pink { background: var(--secondary); }
.circle-orange { background: var(--accent); }
.circle-green { background: var(--success); }

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .content-area {
        grid-template-columns: 1fr;
    }

    .content-area.sidebar-right {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
        order: 2;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .three-column-widgets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .single-post {
        padding: 25px;
    }

    .single-post .post-title {
        font-size: 1.5rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .site-logo {
        font-size: 1.4rem;
    }

    .login-form {
        padding: 25px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* ==================== YÜKLEME ANİMASYONU ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==================== SEÇİM RENGİ ==================== */
::selection {
    background: var(--primary);
    color: #fff;
}

/* ==================== YUKARI ÇIK BUTONU ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==================== BİLDİRİM ==================== */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    padding: 15px 25px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.4s ease;
}

.notification.show {
    transform: translateX(0);
}

/* ==================== ARAMA ==================== */
.search-form {
    position: relative;
    margin-bottom: 20px;
}

.search-form input {
    width: 100%;
    padding: 12px 45px 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

/* ==================== WIDGET: SON YORUMLAR ==================== */
.recent-comments-widget .comment-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-comments-widget .comment-item:last-child {
    border-bottom: none;
}

.recent-comments-widget .comment-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.recent-comments-widget .comment-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.recent-comments-widget .comment-post {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ==================== ÖZEL SİDEBAR STİLLERİ ==================== */
.sidebar-sticky {
    position: sticky;
    top: 90px;
}

/* Admin bar düzeltmesi */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar .sidebar {
    top: 132px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
    .admin-bar .sidebar {
        top: 146px;
    }
}
