/* ===== Reset ===== */
* {
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background: #121212;
    color: #fff;
    overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #141414 0%, #121212 100%);
}

.logo {
    width: 140px;
    margin-bottom: 20px;
}

/* ===== Sections ===== */
.menu, .instagram {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* ===== Tabs ===== */
.tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tab {
    background: #1f1f1f;
    color: #ccc;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.tab.active {
    background: #f4c16d;
    color: #111;
    font-weight: 700;
}

/* ===== Grid & Cards ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    min-height: 200px;
}

.loading-status {
    grid-column: 1 / -1;
    text-align: center;
    color: #f4c16d;
    padding: 40px;
}

.item {
    background: #181818;
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.4s ease;
}

.item:hover {
    transform: translateY(-6px);
}

.item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
    background: #222; /* مكان الصورة حتى تتحمل */
}

.item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
}

.en-name {
    font-size: 13px;
    color: #9c9c9c;
    font-style: italic;
    margin-bottom: 6px;
    display: block;
}

.desc {
    font-size: 13px;
    color: #cfcfcf;
    margin: 6px 0 10px;
    line-height: 1.5;
}

.item span {
    font-size: 15px;
    font-weight: 700;
    color: #f4c16d;
}