/*
Theme Name: Sedefleyunanca
Description: Yunanca öğrenme platformu için özel WordPress teması
Version: 1.4
Author: Sedefleyunanca
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --aegean-blue: #1e40af;
    --mediterranean-teal: #0d9488;
    --sage-green: #059669;
    --pearl-white: #f8fafc;
    --marble-gray: #e2e8f0;
    --deep-ocean: #1e293b;
    --gold-accent: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #d97706;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--deep-ocean);
    overflow-x: hidden;
}

/* Greek Background Animations */
.greek-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0ea5e9 0%, #0d9488 50%, #059669 100%);
    overflow: hidden;
}

.greek-letter {
    position: absolute;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.08);
    animation: float 20s infinite linear;
    user-select: none;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.card-greek-letter {
    position: absolute;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.15);
    animation: cardFloat 20s infinite linear;
    user-select: none;
    pointer-events: none;
    font-size: 2.5rem;
}

@keyframes cardFloat {
    0% { transform: translateY(100%) rotate(0deg); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateY(-100%) rotate(360deg); opacity: 0; }
}

/* Header - Temiz ve Minimal Tasarım */
#site-header {
    background: linear-gradient(45deg, var(--gold-accent), var(--gold-light));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

/* Index.php için header stili */
header {
    background: linear-gradient(45deg, var(--gold-accent), var(--gold-light));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

/* Header hover efekti */
#site-header:hover,
header:hover {
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-accent));
    box-shadow: 0 6px 25px rgba(217, 119, 6, 0.4);
}

.main-navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Index.php için nav stili */
header nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    flex-shrink: 0;
}

.custom-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.custom-logo:hover {
    transform: scale(1.1);
}

/* Kategoriler Dropdown - Temiz Tasarım */
.categories-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle.active::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* PC'de mobil menüsünü gizle */
.mobile-only {
    display: none;
}

/* Menü Bölümleri */
.menu-section {
    margin-bottom: 1.5rem;
}

.menu-section:last-child {
    margin-bottom: 0;
}

