/* General Styles */
body {
    font-family: 'Arial', sans-serif;
}

.navbar {
    background-color: #ffffff;
}

.hero-section {
    background: linear-gradient(to right, #4F46E5, #EC4899);
    color: white;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
}

.btn-primary {
    background-color: #10B981;
    border: none;
}

/* Services Section */
#services i {
    color: #4F46E5;
}

/* Food Item Cards */
#food-items .card {
    border: none;
    transition: transform 0.3s ease;
}

#food-items .card:hover {
    transform: translateY(-10px);
}

#food-items .card-price {
    color: #10B981;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
}

footer a {
    color: #EC4899;
}
