/* === تم کافه بلو مون === */

/* تنظیمات کلی صفحه */
body {
    font-family: 'IRANSans', sans-serif;
    /* پس‌زمینه سرمه‌ای تیره، مانند آسمان شب */
    background-color: #092844; 
    /* رنگ متن اصلی، سفید مایل به آبی برای خوانایی بهتر */
    color: #ccd6f6;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

/* استایل لوگوی ماه */
.moon-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
}
.moon-logo img {
    width: 100%;    height: 100%;
    object-fit: contain;
}

header h1 {    font-size: 2.5em;
    /* رنگ سفید روشن با سایه‌ای آبی‌رنگ برای ایجاد حس درخشش */
    color: #e6f1ff;
    text-shadow: 0 0 10px rgba(173, 216, 230, 0.7);
}

/* هر بخش کتگوری (مثلاً صبحانه، ناهار) */
.category-section {
    /* یک سرمه‌ای کمی روشن‌تر از پس‌زمینه برای ایجاد عمق */
    background-color: #112240; 
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid #2a4162;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);    padding: 20px;
}

/* عنوان هر کتگوری */
.category-title {
    font-size: 1.8em;
    color: #e6f1ff;
    /* خط جداکننده با رنگ آبی روشن */
    border-bottom: 2px solid #5d93e1;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* کانتینر آیتم‌ها که به صورت افقی چیده می‌شوند */
.items-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 15px;
}

/* استایل هر کارت آیتم در منو */
.menu-item {
    background-color: #0b192e; /* همرنگ پس‌زمینه اصلی */
    border: 1px solid #2a4162;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-left: 15px;
    flex-shrink: 0;
    flex-basis: 250px;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(93, 147, 225, 0.5);
}

.menu-item:last-child {
    margin-left: 0;
}/* عکس آیتم */
.item-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid #2a4162;
}

/* عنوان آیتم */
.item-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #e6f1ff; /* رنگ سفید روشن */
    margin: 10px 0;
    min-height: 44px;
}

/* توضیحات آیتم */
.item-description {
    font-size: 0.9em;
    color: #8892b0; /* رنگ آبی-خاکستری برای متن فرعی */
    flex-grow: 1;
    margin-bottom: 15px;
}

/* قیمت آیتم */
.item-price {
    font-size: 1.1em;
    font-weight: bold;
    /* رنگ طلایی ملایم، مانند نور ماه */
    color: #ffcb74; 
}

/* فوتر */
footer {
    text-align: center;    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2a4162;
    color: #8892b0;
    font-size: 0.9em;
}
footer p {
    margin: 5px 0;
}


/* استایل سفارشی برای اسکرول‌بار در مرورگرهای Webkit (کروم، سافاری) */
.items-container::-webkit-scrollbar {
    height: 8px;
}
.items-container::-webkit-scrollbar-track {
    background: #0b192e;
    border-radius: 10px;
}
.items-container::-webkit-scrollbar-thumb {
    background-color: #5d93e1;
    border-radius: 10px;    border: 2px solid #0b192e;
}
a {
    color: inherit; /* Use the inherited color from the parent element */
    text-decoration: none; /* Remove underline */
}