* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-image: url(background.jpg);
	background-size: cover;
	background-position: center;
	font-family: Arial, sans-serif;
	color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	background-color: rgba(0, 0, 0, 0.6);
	padding: 20px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}

#logo {
	float: left;
}

#logo h1 {
	font-size: 36px;
}

nav {
	float: right;
}

nav ul {
	list-style: none;
}

nav ul li {
	display: inline-block;
	margin-left: 20px;
}

nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
}

nav ul li a:hover {
	color: #f2c11e;
}

#showcase {
	height: 500px;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#showcase h1 {
	font-size: 64px;
	margin-bottom: 20px;
}

#showcase p {
	font-size: 24px;
	margin-bottom: 20px;
}

.btn {
	display: inline-block;
	background-color: #f2c11e;
	color: #000;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 18px;
	text-decoration: none;
}

.btn:hover {
	background-color: #fff;
	color: #f2c11e;
}

#menu {
	background-color: #fff;
	padding: 50px 0;
}

#menu h1 {
	font-size: 48px;
	text-align: center;
	margin-bottom: 50px;
}

.menu-items {
	display: flex;
	justify-content: center;
	align-items: center
}

.menu-item {
flex-basis: 30%;
margin: 20px;
}

.menu-item img {
width: 100%;
height: auto;
}

.menu-item h3 {
font-size: 24px;
margin: 20px 0;
}

.menu-item p {
font-size: 18px;
margin-bottom: 20px;
}

#order {
background-color: #f2c11e;
padding: 50px 0;
}

#order h1 {
font-size: 48px;
text-align: center;
margin-bottom: 50px;
color: #000;
}

.order-form {
background-color: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.order-form label {
display: block;
font-size: 24px;
margin-bottom: 10px;
}

.order-form select {
display: block;
font-size: 18px;
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
}

.order-form input[type="number"],
.order-form input[type="datetime-local"] {
display: block;
font-size: 18px;
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
border: none;
}

.order-form input[type="submit"] {
display: block;
background-color: #000;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 18px;
text-decoration: none;
margin-top: 20px;
cursor: pointer;
}

#about-us {
background-color: #000;
padding: 50px 0;
}

#about-us h1 {
font-size: 48px;
text-align: center;
margin-bottom: 50px;
color: #fff;
}

#about-us p {
font-size: 24px;
margin-bottom: 20px;
color: #fff;
}

#about-us ul {
list-style: none;
margin-bottom: 20px;
}

#about-us li {
font-size: 24px;
color: #f2c11e;
margin-bottom: 10px;
}

footer {
background-color: rgba(0, 0, 0, 0.6);
padding: 20px;
text-align: center;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}

footer p {
font-size: 18px;
}

@media (max-width: 768px) {
nav ul li {
display: block;
margin: 10px 0;
}
#showcase h1 {
	font-size: 48px;
}

#showcase p {
	font-size: 18px;
}

.menu-item {
	flex-basis: 100%;
}

#order h1 {
	font-size: 36px;
}

.order-form label {
	font-size: 18px;
}

.order-form select,
.order-form input[type="number"],
.order-form input[type="datetime-local"] {
	font-size: 16px;
}

#about-us h1 {
	font-size: 36px;
}

#about-us p,
#about-us li {
	font-size: 18px;
}
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, sans-serif;
	background-color: #f7f7f7;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	background-color: #000;
	color: #fff;
	padding: 20px 0;
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav h1 {
	font-size: 36px;
}

nav ul {
	list-style: none;
	display: flex;
}

nav ul li {
	margin-left: 20px;
}

nav ul li a {
	color:#fff;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 5px;
	}
	
	nav ul li a:hover {
	background-color: #fff;
	color: #000;
	}
	
	section#menu {
	padding: 80px 0;
	}
	
	section#menu h2 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 40px;
	}
	
	.menu-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
	}
	
	.menu-item img {
	flex: 1 1 300px;
	margin-right: 40px;
	max-height: 200px;
	object-fit: cover;
	border-radius: 5px;
	}
	
	.menu-item-title {
	font-size: 24px;
	margin-bottom: 10px;
	}
	
	.menu-item-description {
	font-size: 16px;
	margin-bottom: 10px;
	}
	
	.menu-item-price {
	font-size: 20px;
	font-weight: bold;
	}
	
	footer {
	background-color: #000;
	color: #fff;
	padding: 20px 0;
	text-align: center;
	margin-top: 80px;
	}
	