@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('fonts/Vazirmatn-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Vazirmatn, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


               body {
            background-color: #f4f7f6;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            line-height: 1.6;
        }

        /* --- هدر و منو --- */
        header {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
        }

        .logo {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        /* --- بخش محتوای اصلی (باکس وسط صفحه) --- */
        main {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .content-box {
            background-color: #ffffff;
            max-width: 700px;
            width: 100%;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2f5;
        }

        h1 {
            font-size: 1.6rem;
            color: #2c3e50;
            margin-bottom: 20px;
            border-right: 4px solid #3498db;
            padding-right: 12px;
        }
        h2 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 20px;
            border-right: 4px solid #3498db;
            padding-right: 12px;
        }

        /* استایل پاراگراف‌های داخل باکس */
        .content-box p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
            text-align: justify;
        }

        /* --- استایل شیک و مدرن لیست تکی --- */
        .modern-list {
            list-style: none;
        }

        .modern-list .list-item {
            position: relative;
            margin-bottom: 12px;
            padding: 14px 18px;
            background-color: #fcfdfe;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            transition: all 0.25s ease;
        }

        /* افکت هاور روی کل آیتم لیست */
        .modern-list .list-item:hover {
            border-color: #3498db;
            transform: translateX(-5px); /* حرکت جزیی به سمت چپ در جهت راست‌چین */
            background-color: #f7faff;
        }

        /* استایل لینک‌ها */
        .list-link {
            text-decoration: none;
            color: #34495e;
            font-weight: 500;
            font-size: 1rem;
            display: block; /* کل فضای آیتم را کلیک‌خور می‌کند */
            transition: color 0.2s ease;
        }

        .modern-list .list-item:hover .list-link {
            color: #3498db;
        }

        /* --- فوتر --- */
        footer {
            background-color: #2c3e50;
            color: #ffffff;
            text-align: center;
            padding: 15px 20px;
            font-size: 0.85rem;
        }
/* --- استایل شیک و مدرن Breadcrumb --- */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #7f8c8d;
}

/* استایل لینک‌های مسیر */
.breadcrumb-link {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* ایجاد علامت جداکننده ( < ) بین آیتم‌ها به صورت هوشمند با CSS */
.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    content: "\203A"; /* علامت زاویه‌دار ظریف چپ‌چین/راست‌چین */
    padding: 0 10px;
    color: #bdc3c7;
    font-size: 1.1rem;
    user-select: none;
}

/* استایل آیتم آخر (صفحه‌ای که کاربر در آن حضور دارد) */
.breadcrumb-item.active {
    color: #7f8c8d;
    font-weight: 600;
    pointer-events: none; /* غیرقابل کلیک کردن صفحه فعلی */
}

a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: #d91835;
    text-decoration: underline;
}
a:active {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s ease;
}


        /* --- رسپانسیو --- */
        @media (max-width: 600px) {
            .navbar {
                flex-direction: column;
                gap: 15px;
            }
            main {
                padding: 20px 15px;
            }
            .content-box {
                padding: 20px;
            }
            h1 {
                font-size: 1.3rem;
            }
            h2 {
                font-size: 1.1rem;
            }
        }
