        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #e9ecef 50%, #dee2e6 75%, #ced4da 100%);
            background-size: 400% 400%;
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(90deg, #ffffff, #f8f9fa, #e9ecef);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 1rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid #343a40;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #343a40;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        @keyframes spiceGlow {
            from { 
                filter: drop-shadow(0 0 10px #ffcc02);
                transform: scale(1);
            }
            to { 
                filter: drop-shadow(0 0 25px #ff6b35);
                transform: scale(1.05);
            }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #343a40;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .nav-links a:hover {
            color: #ffcc02;
            transform: translateY(-3px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ffcc02, #ff6b35);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 1rem;
        }

        .btn-login {
            background: transparent;
            color: #343a40;
            border: 2px solid #343a40;
            box-shadow: 0 0 15px rgba(52, 58, 64, 0.3);
        }

        .btn-login:hover {
            background: #343a40;
            color: #fff;
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(52, 58, 64, 0.6);
        }

        .btn-signup {
            background: linear-gradient(45deg, #343a40, #495057);
            color: white;
            box-shadow: 0 4px 15px rgba(52, 58, 64, 0.4);
        }

        .btn-signup:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(52, 58, 64, 0.6);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::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"><defs><pattern id="spice" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffcc02" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23spice)"/></svg>');
            animation: patternMove 20s linear infinite;
        }

        @keyframes patternMove {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(20px) translateY(20px); }
        }

        .hero-content {
            text-align: center;
            color: #343a40;
            z-index: 2;
            max-width: 900px;
            padding: 2rem;
        }

        .hero-title {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
            animation: titleBounce 2s ease-out;
            background: linear-gradient(45deg, #ffcc02, #ff6b35, #c1272d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: subtitleSlide 2s ease-out 0.5s both;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            animation: ctaFade 2s ease-out 1s both;
        }

        .btn-primary {
            background: linear-gradient(45deg, #343a40, #495057);
            color: white;
            padding: 1.2rem 2.5rem;
            font-size: 1.2rem;
            border-radius: 35px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(52, 58, 64, 0.4);
            border: 2px solid #6c757d;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(73, 80, 87, 0.6);
            background: linear-gradient(45deg, #495057, #6c757d);
        }

        /* 3D Indian Food Carousel */
        .food-carousel {
            position: absolute;
            width: 100%;
            height: 100%;
            perspective: 1200px;
        }

        .carousel-container {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 350px;
            height: 350px;
            transform-style: preserve-3d;
            animation: indianSpiceRotate 25s linear infinite;
        }

        .food-item {
            position: absolute;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, #ffffff, #f8f9fa, #e9ecef);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: 3px solid #343a40;
        }

        .food-item:nth-child(1) { transform: rotateY(0deg) translateZ(300px); }
        .food-item:nth-child(2) { transform: rotateY(60deg) translateZ(300px); }
        .food-item:nth-child(3) { transform: rotateY(120deg) translateZ(300px); }
        .food-item:nth-child(4) { transform: rotateY(180deg) translateZ(300px); }
        .food-item:nth-child(5) { transform: rotateY(240deg) translateZ(300px); }
        .food-item:nth-child(6) { transform: rotateY(300deg) translateZ(300px); }

        .food-item:hover {
            transform: scale(1.15);
            box-shadow: 0 35px 70px rgba(255, 107, 53, 0.6);
            border-color: #fff;
        }

        /* Sections */
        .section {
            min-height: 100vh;
            padding: 6rem 2rem;
            display: none;
            position: relative;
            overflow-y: auto;
        }

        .section.active {
            display: block;
        }

        /* Home Content Styles */
        .home-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 0;
        }

        .featured-section, .why-choose-section, .reviews-section, .offers-section {
            margin-bottom: 6rem;
            padding: 3rem 0;
        }

        .featured-title, .section-subtitle {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: #343a40;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .featured-grid, .benefits-grid, .reviews-grid, .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .featured-card, .benefit-card, .review-card, .offer-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            color: #343a40;
            transition: all 0.4s ease;
            border: 2px solid #dee2e6;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .featured-card:hover, .benefit-card:hover, .review-card:hover, .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: #343a40;
        }

        .featured-icon, .benefit-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: indianBounce 3s ease-in-out infinite;
        }

        .featured-card h3, .benefit-card h3, .offer-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #343a40;
        }

        .featured-card p, .benefit-card p, .review-card p, .offer-card p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .featured-price {
            font-size: 2rem;
            font-weight: bold;
            color: #495057;
            display: block;
            margin-bottom: 1.5rem;
        }

        .btn-featured, .btn-offer {
            background: linear-gradient(45deg, #343a40, #495057);
            color: white;
            padding: 1rem 2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(52, 58, 64, 0.3);
        }

        .btn-featured:hover, .btn-offer:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 58, 64, 0.4);
            background: linear-gradient(45deg, #495057, #6c757d);
        }

        .stars {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .reviewer {
            font-style: italic;
            color: #6c757d;
            margin-top: 1rem;
        }

        .offer-badge {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(193, 39, 45, 0.1), rgba(255, 107, 53, 0.1));
            pointer-events: none;
        }

        .section-title {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 4rem;
            color: #343a40;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
            animation: spiceWave 3s ease-in-out infinite;
            background: linear-gradient(45deg, #343a40, #495057);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Menu Section */
        .menu-category {
            margin-bottom: 4rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .category-title {
            font-size: 2.5rem;
            color: #343a40;
            text-align: center;
            margin-bottom: 2rem;
            padding: 1rem 0;
            border-bottom: 3px solid #dee2e6;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .menu-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            color: #343a40;
            transition: all 0.4s ease;
            transform-style: preserve-3d;
            border: 2px solid #343a40;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .menu-card:hover {
            transform: rotateY(15deg) rotateX(10deg) translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border-color: #495057;
        }

        .menu-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            animation: indianBounce 3s ease-in-out infinite;
            filter: drop-shadow(0 0 10px rgba(255, 204, 2, 0.5));
        }

        .menu-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #343a40;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .menu-price {
            font-size: 2.2rem;
            color: #495057;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .menu-description {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .btn-cart {
            background: linear-gradient(45deg, #e9ecef, #dee2e6);
            color: #343a40;
            padding: 1rem 2rem;
            border-radius: 30px;
            margin: 0.5rem;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-cart:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            background: linear-gradient(45deg, #dee2e6, #ced4da);
        }

        /* About Section */
        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            color: #343a40;
            background: rgba(255, 255, 255, 0.8);
            padding: 3rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            border: 2px solid #343a40;
        }

        .about-text {
            font-size: 1.3rem;
            line-height: 2;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        /* Timeline Styles */
        .story-timeline, .values-section, .chef-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 3rem 0;
        }

        .timeline-title, .values-title, .chef-title {
            text-align: center;
            font-size: 2.5rem;
            color: #343a40;
            margin-bottom: 3rem;
        }

        .timeline-container {
            position: relative;
            padding: 2rem 0;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 2px solid #dee2e6;
        }

        .timeline-year {
            background: linear-gradient(45deg, #343a40, #495057);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 50%;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 2rem;
            min-width: 80px;
            text-align: center;
        }

        .timeline-content h4 {
            font-size: 1.5rem;
            color: #343a40;
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.8;
        }

        /* Values Grid */
        .values-grid, .chef-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .value-card, .chef-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            border: 2px solid #dee2e6;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .value-card:hover, .chef-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: #343a40;
        }

        .value-icon, .chef-avatar {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .value-card h4, .chef-card h4 {
            font-size: 1.4rem;
            color: #343a40;
            margin-bottom: 1rem;
        }

        .chef-specialty {
            color: #6c757d;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .value-card p, .chef-card p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.8;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(247, 147, 30, 0.9), rgba(255, 167, 38, 0.8));
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            color: white;
            transition: all 0.4s ease;
            border: 2px solid #8b4513;
            box-shadow: 0 10px 25px rgba(247, 147, 30, 0.3);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.05);
            background: linear-gradient(135deg, rgba(255, 167, 38, 0.9), rgba(255, 138, 101, 0.8));
            box-shadow: 0 20px 40px rgba(255, 167, 38, 0.4);
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: spicePulse 2.5s ease-in-out infinite;
            filter: drop-shadow(0 0 10px rgba(255, 204, 2, 0.5));
        }

        /* Contact Section */
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.8));
            backdrop-filter: blur(15px);
            padding: 3rem;
            border-radius: 25px;
            border: 2px solid #8b4513;
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
        }

        /* Legal Sections */
        .legal-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .legal-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            color: #343a40;
            border: 2px solid #dee2e6;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .legal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: #343a40;
        }

        .legal-card h3 {
            font-size: 1.8rem;
            color: #343a40;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid #dee2e6;
            padding-bottom: 0.5rem;
        }

        .legal-card p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .legal-card strong {
            color: #495057;
            font-weight: 600;
        }

        .legal-list {
            list-style: none;
            padding-left: 0;
        }

        .legal-list li {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
            opacity: 0.9;
        }

        .legal-list li::before {
            content: '🔸';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1rem;
        }

        .legal-contact {
            background: linear-gradient(135deg, rgba(52, 58, 64, 0.9), rgba(73, 80, 87, 0.8));
            color: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin-top: 3rem;
            text-align: center;
            border: 2px solid #6c757d;
            box-shadow: 0 15px 35px rgba(52, 58, 64, 0.3);
        }

        .legal-contact h3 {
            color: #ffcc02;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .legal-contact p {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            opacity: 0.95;
        }

        .legal-contact strong {
            color: #fff;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid #ffcc02;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 4rem 2rem 2rem;
            text-align: center;
            border-top: 3px solid #8b4513;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #8b4513;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .footer-links a:hover {
            color: #ffcc02;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .newsletter {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .newsletter input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #ffcc02;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        /* Auth Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: linear-gradient(135deg, #ff6b35, #f7931e, #ffa726);
            padding: 3rem;
            border-radius: 25px;
            width: 90%;
            max-width: 450px;
            text-align: center;
            color: white;
            animation: modalSpiceSlide 0.4s ease-out;
            border: 3px solid #8b4513;
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
        }

        .close {
            float: right;
            font-size: 2.5rem;
            cursor: pointer;
            color: #ffcc02;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: #fff;
            transform: scale(1.2);
        }

        .auth-form input {
            width: 100%;
            padding: 1.2rem;
            margin: 1rem 0;
            border: 2px solid #ffcc02;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.1rem;
        }

        .auth-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        /* User Status */
        .user-status {
            display: none;
            align-items: center;
            gap: 1rem;
        }

        .user-status.logged-in {
            display: flex;
        }

        .logout-btn {
            background: linear-gradient(45deg, #c1272d, #8b0000);
            color: #ffcc02;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            border: 2px solid #ffcc02;
        }

        .logout-btn:hover {
            background: linear-gradient(45deg, #8b0000, #c1272d);
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(255, 204, 2, 0.3);
        }

        /* Animations */
        @keyframes indianSpiceRotate {
            from { transform: translate(-50%, -50%) rotateY(0deg); }
            to { transform: translate(-50%, -50%) rotateY(360deg); }
        }

        @keyframes titleBounce {
            0% { transform: translateY(-50px) scale(0.8); opacity: 0; }
            50% { transform: translateY(10px) scale(1.1); }
            100% { transform: translateY(0) scale(1); opacity: 1; }
        }

        @keyframes subtitleSlide {
            from { transform: translateX(-100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes ctaFade {
            from { transform: scale(0.5); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @keyframes spiceWave {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-10px) rotate(1deg); }
            75% { transform: translateY(-5px) rotate(-1deg); }
        }

        @keyframes indianBounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(0deg); }
            40% { transform: translateY(-15px) rotate(5deg); }
            60% { transform: translateY(-8px) rotate(-3deg); }
        }

        @keyframes spicePulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.15) rotate(5deg); }
        }

        @keyframes spiceTypewriter {
            from { width: 0; opacity: 0; }
            to { width: 100%; opacity: 1; }
        }

        @keyframes modalSpiceSlide {
            from { transform: scale(0.5) rotate(-10deg); opacity: 0; }
            to { transform: scale(1) rotate(0deg); opacity: 1; }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-title { font-size: 3rem; }
            .hero-subtitle { font-size: 1.4rem; }
            .nav-links { display: none; }
            .carousel-container { width: 250px; height: 250px; }
            .food-item { width: 180px; height: 180px; font-size: 4rem; }
            .section-title { font-size: 2.5rem; }
            .menu-grid { grid-template-columns: 1fr; }
        }