﻿:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --dark: #0f172a;
    --light: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light);
    color: #334155;
    overflow-x: hidden;
}

/* Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    color: var(--dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #475569;
    font-weight: 500;
}

.badge-premium {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Ortak Tasarım Sınıfları */
.section-title {
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

.card-modern {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    background: white;
}

    .card-modern:hover {
        transform: translateY(-5px);
    }

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Pro Avantajları Alanı */
.pro-section {
    background: var(--dark);
    color: white;
    padding: 100px 0;
    position: relative;
}

.pro-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.check-list i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Blog Alanı */
.blog-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: all 0.3s;
}

    .blog-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

.blog-img {
    width: 100%;
    height: 400px;
    /*object-fit: cover;*/
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Makale İçi Okunabilirlik Ayarları (Çok Önemli!) */
.article-content {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1e293b;
}

    .article-content h2, .article-content h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        color: #0f172a;
    }

    .article-content p {
        margin-bottom: 1.5rem;
    }

    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 2rem 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .article-content blockquote {
        font-style: italic;
        border-left: 5px solid #0d6efd;
        padding-left: 1.5rem;
        margin: 2rem 0;
        color: #475569;
        font-size: 1.3rem;
        background: #f1f5f9;
        padding: 20px;
        border-radius: 0 12px 12px 0;
    }

    .article-content ul, .article-content ol {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

    .article-content li {
        margin-bottom: 0.5rem;
    }

    .article-content a {
        color: #0d6efd;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: 0.2s;
    }

        .article-content a:hover {
            border-bottom-color: #0d6efd;
        }

/* Kapak Resmi ve Başlık */
.blog-hero {
    position: relative;
    padding: 150px 0 80px;
    background-color: #0f172a;
    color: white;
    overflow: hidden;
}

.blog-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
}

.blog-title {
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.blog-meta {
    position: relative;
    z-index: 2;
    font-weight: 500;
    opacity: 0.9;
}

/* Etiketler */
.tag-badge {
    background: #e2e8f0;
    color: #475569;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

    .tag-badge:hover {
        background: #0d6efd;
        color: white;
    }

/* Paylaşım Butonları */
.share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
    margin-right: 10px;
}

    .share-btn:hover {
        transform: translateY(-3px);
        color: white;
    }

.bg-wa {
    background: #25D366;
}

.bg-tw {
    background: #1DA1F2;
}

.bg-fb {
    background: #1877F2;
}

.bg-in {
    background: #0A66C2;
}