@charset "utf-8";
body {
	margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #DBD9D0;
}

body a {
	text-decoration: none;
}

.Recipe {
	overflow: hidden;
}

.Menu {
	display: flex;
	align-content: space-between;
	justify-content: space-between;
}

.backbtn img {
	width: 25px;
}

.backbtn {
	margin: 25px 25px 0px;
}

.Back button {
	text-decoration: none;
	border: none;
	background-color: transparent;
	transition: 0.3s;
	cursor: pointer;
}

.three-dots img {
	width: 25px;
}

.three-dots {
	margin: 25px 25px 0px;
}

.Recipes {
	margin: 0px 25px 25px;
}

.Recipes h1 {
	font-size: 30px;
	color: #D86B32;
}

.Search-Bar {
	margin: 0px 21px 21px;
	padding: 5px 12px;
	border-radius: 15px;
	background-color: white;
	border: none;
	box-shadow: 2px 2px 8px 3px rgba(0, 0, 0, 0.2);
}

.Search-Bar form {
	display: flex;
}

.Search-Bar input[type="text"] {
	outline: none;
	border: none;
	box-shadow: none;
	border-radius: 15px;
	font-size: 18px;
	line-height: 2.5;
	flex: 1;
}

.Search-Bar input[type="text"]::placeholder {
	color: #B9B9B9;
}

.Search-Bar button {
	border: none;
	overflow: hidden;
	width: fit-content;
	border-radius: 100%;
	background-color: white;
}

.Search-Bar button img {
	width: 30px;
	height: 30px
}

.Topics {
	margin-top: 20px;
	margin: 20px 25px;
}

.Topics h2 {
	font-size: 15px;
	color: #D86B32;
}

.Assign {
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 10px;
	display: grid;
	margin: 0 30px;
}

.Meal-Box {
	background-color: #D86B32;
	border-radius: 20px;
	box-shadow: 2px 2px 8px 3px rgba(0, 0, 0, 0.2);
}

.Meal-Time-Textbox {
	text-align: center;
	padding: 8px;
}

.Meal-Time-Textbox h3 {
	font-size: 15px;
	color: #313343;
}

.Add {
	margin: 30px auto 15px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.Add-Button {
	border: none;
	overflow: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: white;
	text-align: center;
	box-shadow: 2px 2px 8px 3px rgba(0, 0, 0, 0.2);
}

.Add-Button h4 {
	line-height: 0;
	margin: auto;
	font-weight: bolder;
	font-size: 15px;
}

.Add-Button:active,
.Add-Button:hover {
	background-color: lightgray;
}

.carousel {
	overflow-x: auto;
	width: 100%;
}

.carousel-container {
	position: relative;
	display: flex;
	width: 55%;
	margin-left: 25px;
	margin-right: 25px;
	height: 320px;
	transition: transform 1s ease;
	white-space: nowrap;
}

.carousel-slide {
	flex: 0 0 100%;
	overflow: hidden;
	margin: 0px 10px 0px 0px;
	width: 100%;
	height: 300px;
	position: relative;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	box-shadow: 2px 2px 8px 3px rgba(0, 0, 0, 0.2);
}

.carousel-textbox {
	position: absolute;
	left: 0;
	bottom: 0;
	padding-left: 15px;
	text-align: left;
	line-height: 0;
}

.carousel-textbox h5 {
	color: white;
	font-size: 15px;
}

.Breakfast-Foods {
	background-image: url("Images/dish.jpg");
}

.Lunch-Foods {
	background-image: url("Images/dish2.jpg");
}

.Dinner-Foods {
	background-image: url("Images/salad2.jpg");
}

.Featured {
	margin-top: 0;
}

.Cuisine {
	margin-left: 25px;
	margin-right: 25px;
	display: grid;
	grid-row-gap: 20px;
	grid-template-rows: 1fr 1fr 1fr;
}

.Cuisine-Box {
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	height: 100px;
	text-align: center;
	padding: auto;
	line-height: 0;
}

.Italian {
	background-image: url("Images/italianFood-horizontal.jpg");
}

.Japanese {
	background-image: url("Images/japaneseFood-horizontal.jpg");
}

.Chinese {
	background-image: url("Images/chineseFood-horizontal.jpg");
}

.Cuisine-Box h6 {
	font-size: 22px;
	text-align: center;
	color: white;
}

.Suggestions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-gap: 15px;
	margin-left: 25px;
	margin-right: 25px;
}

