/* معرفی فونت‌های سایت */
@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('../fonts/[@phonoshop]Lyon Arabic Display Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
}
@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('../fonts/[@phonoshop]Lyon Arabic Display Black.ttf') format('truetype');
    font-weight: 900; /* Black */
}

/* ریست کلی */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4; /* رنگ پس‌زمینه برای فضاهای خالی */
    font-family: 'Lyon Arabic Display', sans-serif;
}

/* تنظیمات عکس‌های آیکون */
.hover-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hover-icon:hover {
    transform: scale(1.05);
}