/* AOS kaynaklı opacity sorununu düzelt */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, #2d1516 100%);
    padding: 2.5rem 0;
    margin-bottom: 2rem;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Slider Stili */
.news-slider-container {
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.news-slider {
    width: 100%;
    height: 400px;
}
.news-slider .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}
.news-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}
.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
}

/* Kategori başlığı - üstte ve sol hizalı */
.slider-category {
    display: inline-block;
    background: var(--primary-gold);
    color: #2d2d2d;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

/* Slider bağlantı stilleri */
.slider-title-link {
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}
.slider-title-link:hover .slider-title {
    text-decoration: underline;
}
.slider-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    transition: all 0.3s;
    line-height: 1.3;
    display: block;
}
.slider-date {
    font-size: 0.85rem;
    opacity: 0.85;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.4);
    padding: 4px 12px;
    border-radius: 30px;
}
.slider-date i {
    font-size: 0.75rem;
}

/* Swiper butonları */
.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-gold);
    color: #2d2d2d;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.1rem;
}
.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
    width: 10px;
    height: 10px;
}
.swiper-pagination-bullet-active {
    background: var(--primary-gold);
    opacity: 1;
    width: 12px;
    height: 12px;
}

/* Haber Kartları - 2'li grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Haber kartı bağlantı stilleri */
.news-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    height: 100%;
}
.news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0e5d5;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139,44,45,0.12);
    border-color: var(--primary-gold);
}
.news-card-link:hover .news-title {
    color: var(--primary-gold);
}
.news-card-link:hover .read-more {
    gap: 12px;
}
.news-image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news-card-link:hover .news-image {
    transform: scale(1.05);
}
.news-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-gold);
    color: #2d2d2d;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}
.news-content {
    padding: 1.2rem;
    flex: 1;
}
.news-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s;
}
.news-excerpt {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: #888;
}
.news-date i, .news-views i {
    margin-right: 4px;
    color: var(--primary-gold);
}
.read-more {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}
.read-more:hover {
    color: var(--primary-burgundy);
    gap: 12px;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0d5c0;
    background: white;
    color: var(--primary-burgundy);
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}
.page-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #2d2d2d;
}
.page-btn:hover:not(.active) {
    border-color: var(--primary-gold);
    background: #fff3e0;
    transform: translateY(-2px);
}
.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    background: white;
    color: var(--primary-gold);
    transition: all 0.3s;
    cursor: pointer;
}
.nav-btn:hover:not(:disabled) {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.05);
}
.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.page-dots {
    padding: 0 0.3rem;
    color: #aaa;
}

/* Sağ Taraf Menü */
.sidebar-menu {
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
    border-bottom: 3px solid var(--primary-gold);
}
.sidebar-menu h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.sidebar-menu h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 3px;
}
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-list li {
    margin-bottom: 0.8rem;
}
.menu-list a {
    display: block;
    padding: 12px 18px;
    border-radius: 50px;
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    background: #f8f5ef;
}
.menu-list a i {
    margin-right: 12px;
    color: var(--primary-gold);
    width: 24px;
}
.menu-list a:hover {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
    color: white;
    transform: translateX(5px);
}
.menu-list a:hover i {
    color: white;
}
.menu-list a.active {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
    color: white;
}
.menu-list a.active i {
    color: white;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 3rem;
}
.loading-spinner .spinner-border {
    color: var(--primary-gold);
}

/* Sonuç Yok */
.no-results {
    background: #f8f5ef;
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
}
.no-results i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}
.no-results h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}
.no-results p {
    color: #777;
    margin-bottom: 1rem;
}

/* Hata Mesajı */
.error-message {
    background: #f8f5ef;
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
}
.error-message i {
    font-size: 3rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .sidebar-menu {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
    .news-slider {
        height: 350px;
    }
    .slider-title {
        font-size: 1.4rem;
    }
    .slider-category {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .news-slider {
        height: 280px;
    }
    .slider-content {
        padding: 1.2rem;
    }
    .slider-title {
        font-size: 1.1rem;
    }
    .slider-category {
        font-size: 0.65rem;
        margin-bottom: 0.6rem;
        padding: 4px 10px;
    }
    .slider-date {
        font-size: 0.7rem;
    }
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .news-image-wrapper {
        height: 180px;
    }
    .news-title {
        font-size: 0.95rem;
    }
    .news-excerpt {
        font-size: 0.75rem;
    }
    .page-btn, .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    .menu-list a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    .sidebar-menu {
        padding: 1.2rem;
    }
    .sidebar-menu h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .slider-title {
        font-size: 0.95rem;
    }
    .slider-category {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
    .news-card {
        border-radius: 20px;
    }
    .news-content {
        padding: 1rem;
    }
}