/* ===== GLOBAL ===== */
body {
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
}

/* ===== RESET LINK STYLE ===== */
a {
    text-decoration: none;
    color: inherit;
}

/* ===== RESET ===== */
a {
    text-decoration: none;
}

/* ===== TOP BAR ===== */
.mc-topbar {
    background: #111;
    color: #bbb;
    font-size: 13px;
    padding: 8px 0;
}

/* ===== MAIN HEADER ===== */
.mc-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

/* FLEX ALIGN */
.mc-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO (FIXED STRONG) ===== */
.mc-logo {
    font-size: 34px;
    font-weight: 800;
    color: #111 !important;
    letter-spacing: 0.5px;
}

.mc-logo span {
    color: #f4b400;
}

/* ===== SEARCH ===== */
.mc-search input {
    width: 420px;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.mc-search input:focus {
    border-color: #f4b400;
}

/* ===== NAVBAR ===== */
.mc-nav {
    background: #1c1c1c;
    border-bottom: 2px solid #f4b400;
    margin-top: 6px;
}

/* CENTER NAV */
.mc-nav .container {
    display: flex;
    justify-content: center;
}

/* MENU */
.mc-nav ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* ITEM */
.mc-nav li {
    list-style: none;
}

/* LINK */
.mc-nav a {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* FIX BLUE LINK ISSUE */
.mc-nav a:visited {
    color: #ccc;
}

/* HOVER */
.mc-nav a:hover {
    color: #f4b400;
}

/* UNDERLINE EFFECT */
.mc-nav a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #f4b400;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.mc-nav a:hover::after {
    width: 100%;
}

/* ===== HERO FIX ===== */
.hero {
    margin-top: 0;
}
/* ===== HERO ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
                url('../images/gold.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.hero p {
    font-size: 16px;
    color: #ddd;
}

/* BUTTON */
.btn-gold {
    background: #f4b400;
    color: #000;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-gold:hover {
    background: #d39e00;
}

/* ===== BLOG SECTION ===== */
.card {
    border-radius: 6px;
    border: 1px solid #eee;
    box-shadow: none;
    transition: 0.2s;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card img {
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 12px;
}

.card h5 {
    font-size: 16px;
    font-weight: 600;
}

.card p {
    font-size: 13px;
    color: #555;
}

/* BUTTON */
.btn-dark {
    background: #111;
    color: #fff;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
}

.btn-dark:hover {
    background: #f4b400;
    color: #000;
}

/* ===== SIDEBAR ===== */
.sidebar-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 20px;
}

.sidebar-box h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* TRENDING */
.trend-card {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.trend-card img {
    width: 55px;
    height: 55px;
    object-fit: cover;
}

.trend-card a {
    font-size: 13px;
    color: #111;
    text-decoration: none;
}

.trend-card a:hover {
    color: #f4b400;
}

/* CATEGORY */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 6px;
}

.category-list a {
    font-size: 13px;
    color: #444;
    text-decoration: none;
}

.category-list a:hover {
    color: #f4b400;
}

/* ===== PAGINATION ===== */
.pagination {
    justify-content: center;
    margin-top: 20px;
}

.page-item.active .page-link {
    background: #f4b400;
    border-color: #f4b400;
    color: #000;
}

.page-link {
    color: #333;
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    color: #bbb;
    font-size: 13px;
    text-align: center;
    padding: 15px 0;
}