:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #ec4899;
    --dark: #0f172a;
    --gray-100: #f1f5f9;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
p{
    color: #000000 !important;
}

/*.navbar-brand .brand-icon {*/
/*    font-size: 1.5rem;*/
/*    color: var(--primary);*/
/*}*/

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-serif);
    line-height: 1.15;
}

.hero-visual {
    height: 320px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.9;
}

.min-vh-50 { min-height: 50vh; }

/* Sections */
.section-label {
    display: block;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 700;
}

.page-heading {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* Post cards */
.post-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: var(--radius) !important;
    overflow: hidden;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow) !important;
}

.post-card-img {
    height: 200px;
    object-fit: cover;
}

.category-badge {
    background: rgba(99, 102, 241, 0.12) !important;
    color: #fff !important;
    font-weight: 600;
}

.category-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: var(--radius) !important;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow) !important;
}

/* Sidebar */
.widget-title {
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.recent-post-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.recent-post-item:last-child { border-bottom: none; }

.recent-post-link {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.recent-post-link:hover strong { color: var(--primary); }

.recent-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Single post */
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content h2, .post-content h3 {
    font-family: var(--font-serif);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.featured-image { max-height: 480px; object-fit: cover; }

/* Footer */
/*.site-footer {*/
/*    background: var(--dark);*/
/*    margin-top: auto;*/
/*}*/

/*.footer-links a {*/
/*    color: rgba(255,255,255,0.7);*/
/*    text-decoration: none;*/
/*    display: block;*/
/*    padding: 0.25rem 0;*/
/*}*/

/*.footer-links a:hover { color: #fff; }*/

/* Breadcrumb */
.breadcrumb { font-size: 0.9rem; }

/* Search nav */
.search-form-nav .form-control { width: 140px; }

@media (max-width: 991px) {
    .search-form-nav { margin-top: 0.5rem; }
    .search-form-nav .form-control { width: 100%; }
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Error page */
.error-page { max-width: 500px; margin: 0 auto; }

.badge {
    background: #000000cf !important;
    border-radius: 5px !important;
}
.post-card .card-body .badge{
    color: #fff !important;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    margin-right: 10px;
}

.rounded-4{
    border-radius: 10px !important;
}




