/* ==========================================================================
   Menu Page
   ========================================================================== */

.menu-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}

/* Category */
.menu-category__title {
	color: var(--color-accent-gold);  /* gold in dark, overridden in light */
	font-size: 1.25rem;
	font-weight: 700;
	padding-bottom: 0.75rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--color-border);
}

.menu-category__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Menu Item */
.menu-item {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0.75rem 0;
}

.menu-item__name {
	color: var(--color-text-main);
	font-weight: 500;
	white-space: nowrap;
}

.menu-item__line {
	flex: 1;
	border-bottom: 1px dotted var(--color-border);
	min-width: 2rem;
	margin: 0 0.5rem;
	position: relative;
	top: -4px;
}

.menu-item__price {
	color: var(--color-accent-gold);
	font-weight: 700;
	white-space: nowrap;
}

/* Note */
.section--light .menu-category__title {
	color: #d45500;
}

.menu-note {
	margin-top: 3rem;
	padding: 1.5rem 2rem;
	background-color: #faf7f3;
	border: 1px solid #ddd8cf;
	border-radius: 8px;
}

.menu-note p {
	color: var(--color-text-sub);
	font-size: var(--fs-small);
	margin-bottom: 0.5rem;
}

.menu-note p:last-child {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.menu-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}
