



* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}
body {
	font-family: Arial, Helvetica, sans-serif;
	color: #222;
	background: #fff;
	line-height: 1.6
}
a {
	text-decoration: none;
	color: inherit
}
.container {
	width: 90%;
	max-width: 1200px;
	margin: auto
}
header {
	background: #111;
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 1000
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 0 10px 0;
}
.logo {
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 2px
}
.nav-links {
	display: flex;
	gap: 20px;
	
}
.nav-links a {
	color: #fff;
	font-size: 15px
}
.hero {
	min-height: 650px;
	background: #000 url( " ../images/bg.jpg") center center no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff
}
.hero-content {
	max-width: 800px;
	padding: 20px
}
.hero h1 {
	font-size: 60px;
	margin-bottom: 20px
}
.hero p {
	font-size: 20px;
	margin-bottom: 30px
}
.btn {
	display: inline-block;
	padding: 14px 32px;
	background: #fff;
	color: #000;
	font-weight: bold
}
.section {
	padding: 80px 0
}
.section-title {
	text-align: center;
	margin-bottom: 50px
}
.section-title h2 {
	font-size: 40px;
	margin-bottom: 10px
}
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center
}
.placeholder {
	
	width: 100%;
	
}
.about-text p {
	margin-bottom: 15px
}
.features {
	background: #f5f5f5
}
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px
}
.card {
	background: #fff;
	padding: 25px;
	text-align: center
}
.card .placeholder {
	height: 220px;
	margin-bottom: 20px
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}
.gallery-grid .placeholder {
	
}
.hours {
	background: url("../images/hours.jpg");
	color: #fff
}
.hours-wrapper {
	max-width: 600px;
	margin: auto;
	text-align: center;
	font-size: 1.3em;
}
.hours-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,.15)
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px
}
.map-placeholder {
	background: #000;
	height: 400px
}
.contact-box {
	padding: 30px;
	background: #f5f5f5
}
footer {
	background: #000;
	color: #fff;
	text-align: center;
	padding: 30px 20px
}
.footer-links {
	margin: 20px 0
}
.footer-links a {
	margin: 0 15px
}
.mobile-order-bar {
	display: none
}

@media(max-width:992px) {
.feature-grid {
	grid-template-columns: 1fr;
}
.gallery-grid {
	grid-template-columns: repeat(2, 1fr)
}
.about-grid, .contact-grid {
	grid-template-columns: 1fr;
}
.hero h1 {
	font-size: 42px;
}
}

@media(max-width:768px) {
.navbar {
	flex-direction: column;
	gap: 0;
}
.nav-links {
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}
.gallery-grid {
	grid-template-columns: 1fr;
}
.hero {
	min-height: 500px;
}
.hero h1 {
	font-size: 34px;
}
.section-title h2 {
	font-size: 30px;
}


@media(max-width:760px) {
body {
	padding-bottom: 70px;
}
.desktop-order-link {
	display: none
}
.mobile-order-bar {
	display: flex;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 9999;
	background: #111;
	box-shadow: 0 -2px 10px rgba(0,0,0,.2)
}
.mobile-order-btn {
	width: 100%;
	text-align: center;
	padding: 18px 20px;
	background: #8f1d11;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase
}
.mobile-order-btn:hover {
	background: #111; color: #fff;
}
