/*
Theme Name: TarazTax
Theme URI: https://taraztax.com
Author: ViraPeak Team
Author URI: https://virapeak.ir
Description: A custom Tailwind CSS theme for TarazTax.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taraztax
*/

/* Peyda Variable Font - Font Face Declaration */
@font-face {
    font-family: 'PeydaWebVF';
    src: url('assets/fonts/PeydaWebVF.woff2') format('woff2-variations'),
        url('assets/fonts/PeydaWebVF.woff') format('woff-variations');
    font-weight: 100 950;
    font-style: normal;
    font-display: swap;
}

/* استایل‌های پایه - اعمال فونت به کل بادی */
body {
    font-family: 'PeydaWebVF', sans-serif;
    scroll-behavior: smooth;

    /* فعال‌سازی حروف جایگزین (Stylistic Sets)
       طبق راهنمای فونت، کد مورد نظر را در اینجا قرار دهید.
       مثال: "ss01" برای یک مدل، "ss02" برای مدل دیگر.
       می‌توانید چند مدل را با ویرگول جدا کنید: "ss01", "ss02"
    */
    -webkit-font-feature-settings: "swsh";
    font-feature-settings: "swsh";
}
/* افکت گرادینت برای هدر */
.hero-bg {
    background: linear-gradient(135deg, #074530 0%, #0a5c41 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23A0ECC5" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* انیمیشن برای کارت‌ها */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(7, 69, 48, 0.15);
    border-bottom: 4px solid #A0ECC5;
}