/**
 * استایل‌های قالب Musicall
 * طراحی مینیمال مشابه اینستاگرام
 */

/* ریست عمومی */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fafafa;
    color: #262626;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

/* هدر */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #dbdbdb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding .site-title {
    font-size: 24px;
    font-weight: 700;
    color: #262626;
}

.header-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #dbdbdb;
}

.header-login-link {
    color: #0095f6;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    background: transparent;
    transition: background 0.2s;
}

.header-login-link:hover {
    background: #f0f0f0;
}

/* محتوای اصلی */
.site-main {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 0 70px;
    min-height: calc(100vh - 60px);
}

/* فوتر (نوار ناوبری پایین) */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #dbdbdb;
    z-index: 100;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    height: 60px;
    padding: 0 10px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8e8e8e;
    font-size: 12px;
    transition: color 0.2s;
    flex: 1;
}

.nav-item.active {
    color: #262626;
}

.nav-item i {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
}

.nav-item span {
    font-size: 11px;
    font-weight: 500;
}

/* محتوای برگه‌ها */
.page-content,
.single-content,
.content-area {
    padding: 16px 0;
}

/* مخفی کردن عنوان برگه در صورت نیاز */
.page .entry-header,
.single .entry-header {
    display: none;
}

/* تنظیمات واکنش‌گرا */
@media (min-width: 768px) {
    .site-main {
        padding: 16px 0 70px;
    }
}

/* استایل دکمه‌های افزونه (هماهنگ با قالب) */
.musicall-btn {
    font-family: inherit;
}
.header-new-post {
    margin-left: 15px;
    color: #262626;
    font-size: 24px;
}