/* =============================================
   MENU BOARD - FILTER & CARDS
   ============================================= */

/* Menu Filter Buttons */
.menu-filters {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.menu-filter-btn {
	padding: 12px 25px;
	background-color: transparent;
	color: #2c1810;
	border: 2px solid #d4a574;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.menu-filter-btn:hover,
.menu-filter-btn.active {
	background-color: #d4a574;
	color: #fff;
	box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* Menu Items Grid */
.menu-items-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px 120px -10px;
	padding: 30px 10px;
	justify-content: center;
	min-height: 300px;
}

/* Menu Card Container */
.menu-item {
	padding: 15px;
	margin-bottom: 20px;
	display: flex;
	flex-basis: auto;
	box-sizing: border-box;
}

.col-xs-6 {
	padding: 10px;
	box-sizing: border-box;
}

.col-sm-4 {
	padding: 10px;
	box-sizing: border-box;
}

.col-md-3 {
	padding: 10px;
	box-sizing: border-box;
}

/* Menu Card */
.menu-card {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-color: #f5f5f5;
}

.menu-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Menu Card Image */
.menu-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover .menu-card-img {
	transform: scale(1.1);
}

/* Menu Card Overlay */
.menu-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(212, 165, 116, 0.85) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover .menu-card-overlay {
	opacity: 1;
}

/* Menu Card Content */
.menu-card-content {
	text-align: center;
	color: #fff;
	padding: 20px;
	width: 100%;
}

/* Menu Card Title */
.menu-card-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 10px 0;
	letter-spacing: 0.5px;
	color: #fff;
	line-height: 1.4;
}

/* Menu Card Price */
.menu-card-price {
	font-size: 18px;
	font-weight: 700;
	color: #d4a574;
	margin: 0 0 15px 0;
	letter-spacing: 1px;
}

/* Add to Cart Button */
.menu-btn-add-cart {
	background-color: #d4a574;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.menu-btn-add-cart:hover {
	background-color: #c99560;
	transform: scale(1.05);
}

/* Responsive Menu Items Grid */
/* Desktop: 4 columns */
@media (min-width: 992px) {
	.menu-item {
		width: calc(25% - 20px);
	}
	
	.menu-card {
		height: 300px;
	}
	
	.menu-items-grid {
		margin-bottom: 150px;
		padding-bottom: 50px;
	}
}

/* Tablet: 3 columns */
@media (min-width: 768px) and (max-width: 991px) {
	.menu-item {
		width: calc(33.333% - 20px);
	}
	
	.menu-card {
		height: 270px;
	}
	
	.menu-card-title {
		font-size: 14px;
	}
	
	.menu-card-price {
		font-size: 16px;
	}
	
	.menu-items-grid {
		margin-bottom: 140px;
		padding-bottom: 40px;
	}
}

/* Medium Mobile: 2 columns */
@media (min-width: 576px) and (max-width: 767px) {
	.menu-item {
		width: calc(50% - 20px);
	}
	
	.menu-card {
		height: 240px;
	}
	
	.menu-card-title {
		font-size: 13px;
	}
	
	.menu-card-price {
		font-size: 15px;
	}
	
	.menu-btn-add-cart {
		padding: 8px 15px;
		font-size: 11px;
	}
	
	.menu-items-grid {
		margin-bottom: 130px;
		padding-bottom: 30px;
	}
}

/* Small Mobile: 2 columns */
@media (min-width: 481px) and (max-width: 575px) {
	.menu-item {
		width: calc(50% - 20px);
	}
	
	.menu-card {
		height: 220px;
	}
	
	.menu-card-title {
		font-size: 12px;
	}
	
	.menu-card-price {
		font-size: 14px;
	}
	
	.menu-btn-add-cart {
		padding: 6px 12px;
		font-size: 10px;
	}
	
	.menu-items-grid {
		margin-bottom: 120px;
		padding-bottom: 25px;
	}
}

/* Extra Small Mobile: full width or 2 cols based on space */
@media (max-width: 480px) {
	.menu-item {
		width: calc(50% - 20px);
	}
	
	.menu-card {
		height: 200px;
	}
	
	.menu-card-title {
		font-size: 11px;
	}
	
	.menu-card-price {
		font-size: 12px;
	}
	
	.menu-btn-add-cart {
		padding: 6px 12px;
		font-size: 10px;
	}
	
	.menu-filters {
		gap: 8px;
		padding: 0 10px;
	}
	
	.menu-filter-btn {
		padding: 8px 12px;
		font-size: 11px;
	}
	
	.menu-filter-btn i {
		display: none;
	}
	
	.menu-items-grid {
		margin-bottom: 110px;
		padding-bottom: 20px;
	}
}
