/*
Theme Name: kimia
Theme URI: https://kimiahadaf.com
Author: مهدی اشراقی نژاد
Author URI: https://kimiahadaf.com
Description: قالب برای شرکت کیمیا رنگ هدف
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
Text Domain: Kimiahadaf
*/



/* تنظیمات عمومی و ریست اولیه CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    /* استفاده از فونت فارسی */
    line-height: 1.6;
    color: #333;
    direction: rtl;
    /* برای پشتیبانی از زبان فارسی (راست به چپ) */
    text-align: right;
    /* تراز کردن متن به راست */
    background-color: #f8f8f8;
    /* رنگ پس‌زمینه کلی سایت */
}

/* کلاس کمکی برای حداکثر عرض و وسط قرار گرفتن محتوا */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* استایل‌دهی برای بخش‌های مشترک */
.section-common {
    padding: 40px 0;
    /* فاصله بالا و پایین هر بخش */
}



/* استایل‌دهی عنوان‌های بخش‌ها (تراز به راست) */
.section-title-left {
    font-size: 2.5em;
    text-align: right;
    /* تراز به راست */
    margin-bottom: 30px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.section-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    /* خط زیر عنوان از سمت راست شروع شود */
    width: 60px;
    height: 4px;
    background-color: #033f61;
    /* رنگ خط زیر عنوان */
}












