/*
Theme Name: Blanton Theme
Theme URI: https://blanton.store
Author: Your Name
Author URI: https://blanton.store
Description: پوسته اختصاصی بلانتون با سیستم هدر پیشرفته و قابل کاستومایز
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blanton-theme
Tags: rtl-language-support, custom-header, custom-menu, e-commerce, flexible-header

این پوسته برای وب‌سایت بلانتون طراحی شده است
*/

/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #00AA84;
    --secondary-color: #035D49;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --black: #000000;
    
    /* Typography */
    --font-primary: 'Vazir', 'Tahoma', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    
    /* Container */
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--white);
    direction: rtl;
    text-align: right;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-sm);
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.site-main {
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }

/* ==========================================================================
   WordPress Core
   ========================================================================== */

.alignleft {
    float: right;
    margin: 0 0 var(--spacing-sm) var(--spacing-sm);
}

.alignright {
    float: left;
    margin: 0 var(--spacing-sm) var(--spacing-sm) 0;
}

.aligncenter {
    display: block;
    margin: 0 auto var(--spacing-sm);
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-xs);
}

.sticky {
    /* Styles for sticky posts */
}

.gallery-caption {
    /* Gallery caption styles */
}

.bypostauthor {
    /* Styles for comments by post author */
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    :root {
        --font-size-base: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .site-main {
        padding: var(--spacing-md) 0;
    }
}