/* ══════════════════════════════════════════════════════════════════════
   Głos Podlasia — Custom Styles
   Portal regionalny, Bootstrap 5 overrides & custom components
   ══════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────────────────── */
:root {
    --gp-red: #c0392b;
    --gp-red-dark: #96281b;
    --gp-dark: #1a1a2e;
    --gp-gray: #f8f9fa;
    --gp-text: #2c3e50;
    --gp-border: #e9ecef;
}

/* ── Typography ─────────────────────────────────────────────────────── */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    color: var(--gp-text);
    background-color: #f5f6f8;
}

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

/* ── Top bar ────────────────────────────────────────────────────────── */
.topbar {
    font-size: 0.8rem;
}

/* ── Navbar ─────────────────────────────────────────────────────────── */
.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand {
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gp-red) !important;
}

/* ── Article Cards ──────────────────────────────────────────────────── */
.article-card {
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    border-radius: 8px;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.article-card .card-title a {
    transition: color 0.2s;
}

.article-card .card-title a:hover {
    color: var(--gp-red) !important;
}

.article-card__image {
    height: 220px;
    object-fit: cover;
}

.article-card__image--small {
    height: 140px;
    object-fit: cover;
}

.article-card__placeholder {
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.article-card__placeholder--small {
    height: 140px;
    font-size: 2rem;
}

.article-card--featured .card-title {
    font-size: 1.2rem;
}

/* ── Article Detail ─────────────────────────────────────────────────── */
.article-detail__title {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 800;
}

.article-detail__lead {
    font-size: 1.15rem;
    color: #4a5568;
    border-left: 4px solid var(--gp-red);
    padding-left: 1rem;
}

.article-detail__body {
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-detail__body p {
    margin-bottom: 1.2rem;
}

.article-detail__body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-detail__body blockquote {
    border-left: 4px solid var(--gp-red);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--gp-gray);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-detail__body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-detail__image img {
    border-radius: 8px;
}

.article-detail__meta {
    font-size: 0.9rem;
}

/* ── Badge overrides ────────────────────────────────────────────────── */
.badge.bg-danger {
    background-color: var(--gp-red) !important;
    font-weight: 500;
}

/* ── Sidebar ────────────────────────────────────────────────────────── */
.sidebar-section h5 {
    font-size: 1rem;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
footer a:hover {
    color: var(--gp-red) !important;
}

/* ── Pagination ─────────────────────────────────────────────────────── */
.page-link {
    color: var(--gp-red);
}

.page-item.active .page-link {
    background-color: var(--gp-red);
    border-color: var(--gp-red);
}

/* ── Search ─────────────────────────────────────────────────────────── */
.form-control:focus {
    border-color: var(--gp-red);
    box-shadow: 0 0 0 0.2rem rgba(192, 57, 43, 0.15);
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .article-detail__title {
        font-size: 1.5rem;
    }

    .article-card__image {
        height: 160px;
    }

    .article-card__placeholder {
        height: 160px;
    }

    .topbar {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .article-card__image--small {
        height: 120px;
    }
}

/* ── Breadcrumb ─────────────────────────────────────────────────────── */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
}

/* ── Admin quick link ───────────────────────────────────────────────── */
.btn-danger {
    background-color: var(--gp-red);
    border-color: var(--gp-red);
}

.btn-danger:hover {
    background-color: var(--gp-red-dark);
    border-color: var(--gp-red-dark);
}

.btn-outline-danger {
    color: var(--gp-red);
    border-color: var(--gp-red);
}

.btn-outline-danger:hover {
    background-color: var(--gp-red);
    border-color: var(--gp-red);
}

/* ── Empty state ────────────────────────────────────────────────────── */
.display-1.text-muted,
.display-4.text-muted {
    opacity: 0.3;
}
