:root {
    --gold: #C5A059;
    --dark: #1a1a1a;
    --grey: #777;
    --light: #f9f9f9;
}

body { margin:0; font-family: 'Inter', sans-serif; background: #fff; color: var(--dark); line-height: 1.6; }

/* Header */
.header { padding: 30px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; position: sticky; top:0; background: #fff; z-index: 100; }
.logo { font-family: 'Playfair Display'; font-size: 28px; font-weight: 700; letter-spacing: -1px; }
.logo span { color: var(--gold); }
.header a { text-decoration: none; color: var(--dark); margin-left: 30px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.nav-btn { background: var(--dark); color: #fff !important; padding: 10px 20px; border-radius: 4px; transition: 0.3s; }
.nav-btn:hover { background: var(--gold); }

/* Hero Section */
.blog-hero { text-align: center; padding: 80px 5%; background: var(--light); border-bottom: 1px solid #eee; }
.blog-hero h1 { font-family: 'Playfair Display'; font-size: 48px; margin: 0; }
.blog-hero p { color: var(--grey); font-size: 18px; font-weight: 300; }

/* Layout */
.container { display: grid; grid-template-columns: 280px 1fr; gap: 60px; max-width: 1300px; margin: 60px auto; padding: 0 5%; }
.sidebar h3 { font-family: 'Playfair Display'; font-size: 22px; border-bottom: 2px solid var(--gold); display: inline-block; margin-bottom: 20px; }
.sidebar ul { list-style: none; padding: 0; }
.sidebar li { padding: 12px 0; cursor: pointer; color: var(--grey); transition: 0.3s; border-bottom: 1px solid #f0f0f0; }
.sidebar li:hover, .sidebar .active { color: var(--dark); font-weight: 600; padding-left: 10px; }
.search-box input { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; margin-bottom: 40px; }

/* Grid & Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 40px; }
.card { background: #fff; border-radius: 0px; transition: transform 0.4s ease; cursor: pointer; }
.card:hover { transform: translateY(-10px); }
.card-img { position: relative; overflow: hidden; height: 250px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card:hover img { scale: 1.1; }
.badge { position: absolute; top: 15px; left: 15px; background: rgba(255,255,255,0.9); padding: 5px 15px; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.card-body { padding: 25px 0; }
.card-body .date { font-size: 12px; color: var(--gold); text-transform: uppercase; }
.card-body h2 { font-family: 'Playfair Display'; font-size: 24px; margin: 10px 0; line-height: 1.3; }
.read-more { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 14px; margin-top: 15px; display: inline-block; border-bottom: 1px solid var(--gold); }

/* Single Post */
.single-post { max-width: 900px; margin: 60px auto; padding: 0 5%; }
.post-header { text-align: center; margin-bottom: 40px; }
.post-cat { color: var(--gold); text-transform: uppercase; font-size: 14px; letter-spacing: 2px; }
.post-header h1 { font-family: 'Playfair Display'; font-size: 52px; margin: 15px 0; }
.post-hero { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; margin-bottom: 50px; }
.entry-content { font-size: 19px; line-height: 1.8; color: #333; }
.entry-content h2 { font-family: 'Playfair Display'; font-size: 32px; margin-top: 40px; }

/* CTA Box */
.share-box { background: var(--light); padding: 40px; text-align: center; margin-top: 60px; border-left: 5px solid var(--gold); }
.cta-group { display: flex; justify-content: center; gap: 20px; margin-top: 25px; }
.cta-wa { background: #25D366; color: white; padding: 15px 25px; text-decoration: none; border-radius: 5px; font-weight: 600; }
.cta-call { background: var(--dark); color: white; padding: 15px 25px; text-decoration: none; border-radius: 5px; font-weight: 600; }

/* Typography styling for post content */
.prose h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-top: 2rem; color: #2D2D2D; }
.prose p { margin-bottom: 1.5rem; font-size: 1.125rem; color: #4A4A4A; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }

/* Category Hover Effect */
#catFilter li.active { color: #D4AF37; font-weight: 700; }

@media (max-width: 768px) {
    .container { grid-template-columns: 1fr; }
    .post-header h1 { font-size: 32px; }
}