.main_menu {
	background-image: url('../images/foodmenu.jpg');
	background-size: cover;
	background-position: left;
	background-repeat: no-repeat;
	width: 100%;
	min-height: 100vh;
	display: flex;
	letter-spacing: 0.2px;
	background-attachment: fixed;
}

.main_menu .meal-card img {
	width: 100%;
	max-height: 300px;
	object-fit: cover;
	border-radius: 12px;
}

.main-title-menu {
	color: aliceblue;
}

.category-buttons {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	padding: 20px;
}


.meal-btn.active {
	background-color: #000000;
	color: white;
	box-shadow: 0 2px 30px rgba(211, 103, 14, 0.9);
	border: 2px solid rgba(211, 103, 14, 0.9);
	transform: scale(1.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-search-div {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: hsla(30, 2%, 17%, 0.6);
	border-radius: 20px;
	padding-top: 20px;
}

.meal-input {
	color: rgb(55, 49, 49);
	background-color: hsla(53, 100%, 50%, 0.9);
	padding: 10px;
	font-size: 1rem;
	border-radius: 10px;
	text-decoration: none;
	border: none;
	width: 50%;
	margin: 1rem;
	outline: none;
}

.meal-input:hover {
	color: rgb(253, 216, 7);
	background-color: rgba(0, 0, 0, 0.9);
	box-shadow: 0 2px 30px rgba(211, 103, 14, 0.9);
	border: 2px solid rgba(211, 103, 14, 0.9);
}

.suggestion-item img {
	width: 100%;
	max-height: 300px;
	object-fit: cover;
	border-radius: 12px;
}

.meal-name {
	background-color: black;
	color: aliceblue;
}

.meal-title {
	color: white;
	background-color: black;
}

.category-description {
	max-width: 600px;
	margin: 6px auto;
	padding: 12px 16px;
	font-size: 1.5rem;
	line-height: 1.6;
	color: aliceblue;
	background-color: #000000;
	border-radius: 5px;
	box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.5);
	word-wrap: break-word;
	overflow: hidden;
	text-align: justify;

}

@media screen and (min-width:769px) {
	.category-buttons {
		grid-template-columns: repeat(2, 1fr);
	}

	.main-content-menu {
		max-width: 80%;
	}
}