@tailwind base;
@tailwind components;
@tailwind utilities;

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.hero-bg {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/1600x900/?kenyan-farm');
    background-size: cover;
    background-position: center;
}