:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #f1faee;
    --gold: #d4af37;
}

body {
    font-family: 'Noto Sans Arabic', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    color: #333;
}

/* Header & Hero Section */
header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(https://scontent.fisu10-2.fna.fbcdn.net/v/t39.30808-6/506619541_4015366132111485_4815346050094112586_n.jpg?stp=cp6_dst-jpg_tt6&_nc_cat=106&ccb=1-7&_nc_sid=b895b5&_nc_eui2=AeHrfEsuYaCeAGvz-GgZPYEcW19yCImaBrRbX3IIiZoGtGiGLSRhACCVk6b5DTO96vVJKXtwS7MohOybd9scCNgD&_nc_ohc=Iz0nEORSZtsQ7kNvwH6XutW&_nc_oc=Ado3rfAtvuX6L3ctlfdhmIaHnYLscuvGwB75qxW47ZsQIO0F2qWlEV6OvCTiReDZXJg&_nc_zt=23&_nc_ht=scontent.fisu10-2.fna&_nc_gid=YvvBq_BH6JQ2NSc6lkG7eA&_nc_ss=7a3a8&oh=00_Af34ZIe9Jx0xAtcriIUtxljCI2IPv6wl3IeXNx-1BniDRg&oe=69EE392C);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 5px solid var(--gold);
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    background-color: white;
    margin-bottom: 20px;
    object-fit: cover;
}

h1 { margin: 10px 0; font-size: 2.5rem; color: var(--gold); }

/* Quick Action Buttons */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-call { background-color: #28a745; color: white; }
.btn-map { background-color: #007bff; color: white; }
.btn:hover { transform: scale(1.05); opacity: 0.9; }

/* Menu Section */
.container { max-width: 800px; margin: 40px auto; padding: 20px; }

.menu-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.menu-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto;
}

.menu-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background-color: #fff9f9; }

.item-name { font-size: 1.2rem; font-weight: bold; }
.item-price { 
    color: var(--primary-color); 
    font-weight: 700; 
    font-size: 1.1rem;
    background: #ffe3e3;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}

.copyright { font-size: 0.9rem; opacity: 0.8; margin-top: 10px; }

@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    .btn { width: 100%; justify-content: center; }
}