/*
 * client.css — Restaurant Sikkim (client/sikkimlu) overrides.
 *
 * Loaded AFTER the child theme's style.css, so these rules win the cascade without touching
 * any shared file. The brand palette (Astra global colours) is set with scripts/set-palette.php;
 * this file carries the pieces the palette command cannot: fonts, the red CTA accent, and
 * bespoke components (the "Did you know?" facts cards).
 *
 * Brand: Deep Navy #0e132d (primary), Red #f4244f (CTA), cream surfaces (#f2f1ed / #eae9e5).
 * Fonts: Playfair Display (display / headings), Outfit (body / UI).
 *
 * NOTE: this file auto-cache-busts by file mtime (functions.php), so no version bump needed.
 */

/* ── Fonts. Final typography is also set in Astra Customizer → Typography; these rules make the
   brand fonts apply on a fresh build. Self-hosting (Astra local fonts / a webfont plugin) is the
   GDPR-friendly follow-up before launch. ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
	--sikkim-navy: #0e132d;
	--sikkim-red: #f4244f;
	--sikkim-border: #d0cbc8;
	--sikkim-body: #75706d;
}

body,
.ast-container,
button,
input,
select,
textarea,
.elementor-widget-text-editor,
.kailaba-hero__sub {
	font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4,
.entry-title,
.elementor-heading-title,
.kailaba-hero__title,
.site-title {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ── Red = the primary call-to-action. The general button colour stays the navy brand accent
   (Astra primary); the "Order Online" style CTAs stand out in red. ── */
.kailaba-hero__btn--primary,
.kailaba-footer__btn--primary {
	background: var(--sikkim-red);
	border-color: var(--sikkim-red);
	color: #fff;
}
.kailaba-hero__btn--primary:hover,
.kailaba-footer__btn--primary:hover {
	background: #d81742;
	border-color: #d81742;
	color: #fff;
}

/* ── "Did you know?" facts cards ([sikkim_facts], on the homepage). ── */
.sikkim-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 20px;
	max-width: 1040px;
	margin: 34px auto 0;
}
.sikkim-fact {
	background: #fff;
	border: 1px solid var(--sikkim-border);
	border-radius: 14px;
	padding: 26px 22px;
	margin: 0;
	text-align: center;
}
.sikkim-fact__title {
	font-size: 1.15rem;
	margin: 0 0 10px;
	color: var(--sikkim-navy);
}
.sikkim-fact__body {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--sikkim-body);
}

/* ── Footer logo image sizing (light-on-dark variant via kailaba_footer_logo). ── */
.kailaba-footer__logo img {
	max-height: 54px;
	width: auto;
}

/* ── Hero: a deeper overlay + text shadow so the title/subtitle stay legible over any photo. ── */
.kailaba-hero__overlay {
	background: linear-gradient(180deg, rgba(9, 10, 20, 0.34) 0%, rgba(9, 10, 20, 0.42) 42%, rgba(9, 10, 20, 0.7) 100%);
}
.kailaba-hero__title,
.kailaba-hero__sub,
.kailaba-hero__kicker {
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

/* ── Shared pill buttons (facts CTA + About Sikkim page). ── */
.sikkim-btn {
	display: inline-block;
	padding: 14px 34px;
	border-radius: 50px;
	font-weight: 600;
	font-family: 'Outfit', system-ui, sans-serif;
	text-decoration: none;
	line-height: 1.2;
}
.sikkim-btn--red { background: var(--sikkim-red); color: #fff; }
.sikkim-btn--red:hover { background: #d81742; color: #fff; }
.sikkim-btn--ghost { border: 2px solid #fff; color: #fff; }
.sikkim-btn--ghost:hover { background: #fff; color: var(--sikkim-navy); }
.sikkim-btn--outline { border: 2px solid var(--sikkim-navy); color: var(--sikkim-navy); }
.sikkim-btn--outline:hover { background: var(--sikkim-navy); color: #fff; }
.sikkim-facts__more { text-align: center; margin-top: 32px; }

/* ── About Sikkim page ([sikkim_about]). ── */
.sikkim-about { color: var(--sikkim-body); }
.sikkim-about__hero {
	position: relative;
	background-size: cover;
	background-position: center;
	min-height: 68vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 90px 20px;
}
.sikkim-about__hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 10, 20, 0.42), rgba(9, 10, 20, 0.66));
}
.sikkim-about__hero-inner { position: relative; max-width: 780px; color: #fff; }
.sikkim-about__eyebrow {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 14px;
	opacity: 0.85;
	margin: 0 0 14px;
}
.sikkim-about__title {
	font-family: 'Playfair Display', Georgia, serif;
	color: #fff;
	font-size: clamp(2rem, 5vw, 3.4rem);
	line-height: 1.1;
	margin: 0 0 18px;
}
.sikkim-about__lead { font-size: 1.15rem; line-height: 1.6; margin: 0; }
.sikkim-about__features {
	max-width: 1100px;
	margin: 0 auto;
	padding: 72px 20px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.sikkim-about__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 46px;
	align-items: center;
}
.sikkim-about__row.is-reversed .sikkim-about__media { order: 2; }
.sikkim-about__media img {
	width: 100%;
	border-radius: 16px;
	display: block;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.sikkim-about__text h2 {
	font-family: 'Playfair Display', Georgia, serif;
	color: var(--sikkim-navy);
	font-size: 1.85rem;
	margin: 0 0 14px;
}
.sikkim-about__text p { font-size: 1.05rem; line-height: 1.65; margin: 0; }
.sikkim-about__cta {
	position: relative;
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 92px 20px;
}
.sikkim-about__cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(9, 10, 20, 0.62);
}
.sikkim-about__cta-inner { position: relative; max-width: 660px; margin: 0 auto; color: #fff; }
.sikkim-about__cta-inner h2 {
	font-family: 'Playfair Display', Georgia, serif;
	color: #fff;
	font-size: 2.2rem;
	margin: 0 0 14px;
}
.sikkim-about__cta-inner p { font-size: 1.1rem; line-height: 1.6; margin: 0; }
.sikkim-about__cta-actions { margin-top: 26px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sikkim-about__credits { text-align: center; font-size: 0.85rem; padding: 22px 20px 44px; margin: 0; }
.sikkim-about__credits a { color: var(--sikkim-navy); }

@media (max-width: 781px) {
	.sikkim-about__row { grid-template-columns: 1fr; gap: 22px; }
	.sikkim-about__row.is-reversed .sikkim-about__media { order: 0; }
}
