:root {
            --spice-red: #e74c3c;
            --turmeric-yellow: #f1c40f;
            --masala-brown: #8b4513;
            --curry-green: #27ae60;
            --saffron-orange: #e67e22;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #fdf6e3 0%, #fff8e1 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--spice-red) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--spice-red) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            color: var(--masala-brown);
            border-bottom: 3px solid var(--turmeric-yellow);
            padding-bottom: 10px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 40px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--spice-red);
            margin-bottom: 20px;
        }
        .recipe-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .recipe-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .spice-badge {
            background: linear-gradient(45deg, var(--spice-red), var(--saffron-orange));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
        }
        footer {
            background: linear-gradient(135deg, var(--masala-brown), #5d4037);
            color: white;
            padding: 40px 0 20px;
        }
        .social-icon {
            font-size: 1.5rem;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            color: var(--turmeric-yellow);
            transform: scale(1.2);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 25px;
            }
            .navbar-brand {
                font-size: 1.4rem;
            }
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--turmeric-yellow) 0%, var(--turmeric-yellow) 100%);
            background-repeat: no-repeat;
            background-size: 100% 40%;
            background-position: 0 90%;
        }
        .ingredient-list {
            list-style: none;
            padding: 0;
        }
        .ingredient-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #ddd;
        }
        .ingredient-list li:before {
            content: "?";
            margin-right: 10px;
        }
