/* ===================================
   DOSYA 1: style.css
   =================================== */

/*
Theme Name: İş Rehberi Modern
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Modern firma rehberi, ilan ve haber teması. Glassmorphism ve animasyonlar ile.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: is-rehberi
Tags: blog, business, news, responsive, modern
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    overflow-y: auto;
}

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

header.site-header {
    position: relative;  /* veya fixed/sticky istiyorsan onu yaz */
    top: 0;
    z-index: 100;
    background: rgba(102, 126, 234, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 3rem 0rem;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 101;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    position: relative;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(102, 126, 234, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    padding: 0.5rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-links li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu li {
    padding: 0;
}

.nav-links .sub-menu a {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.nav-links .sub-menu a::after {
    display: none;
}

.nav-links .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: white;
    padding-left: 1.8rem;
}

/* Dropdown Arrow */
.nav-links .menu-item-has-children > a::before {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.nav-links .menu-item-has-children:hover > a::before {
    transform: rotate(180deg);
}

.hero {
    position: relative;
    padding: 8rem 3rem 6rem;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Page Hero - Diğer Sayfalar için */
.page-hero {
    position: relative;
    padding: 4rem 3rem;
    text-align: center;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1);
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.search-bar {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-bar input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    outline: none;
}

.search-bar button {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.search-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 87, 108, 0.6);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 3rem 5rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    position: relative;
    padding-left: 1.5rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60%;
    background: linear-gradient(180deg, #f093fb 0%, #f5576c 100%);
    border-radius: 10px;
}

.view-all {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.view-all:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.post-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.post-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.post-thumbnail {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-thumbnail::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.post-content {
    padding: 2rem;
}

.post-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-decoration: none;
}

.post-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.post-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.95rem;
}

/* Single Post - Yeni Modern Tasarım */
.single-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 3rem 5rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.single-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.single-main {
    width: 100%;
}

.single-post {
    background: rgba(255, 255, 255, 0.95);
 
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.single-post .post-thumbnail {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    overflow: hidden;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post .post-header {
    padding: 3rem 3rem 2rem;
}

.single-post .post-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-decoration: none;
}

.single-post .post-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 900;
    line-height: 1.2;
}

.post-meta-detailed {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #667eea;
}

.meta-author-info strong {
    display: block;
    color: #1a1a1a;
    font-weight: 700;
}

.meta-author-info span {
    font-size: 0.9rem;
    color: #999;
}

.meta-stats {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.meta-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.meta-stat span {
    font-weight: 600;
}

/* Social Share Bar - Sticky */
.social-share-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.share-sticky-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.share-sticky-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.share-sticky-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.share-sticky-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-facebook { background: linear-gradient(135deg, #1877f2, #0d5dbf); }
.share-twitter { background: linear-gradient(135deg, #1DA1F2, #0c85d0); }
.share-linkedin { background: linear-gradient(135deg, #0077b5, #005885); }
.share-whatsapp { background: linear-gradient(135deg, #25D366, #1da851); }

/* Entry Content */
.single-post .entry-content {
    padding: 3rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
}

.single-post .entry-content p {
    margin-bottom: 1.8rem;
}

.single-post .entry-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    padding-left: 1.5rem;
}

.single-post .entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.single-post .entry-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Sidebar */
.single-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Author Box */
.author-box {
    text-align: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 4px solid #667eea;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.author-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-posts-link {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.author-posts-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Related Posts */
.related-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.related-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-post-content h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.related-post-content h4 a:hover {
    color: #667eea;
}

.related-post-date {
    font-size: 0.85rem;
    color: #999;
}

/* Table of Contents */
.toc-widget ul {
    list-style: none;
    padding: 0;
}

.toc-widget li {
    margin-bottom: 0.8rem;
}

.toc-widget a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.toc-widget a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding-left: 1.2rem;
}

/* Tags */
.post-tags {
    padding: 2rem 3rem;
    border-top: 2px solid #f0f0f0;
}

.post-tags h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag-list a {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.tag-list a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

/* Post Navigation - Modern */
.post-navigation-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

@media (max-width: 768px) {
    .post-navigation-modern {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.25rem;
    }

    .post-navigation-modern > * {
        width: 100%;
        max-width: 520px;
    }
}

.nav-post-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.nav-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.nav-post-label {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.nav-post-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .single-layout {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .single-main,
    .single-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .single-sidebar {
        position: static;
    }
}


/* Comments */
.comments-area {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
    width: 100%;
    position: relative;
}

.comments-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.comment-list {
    list-style: none;
    margin-bottom: 2rem;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
}

.comment-author {
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.comment-metadata {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.comment-metadata a {
    color: #999;
    text-decoration: none;
}

.comment-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reply {
    margin-top: 1rem;
}

.reply a {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.reply a:hover {
    transform: translateY(-2px);
}

.children {
    list-style: none;
    margin-left: 3rem;
    margin-top: 1rem;
}

.comment-respond {
    margin-top: 3rem;
}

.comment-reply-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-form p {
    display: flex;
    flex-direction: column;
}

.comment-form label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 1rem;
}

.submit {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.post-navigation a {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    position: relative;
}

.post-navigation a:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.post-navigation a span {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination span.current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

/* Search Page */
.search-results .page-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2rem;
    color: #333;
}

/* 404 Page */
.error-404 {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.error-404 h1 {
    font-size: 6rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.error-404 h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.error-404 p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

footer.site-footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    color: white;
    padding: 4rem 3rem 2rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
    width: 100%;
    clear: both;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

@media (max-width: 768px) {
   nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem rem;
    position: relative; /* ← MUTLAKA */
}

    .logo {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }
	
	   header.site-header {
        position: relative;
    }

.nav-links {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(102, 126, 234, 0.98);
        padding: 1rem 0;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    /* Mobile Dropdown */
    .nav-links .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links .menu-item-has-children.active > .sub-menu {
        max-height: 500px;
    }

    .nav-links .sub-menu a {
        padding: 0.8rem 1.5rem 0.8rem 2.5rem;
        border-left: none;
        font-size: 0.9rem;
    }

    .nav-links .sub-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 2.8rem;
    }

    .nav-links .menu-item-has-children > a::before {
        content: '▼';
        transition: transform 0.3s;
        margin-left: auto;
        margin-right: 0;
    }

    .nav-links .menu-item-has-children.active > a::before {
        transform: rotate(180deg);
    }

    .hero {
        padding: 4rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .search-bar {
        flex-direction: column;
        padding: 1rem;
    }

    .search-bar button {
        width: 100%;
    }

    .page-hero {
        padding: 3rem 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 2rem 1.5rem 3rem;
    }

    .section-title {
        font-size: 1.5rem;
        padding-left: 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .post-card {
        margin: 0;
    }

    .post-thumbnail {
        height: 180px;
    }

    /* Single Post Mobile */
    .single-container {
        padding: 2rem 1rem 3rem;
    }

    .single-post {
        border-radius: 15px;
    }

    .single-post .post-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .single-post .post-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .single-post .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .single-post .post-thumbnail {
        height: 250px;
    }

    .post-share-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 1.5rem;
    }

    .social-share {
        padding: 1.5rem;
    }

    .social-share-title {
        font-size: 1rem;
    }

    .social-share-subtitle {
        font-size: 0.8rem;
    }

    .social-share-grid {
        gap: 0.6rem;
    }

    .share-card {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    .share-icon {
        width: 28px;
        height: 28px;
    }

    .share-icon svg {
        width: 16px;
        height: 16px;
    }

    .share-label {
        font-size: 0.85rem;
    }

    .single-post .entry-content {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .single-post .entry-content h2 {
        font-size: 1.5rem;
    }

    .single-post .entry-content h3 {
        font-size: 1.2rem;
    }

    .single-post .entry-content img {
        margin: 1.5rem 0;
    }

    .single-post .entry-content blockquote {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .post-tags {
        padding: 1.5rem;
    }

    .tag-list {
        gap: 0.5rem;
    }

    .tag-list a {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .post-navigation a {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .comments-area {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .comments-title {
        font-size: 1.5rem;
    }

    .comment {
        padding: 1rem;
    }

    .comment-author {
        font-size: 0.95rem;
    }

    .comment-content {
        font-size: 0.95rem;
    }

    .children {
        margin-left: 1rem;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
        font-size: 16px;
    }

    .comment-form textarea {
        min-height: 120px;
    }

    .submit {
        width: 100%;
        padding: 1rem 2rem;
    }

    .footer-content {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    footer.site-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-section {
        text-align: center;
    }
}

/* ===================================
   DOSYA 2: functions.php
   =================================== */
   @media (max-width: 768px) {
    .single-post .post-title {
        font-size: 1.7rem;
        line-height: 1.35;
        word-break: break-word;
    }

    .post-meta-detailed {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .meta-stats {
        margin-left: 0;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
}

@media (max-width: 768px) {
    .single-layout {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .single-main,
    .single-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) 
.etiket-liste ul{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    padding:0;
    margin:0;
}

.etiket-liste li{
    list-style:none;
}

/* ETİKET BUTONLARI */
.etiket-liste a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 16px;
    border-radius:999px;              /* hap şeklinde buton */
    background:linear-gradient(135deg,#f5f5f5,#e6e6e6);
    color:#333;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
    border:1px solid #ddd;
    transition:all .25s ease;
    white-space:nowrap;
}

/* HOVER EFEKTİ */
.etiket-liste a:hover{
    background:linear-gradient(135deg,#333,#555);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 6px 15px rgba(0,0,0,.15);
}

/* TIKLAMA (AKTİF) */
.etiket-liste a:active{
    transform:translateY(0);
    box-shadow:0 3px 8px rgba(0,0,0,.2);
}

/* SAYFALAMA BUTONLARI */
.etiket-sayfalama{
    margin-top:20px;
}

.etiket-sayfalama a,
.etiket-sayfalama span{
    display:inline-block;
    min-width:36px;
    text-align:center;
    padding:8px 12px;
    margin-right:6px;
    border-radius:6px;
    background:#f1f1f1;
    color:#333;
    text-decoration:none;
    border:1px solid #ddd;
    transition:.2s;
}

.etiket-sayfalama a:hover{
    background:#333;
    color:#fff;
}

.etiket-sayfalama .aktif{
    background:#111;
    color:#fff;
    border-color:#111;
}
.whatsapp-editor-footer{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#25D366;
    color:#fff;
    padding:12px 18px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    margin-top:10px;
    transition:.2s;
}
.whatsapp-editor-footer:hover{
    background:#1ebe5d;
    color:#fff;
}


