@charset "utf-8";
.menu-hero {
  	background-image: url('image/promo-bg.webp');
  	background-size: cover;
  	background-position: center;
  	height: 500px;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	position: relative;
	filter:contrast(130%)
}

.menu-logo {
	margin:12px;
  	height:190px;
	margin-top: 90px;
}
	
.menu-hero h1 {
	text-align:center;
	font-family: 'Arial', sans-serif;
    font-size: 11px;
    color: White;
	padding: 4px;
}

.promotions {
  	padding: 40px 10px;
  	font-family: 'Cooper Black', sans-serif;
}

.promotions h2 {
  	text-align: center;
  	font-size: 25px;
  	margin-bottom: 30px;
	color:#873C40;
}

.promo-grid {
  	display: flex;
 	flex-wrap: wrap;
  	justify-content: space-between;
  	gap: 30px;
}

.promo-card {
    flex: 0 0 calc(30.60% - 20px);
	max-width: calc(30.60% - 20px);
	box-sizing: border-box;
	width: 100%;
  	background: #fff;
  	border-radius: 10px;
  	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  	overflow: hidden;
  	text-align: center;
  	transition: transform 0.3s ease;
	margin:15px;
}

.promo-card:hover {
  	transform: translateY(-5px);
}

.promo-card img {
  	width:100%;
	height:400px;
	object-fit: cover;
  	display: block;
}

.promo-title {
  	font-size: 18px;
  	padding: 20px 8px 20px;
}

.promo-tags {
  	padding-bottom: 0px;
	font-family: 'Arial', sans-serif;
  	display: flex;
  	justify-content: center;
  	flex-wrap: wrap;
  	gap: 20px;
}

.tag {
  	padding: 10px 15px;
  	font-size: 0.75rem;
  	border-radius: 8px;
  	background-color: #eee;
  	color: #333;
}

.tag.red {
  	background-color: #fce3e3;
  	color: #c00;
}

.tag.gray {
  	background-color: #e0e0e0;
  	color: #555;
}


@media (max-width: 992px) {
  .promo-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}


@media (max-width: 600px) {
  .promo-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

