﻿/* ThemeRed.css – Warm Red & Cream Restaurant Menu (2025) */

@font-face {
    font-family: 'Shangool';
    src: url('https://meniew.storage.c2.liara.space/Fonts/Digi%20Nozha2%20Bold.ttf') format('truetype');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    direction: rtl;
    font-family: 'Shangool', sans-serif;
    background: #fdf9f0;
    background-image: radial-gradient(circle at 20% 80%, rgba(173,45,36,0.03) 0%, transparent 50%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><path d="M150,0 Q200,100 150,200 Q100,100 150,0" fill="none" stroke="%23ad2d2418" stroke-width="1"/></svg>');
    background-repeat: repeat;
    color: #333;
    /* line-height: 1.7; */
}

.menu-container {
    max-width: 1100px;
    margin: auto;
    background: #fdf9f0;
    /* border-radius: 24px; */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(173,45,36,0.15);
    border: 8px solid #ad2d24;
    position: relative;
}

    /* Top Red Bar */
    .menu-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 16px;
        background: #ad2d24;
    }

/* Header */
.menu-header {
    background: linear-gradient(to bottom, #fdf9f0 0%, #f5e8d8 100%);
    padding: 50px 40px 40px;
    text-align: center;
    border-bottom: 4px solid #ad2d24;
}

.shop-name {
    /* font-family: 'Cairo', sans-serif; */
    font-family: 'Shangool', sans-serif;
    font-size: 4.2rem;
    font-weight: 900;
    color: #ad2d24;
    margin: 0 0 12px;
    letter-spacing: 2px;
}

.shop-description {
    font-size: 1.5rem;
    color: #7d2a1f;
    margin: 12px 0;
    font-weight: 600;
}

.shop-address {
    font-size: 1.1rem;
    color: #555;
}

/* Category Navigation Pills */
.category-nav {
    padding: 20px;
    background: #fdf9f0;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    border-bottom: 3px solid #ad2d24;
}

.category-nav-btn {
    background: #ad2d24;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(173,45,36,0.3);
    transition: all 0.3s ease;
    font-family: 'Shangool', sans-serif;
    font-size: 18;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

    .category-nav-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(173,45,36,0.4);
    }

/* Collapsible Category Header */
.category-header {
    background: #ad2d24;
    color: white;
    padding: 18px 30px;
    margin: 30px 30px 0;
    border-radius: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 800;
    /* text-align: right; */
    /* align-items: revert; */
    box-shadow: 0 8px 20px rgba(173,45,36,0.3);
    display: flex;
}

.category-header-open {
    background: #ad2d24;
    color: white;
    padding: 18px 30px;
    margin: 30px 30px 0;
    border-radius: 50px 50px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(173,45,36,0.3);
}

.toggle-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    margin-right: auto;
}

.category-header[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* Category Body */
.category-body {
    display: none;
    background: #fffdf8;
    padding: 40px 40px 20px;
    margin: 0 30px 40px;
    border-radius: 0 0 30px 30px;
    border: 3px solid #ad2d24;
    border-top: none;
    box-shadow: 0 10px 30px rgba(173,45,36,0.12);
}

    .category-body.open {
        display: block;
    }

/* Items Grid */
.category-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* Menu Item Card */
.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #ad2d24;
    transition: transform 0.3s ease;
    margin-bottom: 20;
}

    .menu-item:hover {
        transform: translateY(-8px);
    }

/* Image – Big Circle on the Right */
.item-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #fdf9f0;
    box-shadow: 0 10px 30px rgba(173,45,36,0.25);
    float: right;
    margin: 20px;
    shape-outside: circle();
}

/* Info */
.item-info {
    padding: 24px 28px;
    text-align: right;
    overflow: hidden;
}

.item-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #7d2a1f;
    margin: 0 0 12px;
}

.item-desc {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Price Pills – كبير / صغير */
.item-price {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

    .item-price > span {
        background: #ad2d24;
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 1.1rem;
        min-width: 100px;
        text-align: center;
        box-shadow: 0 6px 15px rgba(173,45,36,0.3);
    }

        .item-price > span:first-child::before {
            content: "كبير ";
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .item-price > span:last-child::before {
            content: "صغير ";
            font-size: 0.9rem;
            opacity: 0.9;
        }

/* Footer – Full Width, Warm & Elegant */
.menu-footer {
    background: linear-gradient(to bottom, #ad2d24, #8f231b);
    color: white;
    padding: 50px 40px 40px;
    margin-top: 50px;
}

    .menu-footer .footer-title {
        font-size: 1.6rem;
        font-weight: 900;
        color: #fff;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 3px solid rgba(255,255,255,0.3);
        display: inline-block;
        margin-top: 30px;
    }

.footer-description-text,
.footer-address-text,
.footer-contact-name,
.footer-contact-value {
    color: #ffefe0;
}

.footer-contact-list {
    gap: 14px;
}

.footer-contact-item {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.footer-social-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px 0 0;
}

.footer-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-social-item:hover {
        background: rgba(255,255,255,0.3);
        transform: translateY(-4px);
    }

.social-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.footer-powered {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(255,255,255,0.3);
    font-size: 1rem;
    color: #ffccaa;
}

    .footer-powered strong {
        color: white;
    }

/* Phone at bottom */
.menu-footer::after {
    /* content: "اتصل بنا: 0590447681"; */
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 900;
    margin-top: 30px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.category-icon {
    width: 44px;
    /* height: 20px; */
    margin-left: 6px;
    display: inline-block;
    /* color: #201d1c; */
    /* filter: invert(1); */
}

.category-icon-nav {
    width: 44px;
    /* height: 20px; */
    margin-left: 6px;
    display: inline-block;
    /* color: #201d1c; */
    /* filter: invert(1); */
    margin: auto;
    margin-bottom: 10px;
    /* filter: invert(1); */
}
