
body {
	font-family: 'Noto Sans SC', Arial, sans-serif;
	margin: 0;
	background: linear-gradient(120deg, #f3f4f6 0%, #e5e7eb 60%, #d1d5db 100%);
	color: #222;
	min-height: 100vh;
}
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}
.navbar {
	background: rgba(55,65,81,0.98);
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 12px #6b728080;
	backdrop-filter: blur(2px);
}
.logo {
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	text-shadow: 0 2px 8px #6b728044;
	letter-spacing: 2px;
	text-decoration: none;
	transition: color 0.2s;
}
.logo:hover {
	color: #9ca3af;
}
.nav-links {
	list-style: none;
	display: flex;
	gap: 2.2rem;
	margin: 0;
	padding: 0;
}
.nav-links li a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.08rem;
	letter-spacing: 1px;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border 0.2s;
}
.nav-links li a:hover {
	color: #9ca3af;
	border-bottom: 2px solid #9ca3af;
}

html {
	scroll-behavior: smooth;
}
.hero-bg {
	min-height: 92vh;
	background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 8px 32px 0 #6b728033;
	overflow: hidden;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg,rgba(75,85,99,0.82) 60%,rgba(156,163,175,0.60) 100%);
	backdrop-filter: blur(2px);
	z-index: 1;
}
.hero-center {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 0 40px;
}
.hero-title {
	font-size: 3.5rem;
	color: #fff;
	font-weight: 900;
	letter-spacing: 4px;
	text-shadow: 0 6px 32px #6b728099, 0 2px 8px #e5e7eb44;
	margin-bottom: 1.2rem;
}
.hero-sub {
	font-size: 1.5rem;
	color: #e5e7eb;
	margin-bottom: 2.2rem;
	text-shadow: 0 2px 8px #6b728044;
}
.hero-btn {
	font-size: 1.2rem;
	padding: 18px 48px;
	border-radius: 32px;
	background: linear-gradient(90deg, #9ca3af 0%, #6b7280 100%);
	color: #fff;
	font-weight: bold;
	box-shadow: 0 4px 24px #6b728033;
	border: none;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	letter-spacing: 2px;
}
.hero-btn:hover {
	background: linear-gradient(90deg, #6b7280 0%, #9ca3af 100%);
	color: #f3f4f6;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 32px #6b728044;
}

@media (max-width: 900px) {
	.hero-title { font-size: 2.2rem; }
	.hero-sub { font-size: 1.1rem; }
	.hero-btn { font-size: 1rem; padding: 14px 24px; }
}
@media (max-width: 600px) {
	.hero-title { font-size: 1.3rem; }
	.hero-center { padding: 30px 0 20px; }
}
.btn {
	background: linear-gradient(90deg, #fbbf24 0%, #b91c1c 100%);
	color: #fff;
	border: none;
	padding: 14px 38px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 2px 12px #b91c1c22;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	text-decoration: none;
	letter-spacing: 1px;
}
.btn:hover {
	background: linear-gradient(90deg, #b91c1c 0%, #fbbf24 100%);
	color: #fffbe7;
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 6px 24px #b91c1c33;
}
.section {
	padding: 70px 0 60px;
}
.section-alt {
	background: linear-gradient(90deg, #f3f4f6 60%, #e5e7eb 100%);
}
.menu-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	margin-top: 32px;
}
.menu-item {
	background: linear-gradient(120deg, #fff 60%, #e5e7eb 120%);
	border-radius: 18px;
	box-shadow: 0 4px 24px #6b728033, 0 1.5px 8px #9ca3af33;
	padding: 28px 18px 22px;
	text-align: center;
	position: relative;
	transition: box-shadow 0.2s, transform 0.2s;
	border: 2px solid #f3f4f6;
	overflow: hidden;
}
.menu-item:hover {
	box-shadow: 0 8px 32px #6b728033, 0 2px 12px #9ca3af44;
	transform: translateY(-6px) scale(1.03);
	border-color: #9ca3af;
}
.menu-item img {
	width: 100%;
	max-width: 180px;
	border-radius: 12px;
	margin-bottom: 16px;
	box-shadow: 0 2px 12px #b91c1c22;
	transition: transform 0.2s;
}
.menu-item:hover img {
	transform: scale(1.07) rotate(-2deg);
}
.menu-item h3 {
	margin: 0.5em 0 0.2em;
	font-size: 1.25rem;
	color: #374151;
	letter-spacing: 1px;
}
.menu-item p {
	color: #6b7280;
	font-size: 1.05rem;
	margin: 0.2em 0 0.5em;
}
.menu-item .price {
	color: #374151;
	font-weight: bold;
	font-size: 1.15rem;
	background: #f3f4f6;
	display: inline-block;
	padding: 4px 18px;
	border-radius: 16px;
	margin-top: 8px;
	box-shadow: 0 1px 4px #9ca3af22;
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.2em;
	max-width: 420px;
	margin: 0 auto;
	background: #f3f4f6;
	border-radius: 16px;
	box-shadow: 0 2px 12px #6b728011;
	padding: 32px 24px;
}
.contact-form input, .contact-form textarea {
	padding: 12px;
	border: 1.5px solid #9ca3af;
	border-radius: 8px;
	font-size: 1.05rem;
	background: #fff;
	transition: border 0.2s, box-shadow 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
	border: 1.5px solid #6b7280;
	box-shadow: 0 0 0 2px #9ca3af44;
	outline: none;
}
.contact-form button {
	align-self: flex-end;
}
#form-status {
	margin-top: 0.5em;
	font-size: 1.05em;
	color: #b91c1c;
	min-height: 1.5em;
}
.footer {
	background: linear-gradient(90deg, #6b7280 60%, #374151 100%);
	color: #fff;
	text-align: center;
	padding: 28px 0 20px;
	margin-top: 40px;
	letter-spacing: 1px;
	font-size: 1.08rem;
	box-shadow: 0 -2px 12px #6b728022;
}
@media (max-width: 900px) {
	.container { max-width: 98vw; }
	.menu-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
	.menu-list { grid-template-columns: 1fr; }
	.navbar .container { flex-direction: column; gap: 1em; }
	.hero { padding: 60px 0 40px; }
	.hero h1 { font-size: 2.1rem; }
	.section { padding: 40px 0 30px; }
}
@media (max-width: 480px) {
	.logo { font-size: 1.2rem; }
	.hero h1 { font-size: 1.3rem; }
	.container { padding: 0 6px; }
	.contact-form { padding: 18px 6px; }
}
