/*
Theme Name: BhaktiPress
Theme URI: https://example.com
Author: OpenAI
Description: Lightweight Marathi & Hindi devotional WordPress theme.
Version: 1.0
Text Domain: bhaktipress
*/

body {
    margin: 0;
    font-family: 'Mukta', sans-serif;
    background: #fff8ef;
    color: #222;
}

a {
    color: #b71c1c;
    text-decoration: none;
}

.site-header {
    background: linear-gradient(90deg,#ff7b00,#ffb300);
    padding: 16px;
    color: white;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

.logo {
    font-size: 32px;
    font-weight: bold;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.content-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.post-title {
    font-size: 30px;
    margin-bottom: 10px;
}

.footer {
    background: #222;
    color: white;
    padding: 30px 0;
    margin-top: 40px;
}

.sidebar-widget {
    background: white;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 20px;
}

@media(max-width:768px){
    .content-area{
        grid-template-columns:1fr;
    }

    .main-nav ul{
        flex-wrap:wrap;
    }

    .post-title{
        font-size:24px;
    }
}