/* Blog sayfası için özel stiller */
.blog-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--bs-primary-dark);
}

.blog-card .card-text {
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--bs-teal-300);
    color: white;
}

.featured-blog {
    margin-bottom: 3rem;
}

.featured-blog .card {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-blog .card-img-top {
    height: 350px;
    object-fit: cover;
}

.pagination .page-item .page-link {
    color: var(--bs-primary-dark);
}

.pagination .page-item.active .page-link {
    background-color: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
    color: white;
}

.search-form .form-control {
    border-radius: 50px 0 0 50px;
    border: 1px solid #dee2e6;
}

.search-form .btn {
    border-radius: 0 50px 50px 0;
    background-color: var(--bs-primary-dark);
    color: white;
}

.blog-sidebar .card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.blog-sidebar .card-header {
    background-color: var(--bs-primary-dark);
    color: white;
    font-weight: 600;
    border-bottom: none;
    border-radius: 0.75rem 0.75rem 0 0 !important;
}

.blog-sidebar .list-group-item {
    border: none;
    padding: 0.75rem 1.25rem;
}

.blog-sidebar .list-group-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sidebar .list-group-item a:hover {
    color: var(--bs-primary-dark);
}

/* Blog Detay Sayfası */
.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--bs-primary-dark);
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content img {
    max-width: 100%;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--bs-teal-300);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
}

.blog-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.blog-detail-header .blog-category {
    margin-bottom: 1rem;
}

.blog-detail-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bs-primary-dark);
}

.blog-author {
    display: flex;
    align-items: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.75rem;
}

.blog-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1.5rem;
}

.blog-author-info h4 {
    margin-bottom: 0.5rem;
    color: var(--bs-primary-dark);
}

.blog-author-info p {
    margin-bottom: 0;
    color: #6c757d;
}

.related-posts {
    margin-top: 3rem;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
    color: var(--bs-primary-dark);
    position: relative;
    padding-bottom: 0.75rem;
}

.related-posts h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--bs-teal-300);
}

@media (max-width: 767.98px) {
    .featured-blog .card-img-top {
        height: 250px;
    }
    
    .blog-detail-header h1 {
        font-size: 2rem;
    }
    
    .blog-author {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-author img {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Başlık bölümü stilleri */
.page-title-layout {
    position: relative;
    height: 520px;
    background-color: #263238;
    margin-bottom: 3rem;
    overflow: hidden;
}

.parallax-container {
    position: relative;
    height: 100%;
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-title-layout .content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.page-title-layout h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.banner-description {
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
}

.banner-description strong.br {
    font-size: 24px;
    color: var(--bs-teal-300);
}

/* Blog içerik stilleri */
.blog-detail-content img {
    max-width: 100%;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--bs-teal-300);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

/* Blog Detay Sayfası için Ek Stiller */
.blog-detail-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bs-primary-dark);
    line-height: 1.3;
}

.blog-detail-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bs-primary-dark);
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.blog-tags {
    margin-top: 2rem;
}

.blog-tags h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--bs-primary-dark);
}

.blog-tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tags .tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: #f0f2f5;
    color: #6c757d;
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tags .tag:hover {
    background-color: var(--bs-primary-dark);
    color: white;
}

.blog-share {
    margin-top: 2rem;
}

.blog-share h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--bs-primary-dark);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.btn-share:hover {
    opacity: 0.9;
    color: white;
}

.btn-share i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.btn-facebook {
    background-color: #3b5998;
}

.btn-twitter {
    background-color: #1da1f2;
}

.btn-linkedin {
    background-color: #0077b5;
}

.btn-whatsapp {
    background-color: #25d366;
}

.author-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.author-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.author-name {
    color: var(--bs-primary-dark);
    margin-bottom: 0.25rem;
}

.author-title {
    color: #6c757d;
    font-size: 0.9rem;
}

.author-bio {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Stiller */
@media (max-width: 767.98px) {
    .blog-detail-title {
        font-size: 1.75rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .author-box .row {
        flex-direction: column;
    }
    
    .author-box .col-md-3 {
        margin-bottom: 1.5rem;
    }
} 