/* ===== Global ===== */
body {
    margin: 0;
    font-family: 'Tajawal', 'Roboto', sans-serif;
    background: #fdfdfd;
    color: #2d0f0f;
    line-height: 1.6;
}

/* ===== Hero Banner ===== */
.hero {
    background: url('header.webp') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 20px;
}

.hero .logo {
    width: 140px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 36px;
    margin: 10px 0;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #8b1e2a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background: #f4c4c8;
    color: #8b1e2a;
}

/* ===== Navigation ===== */
.menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    margin: 20px auto;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

.menu-nav button {
    background: linear-gradient(135deg, #f4c4c8, #f9b5c1);
    color: #8b1e2a;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.menu-nav button:hover {
    background: linear-gradient(135deg, #8b1e2a, #c45b66);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.menu-nav button.active {
    background: #8b1e2a;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.no-categories {
    font-size: 14px;
    font-weight: bold;
    color: #d9534f;
}

/* ===== Sections & Grid ===== */
main {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.menu-section { display: none; }
.menu-section.active { display: block; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.item-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.item-name { font-size: 18px; font-weight: bold; }
.item-desc { font-size: 14px; color: #555; }
.item-price {
    position: relative;
    background: linear-gradient(255deg, #e39298, #8b1e2a);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    width: 40px; 
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.item-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    background: rgba(139, 30, 42, 1);
}

/* ===== Map & Address ===== */
.map-address {
    text-align: center;
    font-weight: bold;
    margin: 20px auto 10px;
    font-size: 14px;
    color: #fff;
}

.map-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 10px auto 30px;
    padding-bottom: 50%;
    border-radius: 16px;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Footer ===== */
footer[role="contentinfo"] {
    background: #2d0f0f;
    color: #fff;
    text-align: center;
    padding: 25px 15px;
}

footer .delivery-info, 
footer .social-icons span {
    font-size: 14px;
    margin-bottom: 15px;
}

footer .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

footer .social-icons a img {
    width: 28px; height: 28px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s, filter 0.3s;
}

footer .social-icons a:hover img {
    transform: scale(1.2);
    filter: brightness(1.2) invert(1);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .hero { height: 50vh; }
    .hero h1 { font-size: 24px; }
    .hero p { font-size: 14px; }
    .menu-nav {
        gap: 8px;
        padding: 10px 10px;
    }
    .menu-nav button {
        padding: 8px 12px;
        font-size: 14px;
    }
    .map-container { width: 95%; padding-bottom: 60%; }
}