* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* Splash screen ke time scroll band */
}

.splash-container {
    height: 100vh;
    width: 100%;
    /* Background Image: Aap yahan bhaiya ke restaurant ki photo ka link bhi daal sakte ho */
    background: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=2070') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Dark Orange Overlay for Text Visibility */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.8), rgba(255, 215, 0, 0.6));
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

h2 {
    font-size: 1.5rem;
    letter-spacing: 5px;
    font-weight: 400;
}

.restaurant-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: #fff;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    margin: 10px 0;
    animation-delay: 0.5s;
}

.tagline {
    font-size: 1.1rem;
    animation-delay: 1s;
    margin-bottom: 30px;
}

/* VIP Loader Bar */
.loader-bar {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.progress {
    width: 0;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    animation: loading 3s ease-in-out forwards;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading {
    to {
        width: 100%;
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .restaurant-name {
        font-size: 3.5rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-y: auto !important; /* स्क्रॉल चालू रखने के लिए */
    overflow-x: hidden;
}

.menu-item-row {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.menu-item-row.show {
    opacity: 1;
    transform: translateY(0);
}
/* Header & Sticky Nav */
.menu-header {
    position: sticky;
    top: 0;
    background: #FF8C00;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo-section h3 {
    color: white;
    text-align: center;
    padding: 15px 0 5px 0;
    letter-spacing: 2px;
}

/* पूरे Nav बार का स्टाइल */
.category-nav {
    display: flex;
    gap: 12px;
    padding: 15px 10px;
    background: #000000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    overflow-x: auto; /* मोबाइल पर खिसकाने के लिए */
    white-space: nowrap;
    scrollbar-width: none; /* स्क्रॉल बार छुपाने के लिए */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* हर एक आइटम का स्टाइल (जैसे Burger, Pizza) */
.nav-item {
    padding: 8px 18px;
    background: #262626; /* डार्क ग्रे */
    color: #888;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

/* जो कैटेगरी चुनी हुई है (Active), वो ऐसी दिखेगी */
.nav-item.active {
    background: #FFD700; /* गोल्डन बैकग्राउंड */
    color: #000; /* काला टेक्स्ट */
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); /* चमक (Glow) */
    transform: scale(1.08); /* थोड़ा बड़ा दिखेगा */
}

/* Category Banners */
.category-banner {
    background: #FFD700;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    margin-top: 25px;
    font-weight: 700;
}

.size-labels {
    display: grid;
    grid-template-columns: repeat(3, 45px);
    text-align: center;
    font-size: 0.8rem;
}

.size-labels.single { grid-template-columns: 100px; }

/* Menu Rows with Scroll Animation */
.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: white;
    margin-bottom: 5px;
    
    /* Animation start state */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.menu-item-row.show {
    opacity: 1;
    transform: translateY(0);
}

.item-side {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.item-thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.item-name h4 { font-size: 1rem; color: #333; }
.item-name p { font-size: 0.75rem; color: #888; }

.item-prices {
    display: grid;
    grid-template-columns: repeat(3, 45px);
    text-align: center;
    font-weight: 700;
    color: #FF8C00;
}

.item-prices.single {
    grid-template-columns: 100px;
    color: #222;
    font-size: 1.1rem;
}

.menu-container { padding: 0 15px 50px 15px; }

footer {
    text-align: center;
    padding: 40px;
    background: #222;
    color: white;
    margin-top: 20px;
}

footer span { color: #FFD700; }
/* Owner Section (Hidden initially, shown by JS) */
.owner-section {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px; /* Pillow shape */
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid #FFD700; /* Gold border */
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInOwner 0.8s forwards 0.5s; /* Animates 0.5s after shown */
}

.owner-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF8C00; /* Orange border around photo */
}

.owner-info {
    text-align: left;
}

.meet-text {
    font-size: 0.65rem;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.owner-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
}

.tagline-text {
    font-size: 0.7rem;
    color: #FF8C00;
    font-style: italic;
    margin-top: 2px;
}

/* Owner slide in animation */
@keyframes slideInOwner {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive adjustment */
@media (max-width: 600px) {
    .owner-section {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
    }
    .owner-photo {
        width: 50px;
        height: 50px;
    }
    .owner-name {
        font-size: 1rem;
    }
}
.vip-footer {
    background: #1a1a1a;
    color: white;
    padding: 45px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 5px solid #FFD700;
}

.food-quote-hindi {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f1f1f1;
    margin-bottom: 25px;
    font-weight: 500;
}

.food-quote-hindi span {
    display: block;
    font-size: 0.9rem;
    color: #FFD700;
    margin-top: 8px;
    font-style: italic;
}

.review-btn {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 14px 30px;
    border-radius: 8px; /* इस बार थोड़ा शार्प लुक */
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    transition: 0.3s;
}

.review-btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 35px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.75rem;
    color: #888;
}

.footer-bottom span {
    color: #FFD700;
}
.offer-strip {
    background: linear-gradient(90deg, #ff4e50, #f9d423);
    color: #000;
    text-align: center;
    padding: 8px 10px;
    font-weight: 700;
    font-size: 0.85rem;
    overflow: hidden;
    white-space: nowrap;
}

/* पट्टी को एनिमेट करने के लिए (Optional) */
.offer-strip span {
    display: inline-block;
    animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* "Must Try" टैग के लिए */
.must-try {
    background: #ff4e50;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
}
.side-ad-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 160px;
    background: linear-gradient(145deg, #1a1a1a, #333);
    border: 1px solid #FFD700;
    border-radius: 12px;
    padding: 12px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease;
}

.ad-content { position: relative; }

.close-ad {
    position: absolute;
    top: -10px;
    right: -5px;
    color: #888;
    cursor: pointer;
    font-size: 18px;
}

.ad-tag {
    font-size: 0.6rem;
    color: #FFD700;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.ad-brand {
    color: white;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.ad-desc {
    color: #bbb;
    font-size: 0.65rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ad-btn {
    display: block;
    background: #FFD700;
    color: #000;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    transition: 0.3s;
}

@keyframes slideInUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* मोबाइल पर थोड़ा छोटा करने के लिए */
@media (max-width: 480px) {
    .side-ad-banner {
        width: 140px;
        bottom: 15px;
        right: 15px;
    }
}
.premium-header {
    background: #1a1c2c; /* एक गहरा रॉयल ब्लू शेड जो ब्लैक नेव से अलग दिखेगा */
    padding: 15px 20px;
    position: relative;
    border-bottom: 2px solid #FFD700;
    /* एक हल्का ग्रेडिएंट टच */
    background: linear-gradient(135deg, #1a1c2c 0%, #2a2e45 100%);
}
.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* अब एनीमेशन सिर्फ टेक्स्ट पर रहेगा, पूरे ब्लॉक पर नहीं */
}

.top-label {
    color: #FFD700;
    font-size: 0.55rem; /* छोटा और क्लासी */
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.premium-header h1 {
    color: #fff;
    font-size: 1.3rem; /* साइज छोटा किया ताकि जगह बचे */
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
}

.glow {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.premium-header p {
    color: #888;
    font-size: 0.75rem; /* छोटा फॉन्ट */
    margin-top: 4px;
    font-weight: 400;
}

/* लाइन को हटा दिया ताकि हाइट और कम हो जाए, 
उसकी जगह हम बॉर्डर यूज़ कर रहे हैं */
.header-line { display: none; }

/* हल्का सा चमक वाला एनीमेशन (Shine) जारी रहेगा */
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}


/* "Crave" टेक्स्ट के ऊपर चमक (Shine) वाला इफ़ेक्ट */
.glow {
    color: #FFD700;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* नीचे वाली लाइन की चौड़ाई बढ़ती-घटती रहेगी */
.header-line {
    width: 50px;
    height: 4px;
    background: #FFD700;
    margin-top: 20px;
    border-radius: 2px;
    animation: expand 2s ease-in-out infinite alternate;
}

@keyframes expand {
    from { width: 40px; }
    to { width: 80px; }
}
.nav-item:active {
    transform: scale(0.9); /* दबाने पर छोटा होगा */
}
/* इमेज का साइज और ग्लो कंट्रोल करने के लिए */
.coming-soon img {
    width: 60px !important; /* आपके पुराने इमेज साइज के बराबर */
    height: 60px !important;
    filter: grayscale(1) opacity(0.5); /* ग्लो कम और ब्लैक-वाइट */
    border-radius: 8px;
}

/* इमेज के ऊपर छोटा सा 'SOON' टैग */
.soon-tag {
    position: absolute;
    background: #ff4757;
    color: white;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: bold;
    top: 5px;
    left: 5px;
    z-index: 5;
}

/* पूरे आइटम को थोड़ा हल्का दिखाने के लिए */
.coming-soon {
    position: relative;
    opacity: 0.8;
}
/* लेआउट को लाइन में लाने के लिए */
.coming-soon {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 10px 0;
    position: relative;
    border-bottom: 1px solid #eee; /* बाकी आइटम्स जैसी लाइन */
}

/* इमेज का साइज छोटा और फिक्स करने के लिए */
.coming-soon img {
    width: 65px !important;
    height: 65px !important;
    min-width: 65px; /* इमेज दबेगी नहीं */
    object-fit: cover;
    filter: grayscale(1) opacity(0.6);
    border-radius: 12px;
}

/* टेक्स्ट को सही जगह सेट करने के लिए */
.coming-soon .item-details {
    display: flex;
    flex-direction: column;
}

.coming-soon h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.coming-soon p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

/* टैग को इमेज के ऊपर सेट करना */
.soon-tag {
    position: absolute;
    top: 12px;
    left: 2px;
    background: #ff4757;
    color: white;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 10;
}
/* जबरदस्ती एक लाइन में लाने के लिए */
.coming-soon {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

/* इमेज को बाकी बर्गर जैसा छोटा करना */
.coming-soon img {
    width: 65px !important;
    height: 65px !important;
    min-width: 65px;
    border-radius: 12px;
    filter: grayscale(1) opacity(0.5);
    object-fit: cover;
}

/* टेक्स्ट को सीधा करना */
.coming-soon .item-details {
    text-align: left !important;
}

/* SOON टैग की सही पोजीशन */
.soon-tag {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #ff4757;
    color: white;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 10;
}
/* ऑफर वाले कार्ड के लिए खास स्टाइल */
.offer-card {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 2px dashed #FFD700; /* डैश वाली बॉर्डर कूपन जैसी लगती है */
    padding: 15px;
    margin: 15px 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    background: #e67e22;
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
}

.offer-info h3 {
    color: #d35400;
    margin: 0;
    font-size: 1.1rem;
}

.offer-info p {
    color: #555;
    font-size: 0.85rem;
    margin: 5px 0;
}
.offer-img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 10px;
}

.offer-card {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.offer-code {
    font-weight: bold;
    color: #27ae60;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}