/* Xəbərin.az - Əsas Stil Faylı */
:root {
    --primary-color: #0056b3;
    --secondary-color: #6c757d;
    --accent-color: #ffcccb;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Linklər */
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Header & Navbar */
.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 15px !important;
}

.nav-link:hover, .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

/* Son Dəqiqə Lenti */
.breaking-news-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

/* Kart Dizaynları */
.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;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .img-cover {
    transform: scale(1.05);
}

.card-img-overlay-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.badge-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Xəbər Siyahısı (Kateqoriya səhifəsi) */
.news-list-item {
    background: #fff;
    transition: background 0.3s;
}

.news-list-item:hover {
    background: #fcfcfc;
}

.news-meta {
    font-size: 13px;
    color: #999;
}

.news-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Sidebar */
.sidebar-widget {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.count-badge {
    background: #f0f2f5;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    margin-right: 15px;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #adb5bd;
    font-size: 14px;
}

.footer-social a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: rotate(360deg);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}