/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    max-width: 420px;
    margin: 0 auto;
    background: #eed39a;
}
.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}
/* Menu Overlay Styles */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	background: #eed39a;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}
.menu-contents {
	background: #eed39a;
	width: 420px;
	height: 100%;
	position: fixed;
	left: calc(50% - 210px);
	top: 0px;
	transform: scaleX(0);
	transform-origin: left center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
}
.menu-overlay.active .menu-contents {
	transform: scaleX(1);
}
/* Close Button */
.close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
	z-index: 10;
}
.close-btn button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	transition: background 0.2s ease;
}
.close-btn button:hover {
	border-radius: 50%;
	border: none !important;
}
.close-icon {
	width: 24px;
	height: 24px;
	color: #666;
}
/* Side Panel Styles */
.side-panel-content {
	padding: 60px 40px 40px;
}        
.panel-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 40px;
	font-family: 'Raleway', sans-serif;
}        
.back-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
}        
.panel-title a {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	letter-spacing: 1px;
}        
.call-section {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	font-family: 'Raleway', sans-serif;
	text-transform: capitalize;
}        
.call-section a {
	text-decoration: none;
	letter-spacing: 1px;
}        
.call-text {
	font-size: 18px;
	color: #333;
	text-decoration: underline;
	font-weight: 500;
}        
.opening-hours {
	margin-bottom: 40px;
}        
.opening-hours h3 {
	font-size: 20px;
	color: #333;
	margin-bottom: 20px;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
	text-transform: capitalize;
	letter-spacing: 1px;
}        
.hours-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}        
.hours-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}        
.day {
	font-size: 16px;
	color: #333;
	font-weight: 400;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
}        
.time {
	font-size: 16px;
	color: #666;
	font-weight: 400;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
}        
.dine-in-menu-btn {
	width: 50%;
	padding: 10px 10px;
	background: #eed39a;
	border: 2px solid #333;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	font-family: 'Raleway', sans-serif;
}        
.dine-in-menu-btn:hover {
	background: #333;
	color: white;
} 
/* Mobile Styles */
@media screen and (max-width: 425px) {
    .header {
        padding: 8px 10px;
        position: fixed;
        width: 100%;
        max-width: 100%;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 359px) {
    .header {
        padding: 6px 8px;
    }
}