:root {
    --primary-color: <?php echo $site_settings['primary_color']; ?>;
    --secondary-color: <?php echo $site_settings['secondary_color']; ?>;
    --accent-color: <?php echo $site_settings['accent_color']; ?>;
    --bg-color: <?php echo $site_settings['bg_color']; ?>;
    --text-color: <?php echo $site_settings['text_color']; ?>;
    --font-heading: 'Hind Siliguri', sans-serif;
    --font-body: 'SolaimanLipi', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, .bn-heading {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Paper Texture Effect on Background */
body {
    background-image: url('../images/paper-texture.png'); /* একটি হালকা পেপার টেক্সচার ছবি ব্যবহার করতে পারেন */
    background-attachment: fixed;
    background-color: var(--bg-color);
}

/* Subtle border for artistic look */
.post-card, .category-card {
    border: 1px solid rgba(24, 61, 50, 0.1);
    background: #FFFDF8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

/* Scroll Header Effect */
.main-header.scrolled {
    background: rgba(248, 245, 237, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Mobile Nav Styling */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }
    .nav-links.active { right: 0; }
}
@font-face {
    font-family: 'Hind Siliguri';
    src: url('../fonts/HindSiliguri-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SolaimanLipi';
    src: url('../fonts/SolaimanLipi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --font-heading: 'Hind Siliguri', sans-serif;
    --font-body: 'SolaimanLipi', sans-serif;
}