/* Custom styles for Gourmet Go - Sprint 1 prototype */
:root{
	--brand: #0d6efd;
	--muted: #6c757d;
}

body{
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
	background: #FF702B;
	color: #212529;
}

header{
	box-shadow: 0 2px 6px rgba(13,110,253,0.08);
}

main{
	min-height: 60vh;
}

.card-img-top{
	height: 200px;
	object-fit: cover;
}

.card:hover{
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Make the search button stand out on small screens */
@media (max-width: 767.98px){
	.btn-lg{padding:0.75rem 1rem;font-size:1rem}
}

/* Small accessibility/spacing tweaks */
form[role="search"] input:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,0.15);}

/* Footer */
footer{border-top:1px solid #e9ecef}

