
.breadcrumb {
    background-image: url("../img/breadcrumb_1.png");
    background-repeat: no-repeat;
    height: 160px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.breadcrumb::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #02020277;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.breadcrumb h2 {
    position: relative;
    z-index: 50;
    font-size: 36px;
    font-weight: 600;
}

    .section-title {
        font-size: 32px;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
        text-transform: uppercase;
    }
    .section-subtitle {
        font-size: 16px;
        color: #b0b0b0;
    }
    
    /* Sıralama ve Görünüm */
    .sort-dropdown .btn {
        background-color: #222;
        border: 1px solid #333;
        color: white;
        padding: 10px 20px;
    }
    .dropdown-menu-dark {
        background-color: #222;
        border: 1px solid #333;
    }
    .dropdown-item {
        color: #e0e0e0;
    }
    .dropdown-item:hover, .dropdown-item.active {
        background-color: #333;
        color: white;
    }
    .view-options .btn {
        background-color: #222;
        border: 1px solid #333;
        color: #888;
        margin-left: 5px;
        padding: 6px 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .view-options .btn.active {
        background-color: #333;
        color: white;
    }
    .view-options svg {
        width: 16px;
        height: 16px;
    }
    
    /* Kategori Filtreleme */
    .category-filter {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }
    .category-btn {
        background-color: #222;
        border: 1px solid #333;
        color: #b0b0b0;
        padding: 8px 16px;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .category-btn:hover, .category-btn.active {
        background-color: #a61e22;
        color: white;
        text-decoration: none;
    }
    
    /* Arama Kutusu */
    .search-container {
        position: relative;
    }
    .search-input {
        background-color: #222;
        border: 1px solid #333;
        color: white;
        padding: 12px 20px;
        padding-right: 50px;
        border-radius: 4px;
        width: 100%;
    }
    .search-input::placeholder {
        color: #888;
    }
    .search-btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #888;
        cursor: pointer;
        transition: color 0.3s;
    }
    .search-btn:hover {
        color: white;
    }
    
    /* Blog Kartları */
    .blog-card {
        background-color: #222;
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }
    .blog-card:hover {
        transform: translateY(-5px);
    }
    .blog-card-image {
        position: relative;
        height: 220px;
    }
    .blog-card-category {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 10;
    }
    .blog-card-category span {
        background-color: rgba(166, 30, 34, 0.9);
        color: white;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 12px;
    }
    .blog-card-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index:2;
    }
    .blog-card-title {
        font-size: 18px;
        font-weight: 600;
        color: white;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    .blog-card-excerpt {
        font-size: 14px;
        color: #b0b0b0;
        margin-bottom: 15px;
        flex: 1;
        line-height: 1.5;
    }
    .blog-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
    }
    .author-date {
        display: flex;
        flex-direction: column;
    }
    .author {
        color: #b0b0b0;
        font-weight: 500;
    }
    .date {
        color: #888;
        margin-top: 3px;
    }
    .views {
        color: #888;
        font-size: 12px;
    }
    
    /* Swiper Slider Stilleri */
    .swiper-container {
        width: 100%;
        height: 100%;
    }
    .swiper-slide {
        width: 100%;
        height: 100%;
    }
    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease, background-color 0.3s ease;
    }
    .swiper-button-prev:after,
    .swiper-button-next:after {
        display: none;
    }
    .blog-card:hover .swiper-button-prev,
    .blog-card:hover .swiper-button-next {
        opacity: 1;
    }
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background-color: rgba(166, 30, 34, 0.8);
    }
    .swiper-pagination {
        bottom: 10px !important;
    }
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background-color: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
    .swiper-pagination-bullet-active {
        background-color: white;
    }
    
    /* Görünüm Modları */
    .blog-grid-view-2 .blog-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .blog-grid-view-3 .blog-item {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .blog-list-view .blog-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog-list-view .blog-card {
        flex-direction: row;
    }
    .blog-list-view .blog-card-image {
        width: 300px;
        height: auto;
    }
    .blog-list-view .blog-card-content {
        flex: 1;
    }
    
    /* Sayfalama */
    .pagination-container {
        margin-top: 40px;
    }
    .pagination .page-link {
        background-color: #222;
        border: 1px solid #333;
        color: #b0b0b0;
        margin: 0 3px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
    }
    .pagination .page-item.active .page-link {
        background-color: #a61e22;
        border-color: #a61e22;
        color: white;
    }
    .pagination-info {
        margin-top: 15px;
        color: #888;
        font-size: 14px;
    }
    
    /* Responsive Düzenlemeler */
    @media (max-width: 992px) {
        .blog-card-image {
            height: 180px;
        }
        .blog-list-view .blog-card {
            flex-direction: column;
        }
        .blog-list-view .blog-card-image {
            width: 100%;
            height: 220px;
        }
    }
    @media (max-width: 768px) {
        .blog-card-image {
            height: 180px;
        }
        .blog-grid-view-2 .blog-item,
        .blog-grid-view-3 .blog-item {
            flex: 0 0 100%;
            max-width: 100%;
        }
        .category-filter {
            flex-direction: column;
        }
        .category-btn {
            width: 100%;
            text-align: center;
        }
    } 
 
        .contact-button{
            background-color: var(--red);
            color: var(--white);
        }
        .image img{
            object-fit: cover;
            width:100%;
            height: 500px;
        } 
        #body{
            padding: 110px 0 0;
            background: #181818;
            color:white;
        }
        #header{
            background-color:#181818 !important
        }
        @media  only screen and (max-width: 768px) {
            #body{
                padding: 0px 0 0 !important;
            }
            #header{
            position: relative; 
            }
        } 

        