/*
Theme Name: Narrative Bootstrap
Theme URI: https://narrativeguest.com
Author: Narrative Guest Team
Description: A Bootstrap 5 based theme optimized for Core Web Vitals and Google Discover.
Version: 2.0
Text Domain: narrative-bootstrap
*/

/* Narrative Guest Brand Colors */
:root {
    --bs-primary: #00cc99; /* Your Teal Brand Color */
    --bs-primary-rgb: 0, 204, 153;
    --bs-dark: #111111;
    --bs-body-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Global Tweaks */
body {
    background-color: #ffffff;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

a:hover {
    color: var(--bs-primary);
}

/* Header */
.site-header {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
.navbar-nav .nav-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #333;
}
.navbar-nav .nav-link:hover {
    color: var(--bs-primary);
}

/* Buttons */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
    font-weight: 700;
}
.btn-primary:hover {
    background-color: #00b386;
    border-color: #00b386;
}

/* Category Labels */
.cat-label {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

/* Images */
.post-thumb {
    border-radius: 6px;
    object-fit: cover;
    width: 100%;
}
.hero-img { height: 400px; }
.list-img { height: 220px; }

/* Trending Section (The Green Box) */
.trending-section {
    background: linear-gradient(180deg, #5cb88f 0%, #4a9e7a 100%);
    color: white;
    padding: 60px 0;
    margin: 50px 0;
}
.trending-card h3 {
    font-size: 1.1rem;
    margin-top: 10px;
    color: white;
}
.trending-title {
    border-bottom: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* Typography */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.5px; }
.post-meta { font-size: 0.85rem; color: #888; margin-top: 5px; }

/* Footer */
.site-footer {
    background: #111;
    color: #aaa;
    padding: 60px 0;
    margin-top: 80px;
}
.site-footer h5 { color: #fff; margin-bottom: 20px; }
.site-footer a:hover { color: #fff; }