/* Taste of India Section */
.taste-india {
    padding: 5rem 0;
    background: #fff;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.food-item {
    text-align: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-item:hover {
    transform: scale(1.05);
}

.food-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.food-item h3 {
    padding: 1rem;
    font-size: 1.2rem;
    color: white;
    background: linear-gradient(135deg, #ff9933, #ffb366);
    margin: 0;
}