/* عام */
* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background: linear-gradient(120deg, #fff9e6, #ffffff); /* خلفية متدرجة */
}

/* Container */
.menu-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Header */
.menu-header {
    text-align: center;
    margin-bottom: 20px;
}

.menu-header h1 {
    margin: 0;
}

.red-fancy {
    color: #c0392b; /* أحمر */
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 36px;
}

.yellow-small {
    color: #f1c40f; /* أصفر */
    font-size: 20px;
    margin-left: 8px;
}

/* Sections */
.menu-section {
    margin-bottom: 30px;
}

.menu-section h3 {
    background: #c0392b;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-size: 18px;
}

/* Menu Row / Cards */
.menu-row {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    margin-top: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.menu-row.show {
    opacity: 1;
    transform: translateY(0);
}

/* Image */
.menu-image {
    width: 45%;
}

.menu-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.menu-image img:hover {
    transform: scale(1.05);
}

/* Text */
.menu-text {
    width: 55%;
}

.menu-text h4 {
    margin: 4px 0;
}

.price {
    color: #c0392b;
    font-weight: bold;
}

.note {
    font-size: 12px;
    color: #777;
}

.warning {
    font-size: 12px;
    color: yellow;
    font-weight: bold;
}

/* Like button */
.like-box {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.like-btn {
    background: #eee;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.like-btn:hover {
    background: #c0392b;
    color: #fff;
    transform: scale(1.1);
}

.like-count {
    font-size: 13px;
    color: #555;
}

/* Desktop */
@media (min-width: 768px) {
    .menu-image img {
        height: 180px;
    }
}

@media (min-width: 900px) {
    .menu-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .menu-section h3 {
        grid-column: span 2;
    }
}

/* Footer Contact ثابت أسفل الصفحة */
/* Contact Section - نفس مسافة ووزن الأصناف */
.contact-footer {
    margin: 30px 0;            /* نفس مسافة الأقسام */
    background: #c0392b;       /* نفس اللون الأحمر */
    color: #fff;
    padding: 12px;             /* نفس Padding العناوين */
    border-radius: 10px;       /* نفس الزوايا */
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.contact-footer a {
    color: #fff;
    text-decoration: underline;
}
