:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #f8f8f8;
    --charcoal: #333333;
    --deep-brown: #2c1810;
    --primary-orange: #e85a2a;
    --primary-orange-light: #ff6b3d;
    --primary-orange-dark: #c94a1a;
    --gold: #e85a2a;
    --gold-light: #ff6b3d;
    --gold-dark: #c94a1a;
    --cream: #fffef8;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-section: #faf9f7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.text-gold {
    color: var(--gold) !important;
}

.bg-dark-custom {
    background-color: var(--secondary-dark);
}

.navbar {
    --bs-navbar-padding-y: 0;
    --bs-navbar-padding-x: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    padding: 0 !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar-brand{padding:0px;}
.navbar.scrolled {
    background: rgba(255,255,255,0.99);
    padding: 0 !important;
    box-shadow: 0 2px 30px rgba(0,0,0,0.12);
}

.navbar-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.navbar-logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 80px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-orange) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: 0;
    background: var(--gold);
    color: var(--primary-dark);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 600;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-orange) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 90, 42, 0.3);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.hero-section {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #fffef8 0%, #fff5eb 50%, #fef0e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    padding-top: 90px;
    background: var(--bg-light);
}

.hero-slider {
    position: relative;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: clamp(180px, 32vw, 420px);
    object-fit: contain;
    object-position: center;
    display: block;
    background: var(--white);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--primary-orange);
    z-index: 2;
}

.hero-prev { left: 15px; }
.hero-next { right: 15px; }

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--primary-orange);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e85a2a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-royal-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(232, 90, 42, 0.15);
    border-radius: 20px;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    padding: 0 50px;
    z-index: 2;
}

.hero-content {
    flex: 1;
    text-align: left;
    animation: fadeInLeft 1s ease;
}

.hero-title {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(232, 90, 42, 0.1);
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-biryani-3d {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.biryani-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 90, 42, 0.2) 0%, rgba(232, 90, 42, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 0;
}

.biryani-plate {
    position: relative;
    transform-style: preserve-3d;
    animation: float3D 4s ease-in-out infinite;
}

.biryani-image {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #d4a574;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(232, 90, 42, 0.2),
        inset 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: rotateX(10deg);
    transition: all 0.5s ease;
}

.biryani-plate:hover .biryani-image {
    transform: rotateX(0deg) scale(1.05);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.35),
        0 20px 40px rgba(232, 90, 42, 0.25);
}

.biryani-shadow {
    width: 300px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
    border-radius: 50%;
    margin-top: -10px;
    animation: shadowPulse 4s ease-in-out infinite;
}

.steam {
    position: absolute;
    width: 8px;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
    border-radius: 50%;
    filter: blur(4px);
    animation: steamRise 2s ease-in-out infinite;
}

.steam-1 { left: 30%; top: -40px; animation-delay: 0s; }
.steam-2 { left: 50%; top: -50px; animation-delay: 0.5s; }
.steam-3 { left: 70%; top: -35px; animation-delay: 1s; }

.royal-badge {
    position: absolute;
    bottom: 60px;
    right: -20px;
    background: linear-gradient(135deg, #d4a574 0%, #c4956a 50%, #b4855a 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(180, 133, 90, 0.4);
    animation: badgeBounce 2s ease-in-out infinite;
}

.royal-badge i {
    font-size: 1.2rem;
    color: #fff8dc;
}

.biryani-slider {
    position: relative;
    width: 380px;
    height: 380px;
}

.biryani-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9) rotateY(-15deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.biryani-slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    pointer-events: auto;
}

.biryani-slide .biryani-image {
    width: 100%;
    height: 100%;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(232, 90, 42, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(232, 90, 42, 0.6);
}

.slider-dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(232, 90, 42, 0.5);
}

.hero-ornament {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, transparent 40%, rgba(232, 90, 42, 0.1) 50%, transparent 60%);
    border: 2px solid rgba(232, 90, 42, 0.15);
    border-radius: 50%;
}

.hero-ornament-left {
    bottom: 50px;
    left: 50px;
    animation: rotateOrn 20s linear infinite;
}

.hero-ornament-right {
    top: 100px;
    right: 50px;
    animation: rotateOrn 25s linear infinite reverse;
}

@keyframes float3D {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    25% { transform: translateY(-15px) rotateY(5deg); }
    50% { transform: translateY(-25px) rotateY(0deg); }
    75% { transform: translateY(-15px) rotateY(-5deg); }
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes shadowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(0.85); opacity: 0.3; }
}