.Food-Box {
	background-color: white;
	border-radius: 20px;
}

.Food-Image {
	border-radius: 100%;
	width: fit-content;
	overflow: hidden;
	margin: 10px auto 5px;
	display: flex;
}

.Food-Image img {
	height: 110px;
	width: 110px;
}

.Food-Name {
	margin: 0px 12px;
	padding: auto;
	text-align: center;
	background-color: transparent;
}

.Food-Name h7 {
	font-size: 13px;
	font-weight: bold;
	color: #313343;
}

.Food-Bottom {
	margin: auto;
	padding: 10%;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
}

.Food-Info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-column-gap: 2px;
	height: fit-content;
}

.Box {
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	align-content: center;
	padding: auto;
	width: fit-content;
}

.Box p {
	font-size: 12px;
	color: #6F6F6F;
	line-height: 0;
}

.Box img {
	height: 20px;
	padding: auto;
	margin: auto;
}

.Add-Orange {
	margin-top: 20px;
}

.Add-Button-Orange {
	border: none;
	overflow: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #D86B32;
	text-align: center;
}

.Add-Button-Orange h4 {
	line-height: 0;
	margin: auto;
	font-weight: bolder;
	font-size: 15px;
	color: white;
}

.Add-Button-Orange:active,
.Add-Button-Orange:hover {
	background-color: orange;
}

.View-More-Container {
	margin: 25px;
}

.View-More {
	border: none;
	background-color: #3C6C60;
	color: white;
	border-radius: 15px;
	width: 100%;
	text-align: center;
	padding: 25px;
	font-size: 20px;
}

.View-More:active,
.View-More:hover {
	background-color: #254136;
}

/*-------------Modal-------------*/

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
}

.modal-content {
	background-color: white;
	padding: 20px;
	border-radius: 35px;
	position: absolute;
	top: 76%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	z-index: 1000;
}

.close {
	color: #aaa;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover {
	color: #000;
}

.Close-Button-Menu {
	text-align: right;
}

.Question-Mark {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.Question-Mark-Frame {
	border-radius: 50%;
	overflow: hidden;
	width: 50px;
	height: 50px;
	background-color: #D86B32;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.Question-Mark-Frame h8 {
	color: white;
	font-weight: bolder;
	font-size: 40px;
	padding: 20px;
}

.Title-Textbox {
	margin: 20px 0px;
	text-align: center;
	align-items: center;
}

.Title-Textbox h7 {
	font-size: 30px;
	font-weight: 700;
	color: #D86B32;
}

.Title-Textbox p {
	color: #1B2727;
	font-size: 13px;
}

.Inputs {
	padding: auto;
}

.Inputs-Box {
	display: flex;
	justify-content: center;
	align-items: center;
	width: inherit;
}

.Inputs-Box input {
	font-size: 18px;
	text-align: center;
	width: 70%;
	justify-content: center;
	align-items: center;
	padding: 12px;
	border: 1px solid #707070;
	box-shadow: none;
	border-radius: 8px;
}

.Inputs-Box input::placeholder {
	color: #B9B9B9;
}

.Modal-Add {
	padding: auto;
	margin: 10px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.Modal-Add-Button {
	border-color: #3C6C60;
	background-color: #3C6C60;
	text-align: center;
	padding: 12px;
	border-radius: 8px;
	width: 80%;
}

.Modal-Add-Button h9 {
	color: white;
	font-size: 18px;
	font-weight: 600;
}

.Modal-Add-Button:active,
.Modal-Add-Button:hover {
	background-color: darkgreen;
	border-color: darkgreen;
}


