@import url(font1.css); /* لینک فایلی که وظیفه بارگذاری فونت ها را برعهده دارد */

/* Main Styles - Shared Across All Themes */
body {
    font-family: 'IRANSansX', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    transition: all 0.3s;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

/* Utility Classes */
.rounded-lg {
    border-radius: 0.75rem;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.object-fit-cover {
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1rem;
    }
}