/* ----------------------------------------------------------------	Custom CSS	Add all your Custom Styled CSS here for New Styles or	Overwriting Default Theme Styles for Better Handling Updates-----------------------------------------------------------------*/@font-face {  font-family: 'Yekan';  src:  url('fonts/Yekan.woff2') format('woff2'),        url('fonts/Yekan.woff') format('woff'),		url('fonts/Yekan.ttf') format('truetype');}html {  font-family: 'Yekan', byekan, yekan;  -ms-text-size-adjust: 100%;  -webkit-text-size-adjust: 100%;}.image-container {    display: flex;    justify-content: center;    align-items: center;    flex-wrap: wrap;    margin-top: 20px;}.image-item {    position: relative;    margin: 10px;    text-align: center;    cursor: pointer;}.image-item img {    width: 100px; /* تغییر اندازه به ماکسیمم */    height: auto;    transition: opacity 0.3s ease;}.image-item:hover img {    opacity: 0; /* محو شدن تصویر هنگام هاور */}.image-item h3 {    position: absolute;    top: 50%;    left: 50%;    transform: translate(-50%, -50%);    color: #fff; /* رنگ متن */    font-size: 20px;    transition: opacity 0.3s ease;    opacity: 0; /* محو بودن متن روی تصویر */    text-shadow: 2px 2px 0px black, -2px -2px 0px black,                  2px -2px 0px black, -2px 2px 0px black; /* استروک مشکی */}.image-item:hover h3 {    opacity: 1; /* نمایان شدن عنوان هنگام هاور */}