:root {
    --primary-red: #B71C1C; /* Deeper, more premium red */
    --primary-orange: #E65100; /* Richer orange */
    --accent-gold: #FFD700;
    --bg-color: #FAFAFA; /* Off-white background */
    --card-bg: #FFFFFF;
    --text-dark: #212121;
    --text-light: #757575;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    padding-bottom: 60px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1000px; /* Wider for desktop */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #2c3e50, #000000); /* Fallback dark bg */
    color: #fff;
    text-align: center;
    padding: 60px 20px 80px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Optional: Add a subtle pattern or gradient overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(183, 28, 28, 0.4), transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Language Switcher */
.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
    font-family: var(--font-body);
}

.lang-btn.active-lang {
    color: #fff;
    font-weight: 800;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.logo-wrapper {
    margin-bottom: 20px;
}

.logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.2);
    margin: 0 auto;
    object-fit: cover;
    background: #fff;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 20px;
    font-style: italic;
}

.hours-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hours-badge .icon {
    margin-right: 8px;
}

/* --- Tab Navigation --- */
.tab-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-top: -30px; /* Overlap Hero */
    margin-bottom: 30px;
    border-radius: 20px 20px 0 0;
}

.tab-nav .container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 0 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tab-nav .container::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: #f5f5f5;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tab-btn.active {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.3);
}

/* --- Tab Content Animation --- */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content.active-tab {
    display: block; /* Fallback */
    opacity: 1;
    transform: translateY(0);
}

/* Default show first tab */
#kofte {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* --- Horizontal Scroll (Yan Yana) --- */
.horizontal-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 5px 30px 5px; /* Bottom padding for shadow */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.scroll-card {
    min-width: 85%; /* Shows part of next card on mobile */
    max-width: 350px;
    scroll-snap-align: center;
    flex-shrink: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
    padding-bottom: 20px;
}

.scroll-hint {
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: -10px;
    margin-bottom: 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(0);}
    40% {transform: translateX(-5px);}
    60% {transform: translateX(5px);}
}

/* Badge styles */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-badge.star {
    background: var(--accent-gold);
    color: #000;
}

.special-card {
    border: 2px solid var(--accent-gold);
}

.price-single {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 10px;
}

/* Desktop Grid Override for Scroll Wrapper */
@media (min-width: 900px) {
    .horizontal-scroll-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        overflow-x: visible;
        padding-bottom: 0;
    }
    
    .scroll-card {
        min-width: auto;
        max-width: none;
        scroll-snap-align: none;
    }
    
    .scroll-hint {
        display: none;
    }
}

/* Section Title */
.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    border-left: 5px solid var(--primary-orange);
    padding-left: 15px;
}

/* --- Main Content --- */
.section-featured {
    margin-bottom: 50px;
}

/* Featured Card */
.featured-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.featured-image-container {
    position: relative;
    height: 250px;
}

.product-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-star {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.featured-details {
    padding: 25px;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.featured-header h2 {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 1.8rem;
}

.price-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.featured-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Menu Category & Layout Refinement --- */
.menu-category {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); /* Soft paper shadow */
    scroll-margin-top: 100px;
}

.category-header {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(229, 81, 0, 0.1); /* Very subtle underline */
}

.category-header::after {
    display: none; /* Remove the old small bar */
}

/* Refined Menu Card (Clean Style) */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px; /* More breathing room */
}

@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.menu-card {
    background: #fff;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    height: auto;
    border-bottom: 1px solid #f0f0f0; /* Divider style instead of box */
    padding-bottom: 30px;
}

.menu-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-card:hover {
    transform: none; /* Remove lift effect for cleaner list feel */
    box-shadow: none;
}

.card-image {
    height: 240px;
    border-radius: 16px; /* Image gets the radius, not the card */
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card:hover .card-image img {
    transform: scale(1.03); /* Subtle zoom */
}

.card-body {
    padding: 0; /* Remove padding as we are not in a box anymore */
    text-align: left; /* Left align for cleaner reading */
}

.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-align: left;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

/* Elegant Price List */
.price-list {
    margin-top: auto;
    width: 100%;
}

.price-row {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5; /* Clean hairline divider */
}

.price-row::after {
    display: none; /* Remove dots for cleaner look */
}

.price-row span:first-child {
    font-weight: 500;
    color: #555;
    font-size: 1rem;
}

.price-row .price {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
    background: rgba(183, 28, 28, 0.05); /* Subtle highlight pill */
    padding: 4px 12px;
    border-radius: 20px;
}

/* --- List Grid (Soups/Sides) Refinement --- */
.list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0; /* Remove gap for list dividers */
}

.list-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.list-card:last-child {
    border-bottom: none;
}

.list-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 12px; /* Soft square for better food visibility */
    margin-right: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
}

.list-info .price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
}

.highlight-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.highlight-card .list-info h4 {
    color: var(--primary-orange);
}

/* --- Mobile Optimization Update --- */
@media (max-width: 768px) {
    .menu-category {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .category-header {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: left; /* Align header left on mobile */
    }

    .card-image {
        height: 220px; /* Slightly taller for better visibility */
    }

    .list-img {
        width: 80px; /* Slightly smaller on mobile but still clear */
        height: 80px;
        margin-right: 15px;
    }

    .card-body h3 {
        font-size: 1.3rem;
    }
    
    .price-row .price {
        font-size: 1rem;
    }
    
    .list-info {
        flex-direction: row; /* Keep side-by-side on mobile for cleaner list */
        align-items: center;
        text-align: left;
    }
    
    .list-info .price {
        margin-top: 0;
        font-size: 1rem;
        white-space: nowrap;
    }
}

/* --- Footer --- */
.footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    filter: grayscale(100%);
    opacity: 0.7;
}

.service-note {
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.4);
    transition: transform 0.2s;
}

.phone-btn:hover {
    transform: scale(1.05);
}

.phone-icon {
    margin-right: 10px;
}

address {
    font-style: normal;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}

address strong {
    color: #fff;
    font-weight: 600;
}


/* --- Mobile Optimization (QR Menu) --- */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Hero adjustments for mobile */
    .hero {
        padding: 40px 15px 60px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .logo-img {
        width: 100px;
        height: 100px;
    }

    /* Tab Nav Mobile */
    .tab-nav {
        top: 0;
        margin-top: -20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 10px 0;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .phone-btn {
        width: 100%;
        padding: 15px;
        font-size: 1.2rem;
    }
    
    .footer {
        padding-bottom: 80px;
    }
}




