/* Hotel Restaurant — Restorant & Buffet */

.nuss-child-hotel-restaurant {
	font-family: 'Jost', sans-serif;
	color: var(--color-text);
	line-height: 1.8;
	margin-top: 120px;
	width: 100%;
}

.nuss-child-hotel-restaurant h2,
.nuss-child-hotel-restaurant h3,
.nuss-child-hotel-restaurant h4,
.nuss-child-hotel-restaurant strong {
	font-family: 'Cormorant Garamond', serif;
	color: var(--color-heading);
	font-weight: 400;
}

.nuss-child-hotel-restaurant__container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: start;
}

/* Left column */
.nuss-child-hotel-restaurant__meta {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: var(--color-accent);
	display: block;
	margin-bottom: 10px;
}

.nuss-child-hotel-restaurant__title {
	font-size: clamp(36px, 5vw, 52px);
	line-height: 1.1;
	margin: 0 0 30px;
}

.nuss-child-hotel-restaurant__story-p {
	font-size: 16px;
	font-weight: 300;
	color: rgba(140, 122, 94, 0.85);
	margin-bottom: 20px;
	text-align: justify;
}

.nuss-child-hotel-restaurant__story-p:last-child {
	margin-bottom: 0;
}

.nuss-child-hotel-restaurant__story-p strong {
	color: var(--color-heading);
}

.nuss-child-hotel-restaurant__perks-box {
	margin-top: 35px;
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	padding-top: 25px;
}

.nuss-child-hotel-restaurant__perks-heading {
	font-size: 18px;
	letter-spacing: 1px;
	margin: 0 0 20px;
}

.nuss-child-hotel-restaurant__perks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 20px;
}

.nuss-child-hotel-restaurant__perks li {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	font-weight: 300;
}

.nuss-child-hotel-restaurant__perks li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-weight: 600;
}

/* Menu card */
.nuss-child-hotel-restaurant__menu-card {
	background-color: var(--color-bg-secondary);
	border: 1px solid rgba(201, 168, 76, 0.2);
	padding: clamp(30px, 4vw, 50px);
	position: relative;
}

.nuss-child-hotel-restaurant__menu-title {
	font-size: 24px;
	text-align: center;
	letter-spacing: 1.5px;
	margin: 0 0 25px;
	text-transform: uppercase;
}

.nuss-child-hotel-restaurant__schedule-item {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 15px;
	border-bottom: 1px dashed rgba(140, 122, 94, 0.15);
	padding-bottom: 5px;
}

.nuss-child-hotel-restaurant__schedule-item:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.nuss-child-hotel-restaurant__meal-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 19px;
	color: var(--color-heading);
	font-weight: 500;
}

.nuss-child-hotel-restaurant__meal-time {
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.5px;
}

.nuss-child-hotel-restaurant__divider {
	height: 1px;
	background-color: var(--color-accent);
	width: 40px;
	margin: 40px auto;
	opacity: 0.4;
}

.nuss-child-hotel-restaurant__highlights {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.nuss-child-hotel-restaurant__highlights li {
	font-size: 15px;
	font-weight: 300;
	margin-bottom: 12px;
	color: rgba(240, 230, 200, 0.85);
}

.nuss-child-hotel-restaurant__highlights li:last-child {
	margin-bottom: 0;
}

/* Footer */
.nuss-child-hotel-restaurant__footer {
	margin-top: 60px;
	text-align: center;
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
	padding-bottom: 40px;
}

.nuss-child-hotel-restaurant__quote {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(20px, 3vw, 24px);
	font-style: italic;
	max-width: 850px;
	margin: 0 auto;
	color: var(--color-heading);
	line-height: 1.4;
}

@media (max-width: 960px) {
	.nuss-child-hotel-restaurant__container {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}

@media (max-width: 540px) {
	.nuss-child-hotel-restaurant__perks {
		grid-template-columns: 1fr;
		gap: 12px 0;
	}

	.nuss-child-hotel-restaurant__schedule-item {
		flex-direction: column;
		align-items: center;
		gap: 2px;
		text-align: center;
	}
}
