html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', 'Arial', sans-serif;
	background-color: #fdebc6;
	color: #4a1e00;
	height: 100vh;
	line-height: 1.6;
}

h2 {
	margin: 0;
	font-size: 2.5rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

img {
	margin: 0;
}

#navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background-color: #4a1e00;
	color: #fdebc6;
	height: 5%;
	position: relative;
}

#navbar-left img {
	width: 10%;
	border-radius: 50%;
}

#navbar-left {
	display: flex;
	align-items: center;
	height: 100%;
	width: 50%;
}

#nav-toggle {
	display: none;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1000;
	margin: 0;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: #fdebc6;
	margin: 3px 0;
	transition: 0.3s;
}

#navbar-right {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 50%;
	justify-content: flex-end;
}

#navbar-right a {
	text-decoration: none;
	color: #fdebc6;
	font-weight: 500;
	letter-spacing: 0.5px;
	cursor: pointer;
}

#navbar-right a:hover {
	opacity: 0.8;
}

.cart-icon {
	position: relative;
	display: flex;
	align-items: center;
}

#home {
	height: 95%;
	width: 100%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url('assets/food.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fdebc6;
}

#home-content {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#home h1 {
	margin: 0;
	text-align: center;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 1.2;
	margin-bottom: 1rem;
}

#home p {
	text-align: center;
	font-size: 1.25rem;
	line-height: 1.8;
	max-width: 600px;
	margin: 0 auto;
	letter-spacing: 0.3px;
}

#home button {
	background-color: #fdebc6;
	color: #4a1e00;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	cursor: pointer;
}

#menu {
	height: 100%;
	width: 100%;
	background-color: #fdebc6;
	color: #4a1e00;
}

#menu-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

#menu table {
	border-collapse: collapse;
	width: 80%;
	max-width: 800px;
	margin: 0 auto;
}

#menu th {
	background-color: #4a1e00;
	color: #fdebc6;
	padding: 1rem;
	text-align: center;
	font-size: 1.2rem;
}

#menu td {
	padding: 0.75rem;
	text-align: center;
	border-bottom: 1px solid #4a1e00;
}

.add-to-cart {
	background-color: #4a1e00;
	color: #fdebc6;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	cursor: pointer;
	font-size: 0.9rem;
}

.add-to-cart:hover {
	background-color: #6b2a00;
}

/* Responsive design for menu */
@media screen and (max-width: 768px) {
	#menu table {
		width: 95%;
		font-size: 0.9rem;
	}

	#menu th,
	#menu td {
		padding: 0.5rem 0.25rem;
	}

	.add-to-cart {
		padding: 0.4rem 0.8rem;
		font-size: 0.8rem;
	}
}

#gallery {
	height: 100%;
	width: 100%;
	background-color: #4a1e00;
	color: #fdebc6;
	padding: 2rem 0;
}

#gallery h2 {
	text-align: center;
	margin-bottom: 2rem;
}

#gallery-content {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.slideshow-container {
	position: relative;
	max-width: 100%;
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
}

.slide {
	display: none;
	width: 100%;
	height: 300px;
	position: relative;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	padding: 0;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fdebc6;
	border: none;
	border-radius: 50%;
	font-size: 1.2rem;
	transition: background-color 0.3s ease;
	z-index: 2;
}

.prev {
	left: 10px;
}

.next {
	right: 10px;
}

.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.dots-container {
	text-align: center;
	margin-top: 1rem;
}

.dot {
	cursor: pointer;
	height: 10px;
	width: 10px;
	margin: 0 5px;
	background-color: rgba(253, 235, 198, 0.5);
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.3s ease;
}

.active,
.dot:hover {
	background-color: #fdebc6;
}

/* Responsive design */
@media screen and (min-width: 768px) {
	.slide {
		height: 400px;
	}

	.prev,
	.next {
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}

	.slideshow-container {
		width: 85%;
	}
}

@media screen and (min-width: 1024px) {
	.slide {
		height: 500px;
	}

	.slideshow-container {
		max-width: 80%;
		width: 80%;
	}
}
#about {
	height: 100%;
	width: 100%;
	background-color: #fdebc6;
	color: #4a1e00;
}

#about-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

#about p {
	text-align: center;
	font-size: 1.25rem;
	line-height: 1.8;
	max-width: 600px;
	margin: 0 auto 1rem auto;
	letter-spacing: 0.3px;
	width: 90%;
}

#contact {
	height: 100%;
	width: 100%;
	background-color: #4a1e00;
	color: #fdebc6;
}

#contact-content {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#contact-content-left {
	height: 100%;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#contact-content-right {
	height: 100%;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;
}

#contact-content-right iframe {
	width: 50%;
	height: 50%;
	border-radius: 0.5rem;
	border: 1px solid #fdebc6;
}

#contact h2 {
	text-align: center;
	margin-bottom: 2rem;
}