@keyframes steamRise {
    0% { transform: translateY(0) scaleY(1); opacity: 0.6; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-40px) scaleY(1.5); opacity: 0; }
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes rotateOrn {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(232, 90, 42, 0.1);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

.live-kitchen-section {
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.live-kitchen-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

.kitchen-card {
    background: var(--white);
    border: 1px solid rgba(232, 90, 42, 0.15);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.kitchen-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(232, 90, 42, 0.15);
}

.kitchen-card-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.kitchen-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.kitchen-card p {
    color: var(--text-muted);
}

.signature-section {
    background: var(--white);
}

.dish-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.dish-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(232, 90, 42, 0.15);
}

.dish-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dish-content {
    padding: 1.5rem;
}

.dish-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dish-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.dish-price {
    font-size: 1.4rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.why-choose-section {
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--white) 100%);
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(232, 90, 42, 0.1) 0%, rgba(232, 90, 42, 0.05) 100%);
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.feature-box:hover .feature-icon {
    background: var(--primary-orange);
}

.feature-box:hover .feature-icon i {
    color: var(--white);
}

.testimonial-section {
    background: var(--bg-section);
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--primary-orange);
    font-weight: 600;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 100%),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920') center/cover no-repeat;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-orange);
}

.menu-section {
    background: var(--white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-tab {
    background: transparent;
    border: 2px solid #ddd;
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab:hover, .category-tab.active {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(232, 90, 42, 0.08);
}

.menu-item-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.menu-item-card:hover {
    border-color: var(--primary-orange);
}

.menu-item-image {
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-name {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-price {
    font-size: 1.3rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.btn-add-cart {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--primary-orange-light);
    transform: scale(1.05);
}

.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.contact-section {
    background: var(--bg-section);
}

.contact-info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 90, 42, 0.1);
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-control, .form-select {
    background: var(--bg-section);
    border: 1px solid #ddd;
    color: var(--text-dark);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: var(--white);
    border-color: var(--primary-orange);
    color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(232, 90, 42, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.cart-section {
    background: var(--bg-section);
    min-height: calc(100vh - 200px);
}

.cart-item {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 600;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary-orange);
    background: transparent;
    color: var(--primary-orange);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.quantity-input {
    width: 50px;
    text-align: center;
    background: var(--bg-section);
    border: 1px solid #ddd;
    color: var(--text-dark);
    padding: 0.5rem;
    border-radius: 5px;
}

/* Menu Layout - Inspired by Large Catalog Pages */
.menu-hero {
    padding: 140px 0 60px;
    background: linear-gradient(160deg, #fff6ee 0%, #fff 50%, #fff1e6 100%);
    position: relative;
}

.menu-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.menu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 90, 42, 0.1);
    color: var(--primary-orange);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-hero-title {
    font-size: 3rem;
    margin: 1rem 0 0.8rem;
    color: var(--primary-orange);
}

.menu-hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 540px;
}

.menu-hero-actions {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0 1.2rem;
    flex-wrap: wrap;
}

.menu-hero-pills {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-pill {
    background: var(--white);
    border: 1px solid #f1d2c6;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-pill.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.menu-hero-slider {
    position: relative;
}

.promo-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.promo-slide {
    display: none;
    position: relative;
}

.promo-slide.active {
    display: block;
}

.promo-slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.promo-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    color: var(--white);
}

.promo-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.promo-tag {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--primary-orange);
    z-index: 2;
}

.promo-prev { left: 15px; }
.promo-next { right: 15px; }

.promo-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
}

.promo-dot.active {
    background: var(--primary-orange);
}

.menu-category-bar {
    background: var(--white);
    border-top: 1px solid #f1e1d8;
    border-bottom: 1px solid #f1e1d8;
    position: sticky;
    top: 86px;
    z-index: 10;
}

.menu-category-rail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.8rem 0;
    scrollbar-width: none;
}

.menu-category-rail::-webkit-scrollbar {
    display: none;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff7f2;
    border: 1px solid #f0d4c4;
    color: var(--text-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.category-chip.active,
.category-chip:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.chip-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    color: var(--primary-orange);
    font-size: 0.9rem;
    flex-shrink: 0;
}

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

.menu-category-section {
    scroll-margin-top: 140px;
}

.offers-section {
    padding: 40px 0 20px;
    background: var(--white);
}

.offers-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.offers-track::-webkit-scrollbar {
    display: none;
}

.offer-card {
    flex: 0 0 calc((100% - 3rem) / 4);
    min-width: calc((100% - 3rem) / 4);
    padding: 0.9rem 1rem;
    border-radius: 14px;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    border: none;
    text-align: left;
    cursor: pointer;
    scroll-snap-align: start;
}

.offer-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.offer-copy h4 {
    margin: 0;
    font-size: clamp(0.8rem, 0.9vw, 0.92rem);
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    display: block;
}

.offer-copy p {
    margin: 0.25rem 0 0;
    font-size: clamp(0.7rem, 0.82vw, 0.82rem);
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    display: block;
}

.offer-badge {
    display: none;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}

.offer-card-clone {
    pointer-events: none;
}

@media (max-width: 1200px) {
    .offer-card {
        flex-basis: calc((100% - 2rem) / 3);
        min-width: calc((100% - 2rem) / 3);
    }
}

@media (max-width: 768px) {
    .offer-card {
        flex-basis: calc((100% - 1rem) / 2);
        min-width: calc((100% - 1rem) / 2);
    }
}

.offer-modal {
    border-radius: 16px;
    border: 1px solid #f0d4c4;
}

.offer-modal .modal-header {
    border-bottom: 1px solid #f3e5d9;
}

.offer-modal-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
}

.offer-modal-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #f0d4c4;
    display: none;
}

.offer-modal-subtitle {
    color: var(--text-muted);
}

.offer-modal-details {
    margin-top: 0.6rem;
}

.offer-modal-content h6 {
    margin-top: 1rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    .offer-modal-grid {
        grid-template-columns: 1fr;
    }
}

.scroll-controls {
    display: flex;
    gap: 0.5rem;
}

.scroll-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #f0d4c4;
    background: var(--white);
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-categories-section {
    padding: 30px 0 20px;
    background: #fffaf5;
}

.category-card-track {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.category-card-track::-webkit-scrollbar {
    display: none;
}

.category-card {
    background: #fffdf5;
    border: 1px solid #f1e3d3;
    border-radius: 18px;
    padding: 1.2rem;
    min-width: 210px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-decoration: none;
    color: var(--text-dark);
}

.category-thumb {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff3e7;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.category-fallback {
    color: var(--primary-orange);
    font-size: 1.6rem;
}

.category-card h4 {
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.category-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.badge-pill {
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid transparent;
}

.badge-pill.veg {
    color: #28a745;
    border-color: #28a745;
    background: rgba(40,167,69,0.1);
}

.badge-pill.nonveg {
    color: #dc3545;
    border-color: #dc3545;
    background: rgba(220,53,69,0.1);
}

.badge-pill.best {
    color: #ffb000;
    border-color: #ffb000;
    background: rgba(255,176,0,0.12);
}

.empty-state {
    padding: 1rem;
    border: 1px dashed #f0d4c4;
    border-radius: 12px;
    color: var(--text-muted);
    background: #fff7f0;
}

.mobile-scroll {
    display: none;
    justify-content: center;
    margin-top: 0.8rem;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-title-sm {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 0.2rem;
}

.section-subtitle-sm {
    color: var(--text-muted);
}

.section-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.modern-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #f2e4dc;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.menu-item-card.modern-card .menu-item-image img {
    height: 180px;
}

.menu-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.veg {
    background: #28a745;
    color: #fff;
}

.badge.nonveg {
    background: #dc3545;
    color: #fff;
}

@media (max-width: 991px) {
    .menu-hero-grid {
        grid-template-columns: 1fr;
    }
    .menu-hero {
        padding-top: 120px;
    }
    .menu-hero-title {
        font-size: 2.4rem;
    }
    .promo-slide img {
        height: 300px;
    }
    .menu-category-bar {
        top: 72px;
    }
    .mobile-scroll {
        display: flex;
    }
}

@media (max-width: 576px) {
    .menu-hero-title {
        font-size: 2rem;
    }
    .promo-slide img {
        height: 240px;
    }
    .offer-card {
        flex-basis: 88%;
        min-width: 88%;
    }
    .offer-copy h4 {
        font-size: 0.82rem;
    }
    .offer-copy p {
        font-size: 0.74rem;
    }
    .section-title-sm {
        font-size: 1.6rem;
    }
}

.cart-remove {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cart-remove:hover {
    transform: scale(1.2);
}

.cart-summary {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.summary-total {
    font-size: 1.4rem;
    color: var(--primary-orange);
    font-weight: 700;
    border-bottom: none;
    margin-top: 1rem;
}

.order-partners-section {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.partner-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.partner-btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-btn.zomato {
    background: #e23744;
    color: white;
}

.partner-btn.swiggy {
    background: #fc8019;
    color: white;
}

.partner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: white;
    transform: translateY(-2px);
}

.footer {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    border-top: none;
}

.footer .footer-top {
    row-gap: 2rem;
}

.footer .footer-bottom {
    align-items: center;
}

.footer .footer-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .footer .footer-bottom .col-md-6 {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer .footer-bottom .col-md-6.text-md-start {
        justify-content: flex-start;
    }
    .footer .footer-bottom .col-md-6.text-md-start {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-muted);
}

.footer .footer-tagline,
.footer .hours-text {
    max-width: 420px;
    line-height: 1.7;
}

.footer-title {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links li a, .footer p, .footer-tagline {
    color: rgba(255,255,255,0.7);
}

.footer .contact-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.footer .contact-item i {
    font-size: 1.05rem;
    margin-top: 0.15rem;
}

.footer-links li a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(232, 90, 42, 0.2);
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.footer-divider {
    border-color: var(--charcoal);
    margin: 2rem 0;
}

.copyright {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.copyright a {
    color: var(--primary-orange);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--white);
}

.copyright span {
    white-space: normal;
}

.footer .order-partners {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer .partner-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer .partner-btn.zomato { background: #e23744; color: #fff; }
.footer .partner-btn.swiggy { background: #fc8019; color: #fff; }
.footer .partner-btn:hover { transform: translateY(-2px); }

.about-story .story-media {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--gold);
    width: 50%;
    margin: 0 auto;
}

.about-story .story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about-story .story-media {
        width: 100%;
    }
}

.about-story .story-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-story .section-title {
    margin-top: 0;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.alert-success-custom {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
    border-radius: 10px;
}

.alert-danger-custom {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .navbar .container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .navbar-brand {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .navbar-logo {
        height: 80px !important;
    }
    
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 15px;
        border: 2px solid var(--primary-orange) !important;
        background: rgba(232, 90, 42, 0.1) !important;
        padding: 8px 12px !important;
        border-radius: 8px;
    }
    
    .navbar-toggler i {
        font-size: 1.5rem;
        color: var(--primary-orange);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(232, 90, 42, 0.25);
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(232, 90, 42, 0.2);
    }
    
    .navbar-collapse .nav-link {
        color: #ffffff !important;
        padding: 12px 20px !important;
        margin: 5px 0;
        border-radius: 10px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        background: rgba(232, 90, 42, 0.15);
        color: var(--primary-orange) !important;
        border-left-color: var(--primary-orange);
    }
    
    .navbar-collapse .nav-link i {
        margin-right: 10px;
    }
    
    .navbar-collapse .cart-link {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 100px 20px 60px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-biryani-3d {
        margin-top: 20px;
    }
    
    .biryani-image {
        width: 280px;
        height: 280px;
    }
    
    .biryani-slider {
        width: 280px;
        height: 280px;
    }
    
    .biryani-glow {
        width: 300px;
        height: 300px;
    }
    
    .biryani-shadow {
        width: 220px;
    }
    
    .royal-badge {
        right: 0;
        bottom: 40px;
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .hero-ornament {
        display: none;
    }
    
    .hero-royal-frame {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-image {
        width: 150px;
        height: 150px;
    }
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 5rem;
    }
}

/* Mobile Order Bar - Zomato & Swiggy */
.mobile-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 12px 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1050;
    border-top: 2px solid var(--primary-orange);
}

.order-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.order-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.order-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.zomato-btn {
    background: #e23744;
    border: 2px solid #e23744;
}

.zomato-btn:hover {
    background: #c92f3a;
    transform: scale(1.05);
}

.swiggy-btn {
    background: #fc8019;
    border: 2px solid #fc8019;
}

.swiggy-btn:hover {
    background: #e67316;
    transform: scale(1.05);
}

.menu-btn {
    background: var(--primary-orange);
    color: #fff;
    border: 2px solid var(--primary-orange);
}

.menu-btn:hover {
    background: var(--primary-orange-dark);
    color: #fff;
    transform: scale(1.05);
}

.delivery-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Add padding to footer to prevent content being hidden behind mobile bar */
@media (max-width: 767.98px) {
    .footer {
        padding-bottom: 80px !important;
    }
    
    body {
        padding-bottom: 70px;
    }

    .footer .order-partners {
        justify-content: center;
        margin-top: 0.75rem;
    }

    .footer .copyright span {
        display: inline;
        margin-top: 0;
    }

    .footer .footer-cta {
        justify-content: center;
    }
}
