/* --- 1. SİTENİN ANA RENKLERİ VE YAZI TİPLERİ --- */
:root {
    --bs-primary: #d35400;
    --bs-dark: #2c3e50;
    --bs-secondary: #95a5a6;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f6f9;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-weight: 700;
}

/* --- BOOTSTRAP'İ EZMEK İÇİN KESİN KURALLAR (!important ile) --- */

/* Navbar ve Footer Arka Planı */
.navbar.bg-dark,
footer.bg-dark {
    background-color: var(--bs-dark) !important;
}

/* Buton Renkleri */
.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Sayfalama Aktif Rengi */
.pagination .page-item.active .page-link {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

/* --- 2. YENİ TASARIM STİLLERİ --- */

.site-wrapper {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    background-color: #ffffff;
    /* Ana içerik alanı için beyaz arka plan */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.side-banner {
    position: fixed;
    top: 100px;
    width: 160px;
    z-index: 10;
}

.side-banner-left {
    left: 20px;
}

.side-banner-right {
    right: 20px;
}

@media (max-width: 1540px) {
    .side-banner {
        display: none;
    }
}

.hero-slider .carousel-item {
    height: 450px;
}

.hero-slider .carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem 1rem;
}

.hero-slider .carousel-caption h5 {
    font-size: 2rem;
    font-weight: 700;
}

.post-grid .card {
    transition: all 0.2s ease-in-out;
}

.post-grid .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

article h1 {
    border-left: 5px solid var(--bs-primary);
    padding-left: 15px;
}