.menu-section h4 {
    font-family: 'Crimson Text', serif;
    color: var(--gold-accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.menu-section a {
    color: var(--deep-ocean);
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.menu-section a:hover {
    background: linear-gradient(45deg, var(--gold-accent), var(--gold-light));
    color: white;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.menu-section a span {
    margin-right: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--gold-accent), #fbbf24);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-accent));
}

/* Categories Section - Harfler Kaldırıldı */
.categories {
    padding: 5rem 2rem;
    background: var(--pearl-white);
    position: relative;
}

.categories::before {
    content: 'Φ Ψ Ω';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    color: rgba(14, 148, 136, 0.1);
    font-weight: 600;
}

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

.categories h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--deep-ocean);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(135deg, #0ea5e9 0%, #0d9488 50%, #059669 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #1e90ff 0%, #20b2aa 50%, #32cd32 100%);
}

/* Kategori ikonları kaldırıldı */
.category-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.category-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    color: var(--deep-ocean);
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.2rem;
    color: var(--deep-ocean);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Single Post Pages */
.single-post-hero, .category-hero, .archive-hero, .search-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    margin-top: 80px;
}

.single-post-hero .hero-content, .category-hero .hero-content, .archive-hero .hero-content, .search-hero .hero-content {
    max-width: 700px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.single-post-hero h1, .category-hero h1, .archive-hero h1, .search-hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.post-meta span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Content Areas */
.single-post-content, .category-posts, .archive-posts, .search-results {
    padding: 3rem 2rem;
    background: var(--pearl-white);
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.post-content, .post-sidebar > div {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card, .search-result-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover, .search-result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-card-content {
    padding: 2rem;
}

.post-title a {
    color: var(--deep-ocean);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--gold-accent);
}

.read-more {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--gold-dark);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination a, .pagination span {
    padding: 0.75rem 1rem;
    background: white;
    color: var(--deep-ocean);
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--marble-gray);
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination a:hover, .pagination .current {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: white;
}

/* Footer */
.site-footer {
    background: var(--deep-ocean);
    color: white;
    padding: 4rem 2rem 1rem;
}

footer {
    background: var(--deep-ocean);
    color: white;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a, .footer-categories a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links a:hover, .footer-categories a:hover {
    color: var(--gold-accent);
    background: rgba(245, 158, 11, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Breadcrumb Navigation */
.breadcrumb-wrapper {
    background: rgba(245, 158, 11, 0.1);
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    padding: 0.75rem 0;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--deep-ocean);
}

.breadcrumb a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

/* Responsive Design - Mobil için DÜZELTİLMİŞ */
@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 2.5rem 2rem;
    }

    .categories::before {
        display: none;
    }

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

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

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* MOBİL HEADER DÜZENİ */
    .main-navigation,
    header nav {
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .nav-brand {
        flex-shrink: 0;
        z-index: 1002;
    }

    .custom-logo {
        height: 40px;
    }

    /* Kategoriler dropdown'ı sağa hizala */
    .categories-dropdown {
        position: relative;
        z-index: 1001;
    }

    /* MOBİL İÇİN DROPDOWN TOGGLE - DÜZELTİLDİ */
    .dropdown-toggle {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        background: linear-gradient(45deg, var(--gold-accent), var(--gold-light));
        color: white; /* Yazı rengi beyaz olacak */
        border: 2px solid var(--gold-accent);
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(245, 158, 11, 0.2);
        font-weight: 600;
    }

    .dropdown-toggle:hover {
        background: linear-gradient(45deg, var(--gold-dark), var(--gold-accent));
        color: white;
        border-color: var(--gold-dark);
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        transform: none;
    }

    .dropdown-menu {
        position: fixed;
        top: 70px;
        right: 0.5rem;
        left: 0.5rem;
        min-width: auto;
        max-width: none;
        transform: none;
        background: white;
        border: 2px solid var(--gold-accent);
        box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
        padding: 1.2rem;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    .dropdown-menu.active {
        transform: none;
    }

    /* Mobilde ana sayfa linklerini göster */
    .mobile-only {
        display: block;
    }

    /* Mobil menü text boyutları */
    .menu-section {
        margin-bottom: 1.2rem;
    }

    .menu-section h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.4rem;
    }

    .menu-section a {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        margin-bottom: 0.3rem;
    }

    /* Mobil menü ikonları için renk ayarı */
    .dropdown-toggle::after {
        color: white; /* İkon rengi beyaz olacak */
        font-size: 0.7rem;
    }

    .dropdown-toggle.active::after {
        color: white;
    }

    .dropdown-toggle.active {
        background: var(--gold-accent);
        color: white;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Smooth transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Site başlığı gizli SEO için */
.site-branding {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* ============================================
   KATEGORİ SAYFALARI VE TEK YAZI SAYFALARI CSS
   ============================================ */

/* Category Hero ve Single Post Hero */
.category-hero, .single-post-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    margin-top: 80px;
}

.category-hero .hero-content, .single-post-hero .hero-content {
    max-width: 700px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.category-hero h1, .single-post-hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-hero .subtitle, .single-post-hero .subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Post Meta */
.post-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.post-meta span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Category Posts ve Single Post Content */
.category-posts, .single-post-content {
    padding: 3rem 2rem;
    background: var(--pearl-white);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Post Card */
.post-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

/* Post Card Content */
.post-card-content {
    padding: 2rem;
}

.post-title {
    margin-bottom: 1rem;
}

.post-title a {
    color: var(--deep-ocean);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--gold-accent);
}

.post-card-content .post-meta {
    justify-content: flex-start;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.post-card-content .post-meta span {
    background: var(--marble-gray);
    color: var(--deep-ocean);
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
}

.post-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.read-more {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid var(--gold-accent);
    border-radius: 25px;
    background: transparent;
}

.read-more:hover {
    background: var(--gold-accent);
    color: white;
    transform: translateY(-2px);
}

/* Post Tags */
.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--sage-green);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.tag:hover {
    background: var(--mediterranean-teal);
    color: white;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination .page-numbers {
    padding: 0.75rem 1rem;
    background: white;
    color: var(--deep-ocean);
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--marble-gray);
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: white;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.no-posts h2 {
    color: var(--deep-ocean);
    margin-bottom: 1rem;
}

.no-posts p {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Related Categories */
.related-categories {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid var(--marble-gray);
}

.related-categories h3 {
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    color: var(--deep-ocean);
    margin-bottom: 2rem;
}

.category-card-small {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card-small h4 {
    margin-bottom: 0.5rem;
}

.category-card-small h4 a {
    color: var(--deep-ocean);
    text-decoration: none;
    font-weight: 600;
}

.category-card-small h4 a:hover {
    color: var(--gold-accent);
}

.category-card-small p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-count {
    background: var(--gold-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* =====================================
   TEK YAZI SAYFASI (SINGLE POST)
   ===================================== */

/* Post Content Wrapper */
.post-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.post-content, .post-sidebar > div {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Post Featured Image */
.post-featured-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

/* Post Body */
.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--deep-ocean);
}

.post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6 {
    font-family: 'Crimson Text', serif;
    color: var(--deep-ocean);
    margin: 2rem 0 1rem;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body blockquote {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    border-left: 4px solid var(--gold-accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.post-body ul, .post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

/* Page Links */
.page-links {
    background: var(--pearl-white);
    padding: 1rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.page-links-title {
    font-weight: 600;
    margin-right: 1rem;
}

.page-links a, .page-links span {
    margin: 0 0.25rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 5px;
    text-decoration: none;
    color: var(--deep-ocean);
}

.page-links a:hover {
    background: var(--gold-accent);
    color: white;
}

/* Post Tags Section */
.post-tags-section {
    background: var(--pearl-white);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.post-tags-section h4 {
    margin-bottom: 1rem;
    color: var(--deep-ocean);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--marble-gray);
    border-bottom: 1px solid var(--marble-gray);
}

.nav-previous, .nav-next {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-previous:hover, .nav-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-previous a, .nav-next a {
    text-decoration: none;
    color: var(--deep-ocean);
    display: block;
}

.nav-label {
    font-size: 0.9rem;
    color: var(--gold-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    line-height: 1.4;
}

.nav-next {
    text-align: right;
}

/* Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    font-family: 'Crimson Text', serif;
    color: var(--deep-ocean);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Related Posts */
.related-posts {
    list-style: none;
    padding: 0;
}

.related-posts li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--marble-gray);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

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

.related-posts a {
    color: var(--deep-ocean);
    text-decoration: none;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.related-posts a:hover {
    color: var(--gold-accent);
}

.related-posts .post-date {
    font-size: 0.8rem;
    color: #6b7280;
    white-space: nowrap;
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 0.5rem;
}

.categories-list a {
    color: var(--deep-ocean);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: var(--gold-accent);
}

.categories-list .count {
    background: var(--marble-gray);
    color: var(--deep-ocean);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Comments Section */
.comments-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

/* =====================================
   FOOTER STYLES
   ===================================== */

.site-footer {
    background: var(--deep-ocean);
    color: white;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-widgets {
    margin-bottom: 3rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
    display: block;
}

.footer-section a:hover {
    color: var(--gold-accent);
}

.footer-section .count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 30px;
}

.social-links a:hover {
    background: var(--gold-accent);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item .icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-accent);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold-accent);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.scroll-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(217, 119, 6, 0.4);
}

.scroll-to-top span {
    font-size: 1.5rem;
    font-weight: bold;
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */

@media (max-width: 768px) {
    .category-hero, .single-post-hero {
        margin-top: 70px;
        min-height: 40vh;
    }
    
    .category-hero h1, .single-post-hero h1 {
        font-size: 1.8rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .post-meta {
        justify-content: center;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}
/* ============================================
   KATEGORİ KARTLARI LİNK STİLLERİ
   ============================================ */

/* Ana sayfa kategori kartları linkli hali */
.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.category-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.category-card-link:hover .category-card {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #1e90ff 0%, #20b2aa 50%, #32cd32 100%);
}

/* Post count styling */
.post-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--deep-ocean);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-card-link:hover .post-count {
    background: white;
    color: var(--gold-accent);
    transform: scale(1.1);
}

/* Kategori kartları için pozisyon ayarı */
.category-card {
    position: relative;
}

/* Varsayılan kategori kartları (henüz link olmayan) */
.category-card:not(.category-card-link .category-card) {
    cursor: default;
}

.category-card:not(.category-card-link .category-card) .post-count {
    background: rgba(255, 255, 255, 0.7);
    color: var(--deep-ocean);
}

/* Hover efekti sadece linkli kartlar için */
.category-card-link .category-card:hover h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-card-link .category-card:hover p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobil için hover efektlerini kaldır */
@media (hover: none) {
    .category-card-link:hover .category-card {
        transform: none;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        background: linear-gradient(135deg, #0ea5e9 0%, #0d9488 50%, #059669 100%);
    }
    
    .category-card-link:hover .post-count {
        background: rgba(255, 255, 255, 0.9);
        color: var(--deep-ocean);
        transform: none;
    }
}

/* Active state for touch devices */
.category-card-link:active .category-card {
    transform: translateY(-5px);
    transition: transform 0.1s ease;
}