.form-group {
	margin-bottom: 1rem;
	width: 100%;
	max-width: 400px;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #fdebc6;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #fdebc6;
	border-radius: 0.25rem;
	background-color: transparent;
	color: #fdebc6;
	font-family: inherit;
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

#contact button {
	background-color: #fdebc6;
	color: #4a1e00;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	cursor: pointer;
	margin-top: 1rem;
	width: 100%;
	max-width: 400px;
}

/* Responsive design for contact */
@media screen and (max-width: 768px) {
	#contact-content {
		flex-direction: column;
	}

	#contact-content-left,
	#contact-content-right {
		width: 100%;
		height: 50%;
	}

	#contact-content-right {
		padding: 0.5rem;
	}
}

/* Responsive design for about */
@media screen and (min-width: 768px) {
	#about p {
		width: 85%;
	}
}

@media screen and (min-width: 1024px) {
	#about p {
		width: 80%;
	}
}

footer {
	background-color: #4a1e00;
	color: #fdebc6;
	padding: 2rem 0;
}

.footer-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.footer-content h3 {
	text-align: center;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.social-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.social-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	text-decoration: none;
	color: white;
	font-weight: 500;
	transition: transform 0.3s ease;
}

.instagram {
	background-color: #e4405f;
}

.facebook {
	background-color: #1877f2;
}

.twitter {
	background-color: #1da1f2;
}

.yelp {
	background-color: #ff6600;
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 400px;
	margin: 0 auto;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(253, 235, 198, 0.3);
}

.hours-item:last-child {
	border-bottom: none;
}

.day {
	font-weight: 500;
}

.time {
	color: rgba(253, 235, 198, 0.8);
}

/* Responsive design for footer */
@media screen and (min-width: 768px) {
	.footer-content {
		flex-direction: row;
		justify-content: space-around;
		align-items: flex-start;
	}

	.social-media,
	.business-hours {
		flex: 1;
		max-width: 400px;
	}
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	#navbar-right {
		position: fixed;
		top: 0;
		right: -100%;
		width: 250px;
		height: 100vh;
		background-color: #4a1e00;
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 5rem;
		z-index: 999;
	}

	#navbar-right a {
		padding: 1rem 2rem;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid rgba(253, 235, 198, 0.2);
	}

	#navbar-right a:last-child {
		border-bottom: none;
	}

	.cart-icon {
		justify-content: center;
	}

	#nav-toggle:checked ~ #navbar-right {
		right: 0;
	}
}

/* Cart Page Styling */
#cart-page {
	min-height: 95vh;
	background-color: #fdebc6;
	color: #4a1e00;
	padding: 2rem 1rem;
}

#cart-page h1 {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2.5rem;
}

#cart-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

#cart-items {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cart-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background-color: white;
	border-radius: 0.5rem;
}

.cart-item-image {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 0.25rem;
}

.cart-item-details {
	flex: 1;
}

.cart-item-name {
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
}

.cart-item-price {
	color: #4a1e00;
	font-weight: 500;
}

.cart-item-quantity {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.quantity-btn {
	background-color: #4a1e00;
	color: #fdebc6;
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quantity-btn:hover {
	background-color: #6b2a00;
}

.quantity-display {
	font-weight: 600;
	min-width: 30px;
	text-align: center;
}

.remove-item {
	background-color: #e4405f;
	color: white;
	border: none;
	padding: 0.5rem;
	border-radius: 0.25rem;
	cursor: pointer;
	font-size: 0.9rem;
}

.remove-item:hover {
	background-color: #c73e5a;
}

#cart-summary {
	background-color: white;
	padding: 1.5rem;
	border-radius: 0.5rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#cart-total {
	text-align: center;
	margin-bottom: 1.5rem;
}

#cart-total h3 {
	font-size: 1.5rem;
	margin: 0;
}

#cart-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.cart-btn {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
}

#clear-cart {
	background-color: #e4405f;
	color: white;
}

#clear-cart:hover {
	background-color: #c73e5a;
}

.checkout-btn {
	background-color: #4a1e00;
	color: #fdebc6;
}

.checkout-btn:hover {
	background-color: #6b2a00;
}

#empty-cart-message {
	text-align: center;
	padding: 3rem 1rem;
}

#empty-cart-message h2 {
	margin-bottom: 1rem;
}

.back-to-menu-btn {
	display: inline-block;
	background-color: #4a1e00;
	color: #fdebc6;
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.25rem;
	margin-top: 1rem;
}

.back-to-menu-btn:hover {
	background-color: #6b2a00;
}

/* Responsive design for cart page */
@media screen and (max-width: 768px) {
	.cart-item {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}

	.cart-item-image {
		width: 100px;
		height: 100px;
	}

	#cart-actions {
		flex-direction: column;
	}

	.cart-btn {
		width: 100%;
	}
}
