/* blog.css */
 :root {
            --primary-color: black;
            --secondary-color: #6c757d;
        }
/* Genel Stiller */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Başlık Animasyonu */
h1.text-center {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
h1.text-center::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    color: #333;
    bottom: 0;
    left: 25%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

h1.text-center:hover::after {
    transform: scaleX(1);
}

/* Kart Stilleri */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-img-container {
    height: 200px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

/* Badge Stilleri */
.badge {
    padding: 8px 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Buton Stilleri */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Pagination Stilleri */
.pagination {
    gap: 5px;
}

.page-link {
    border: none;
    padding: 10px 15px;
    color: var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .card-img-container {
        height: 180px;
    }

    h1.text-center {
        font-size: 1.8rem;
    }
}

/* AOS Animasyon Stilleri */
[data-aos] {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}