/*
Theme Name: Modern Blog Style
Description: Modern, SEO uyumlu WordPress teması - Blog benzeri tasarım
Version: 1.0
Author: Frida's Mind
*/

/* ===== GENEL STİLLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    color: #333;
    line-height: 1.6;
}

/* ===== HEADER STİLLERİ ===== */
.site-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.site-logo {
    font-size: 32px;
    font-weight: bold;
    color: #ff8c00;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.site-logo:hover {
    color: #ffa500;
    transform: scale(1.05);
}

.main-navigation {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a:hover {
    background: rgba(255, 140, 0, 0.2);
    color: #ff8c00;
}

.cta-button {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    color: white;
}

.cta-button::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(3px);
}

/* ===== ANA İÇERİK ===== */
.site-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ===== SINGLE POST STİLLERİ ===== */
.single-post-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.single-post .post-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.single-post .post-title {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.single-post .post-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.single-post .post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.single-post .post-featured-image {
    margin-bottom: 30px;
}

.single-post .post-featured-image .featured-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.single-post .post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.single-post .post-content h1,
.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4,
.single-post .post-content h5,
.single-post .post-content h6 {
    color: #1a1a1a;
    margin: 30px 0 15px 0;
    font-weight: bold;
}

.single-post .post-content h2 {
    font-size: 24px;
    border-bottom: 2px solid #ff8c00;
    padding-bottom: 10px;
}

.single-post .post-content h3 {
    font-size: 20px;
}

.single-post .post-content p {
    margin-bottom: 20px;
}

.single-post .post-content ul,
.single-post .post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.single-post .post-content li {
    margin-bottom: 10px;
}

.single-post .post-content blockquote {
    border-left: 4px solid #ff8c00;
    padding: 20px;
    margin: 30px 0;
    background: #f8f9fa;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.single-post .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.single-post .post-footer {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.single-post .post-categories,
.single-post .post-tags {
    margin-bottom: 20px;
}

.single-post .post-categories h4,
.single-post .post-tags h4 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 16px;
}

.single-post .category-link,
.single-post .tag-link {
    display: inline-block;
    background: #ff8c00;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.single-post .category-link:hover,
.single-post .tag-link:hover {
    background: #ffa500;
    color: white;
    transform: translateY(-2px);
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation a {
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #ff8c00;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background: #ff8c00;
    color: white;
}

/* ===== POST LİSTESİ ===== */
.posts-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '+';
    background: #ff8c00;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.post-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left-color: #ff8c00;
}

.post-thumbnail {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.post-content {
    flex: 1;
}

.post-category {
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.post-title {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #ff8c00;
}

.post-excerpt {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #999;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #ffa500;
    gap: 8px;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* ===== DAHA FAZLA BUTONU ===== */
.load-more-section {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* ===== SIDEBAR ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.widget-title {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff8c00;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.cta-widget .widget-title {
    color: white;
    border-bottom-color: #ff8c00;
}

.cta-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 15px;
}

.cta-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-widget .cta-button {
    width: 100%;
    justify-content: center;
}

/* Kategoriler */
.category-list {
    list-style: none;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #ff8c00;
}

.category-count {
    background: #ff8c00;
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
}

/* Popüler Yazılar */
.popular-post {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.popular-post:last-child {
    border-bottom: none;
}

.popular-thumbnail {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.popular-content {
    flex: 1;
}

.popular-title {
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.3;
}

.popular-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-title a:hover {
    color: #ff8c00;
}

.popular-date {
    font-size: 12px;
    color: #999;
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .site-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .post-card {
        flex-direction: column;
        text-align: center;
    }
    
    .post-thumbnail {
        width: 100%;
        height: 120px;
    }
}

/* ===== SEO OPTİMİZASYONU ===== */
.schema-markup {
    display: none;
}

/* ===== ANİMASYONLAR ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SEO SKORU WIDGET ===== */
.seo-score-widget {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.seo-score-widget h4 {
    color: #ff8c00;
    margin-bottom: 20px;
    font-size: 18px;
}

.seo-score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.score-number {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.score-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.seo-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-item:last-child {
    border-bottom: none;
}

.seo-label {
    color: #ccc;
    font-size: 14px;
}

.seo-value {
    color: #ff8c00;
    font-weight: bold;
    font-size: 14px;
}

/* SEO Skor Renkleri */
.seo-score-circle.excellent {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.seo-score-circle.good {
    background: linear-gradient(135deg, #8BC34A 0%, #AED581 100%);
}

.seo-score-circle.average {
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
}

.seo-score-circle.poor {
    background: linear-gradient(135deg, #F44336 0%, #EF5350 100%);
}

/* ===== YÜKLEME DURUMU ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ff8c00;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== FOOTER STİLLERİ ===== */
.site-footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #ff8c00;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-section p {
    color: white;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ff8c00;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
}
