/*
Theme Name: Amir Hossein Fallah - Blog
Theme URI: https://Blog.amirhosseinfallah.ir
Author: Amir Hossein Fallah
Author URI: https://amirhosseinfallah.ir
Description: پوسته اختصاصی و فوق‌سریع وبلاگ امیرحسین فلاح - نسخه ۲.۳ با طراحی مدرن Sleek Interface، بدون هیچ وابستگی یا CDN خارجی، فونت محلی کلمه، سئو تکنیکال، پشتیبانی از آموزش‌های سریالی، پین‌کردن و سیستم اختصاصی افزایش بازدید و شورت‌لینک.
Version: 2.3.0
Requires at least: 6.0
Tested up to: 6.7
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: ahf-blog
Tags: blog, custom-background, custom-colors, custom-menu, featured-images, rtl-language-support, dark-mode
*/

/* Base CSS Variables & Complete Theme Reset */
:root {
  --bg-main: #0A0A0B;
  --bg-card: #0D0D0E;
  --bg-card-hover: #141416;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(234, 88, 12, 0.4);
  --brand-orange: #EA580C;
  --brand-orange-light: #F97316;
  --brand-amber: #F59E0B;
  --font-sans: "KalamehWeb", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

html {
  box-sizing: border-box;
  font-family: var(--font-sans);
  background-color: #0A0A0B;
  color: #F1F5F9;
  direction: rtl;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.7;
  background-color: #0A0A0B;
  color: #F1F5F9;
  font-family: var(--font-sans);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
  color: #FB923C;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0a0a0b;
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ea580c;
}
