/* ========== BLOG.CSS - SADECE BLOG İÇERİĞİ İÇİN ========== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #000;
    color: #fff;
    padding-top: 56px; /* Header için boşluk */
}

/* Blog Content Styles */
.main-content {
    padding-top: 60px;
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 24px 60px;
    max-width: 900px;
    margin: 0 auto;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
}

.blog-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.featured-post {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin: 0 auto 60px;
    max-width: 1200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.featured-badge {
    display: inline-block;
    background: #3b82f6;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.blog-category {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.read-more:hover {
    color: #60a5fa;
}

/* Testimonials */
.testimonials {
    margin: 80px 0;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 24px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, .2);
}

.btn-secondary {
    padding: 12px 24px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 80px 0 60px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e5e5ff;
    line-height: 1.3;
    margin-bottom: 32px;
}

/* Footer */
.footer-bottom {
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #222;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: .85rem;
    color: #777;
}

.footer-bottom .social-icons {
    margin-bottom: 12px;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #aaa;
    transition: color .3s;
}

.social-icons a:hover {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    .blog-title {
        font-size: 2rem;
    }

    .featured-title {
        font-size: 1.8rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}