@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Hero section background */
.hero-background {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://png.pngtree.com/thumb_back/fw800/background/20240529/pngtree-baked-chicken-meat-poultry-fresh-meal-food-snack-on-the-table-image_15735150.jpg') center/cover no-repeat;
}
/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Delay animations */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Meal card hover effect */
.meal-card-hover:hover .meal-image {
    transform: scale(1.05);
}

/* Testimonial styling */
.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 125, 51, 0.1);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
    line-height: 1;
}