/*
 * Template 1 — Vegas Gold
 *
 * Inspiration: premium Las Vegas casino lobby. Deep black surfaces, gold
 * accents, charcoal cards, white text. Cabinet Grotesk + Bebas Neue.
 */

body.template-1 {
	--site-bg: #0d0d0d;
	--site-text: #f4f1ea;
	--site-muted: #b8b2a8;
	--site-accent: #c9a84c;
	--site-accent-2: #e6c870;
	--site-surface: #1a1a1a;
	--site-border: rgba(201, 168, 76, 0.18);

	--header-bg: #0d0d0d;
	--header-text: #f4f1ea;
	--header-link: #f4f1ea;
	--header-link-hover: var(--site-accent);
	--header-trust-bg: #000000;
	--header-trust-text: var(--site-accent);

	--footer-bg: #0a0a0a;
	--footer-text: #c9c2b3;
	--footer-heading: var(--site-accent);
	--footer-link: #c9c2b3;
	--footer-divider: rgba(201, 168, 76, 0.25);

	--font-body: "DM Sans", system-ui, sans-serif;
	--font-display: "Bebas Neue", "DM Sans", sans-serif;

	--container-width: 1200px;

	background-color: var(--site-bg);
}

body.template-1 h1,
body.template-1 h2,
body.template-1 h3,
body.template-1 .site-title {
	font-family: var(--font-display);
	letter-spacing: 0.04em;
	color: var(--site-text);
}

/* ---------- Trust bar (top header strip with gold trust message) ---------- */

body.template-1 .site-trust-bar {
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

body.template-1 .site-trust-bar__inner {
	justify-content: center;
}

body.template-1 .site-trust-bar__text {
	font-family: var(--font-body);
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

/* Diamond flourishes wrapping the trust message. */
body.template-1 .site-trust-bar__text::before,
body.template-1 .site-trust-bar__text::after {
	content: "◆";
	display: inline-block;
	margin: 0 0.6rem;
	font-size: 0.55rem;
	color: var(--site-accent);
	transform: translateY(-1px);
}

body.template-1 .site-trust-bar__badges {
	display: none;
}

/* ---------- Sticky main header ---------- */

body.template-1 .site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--header-bg);
	/* Double-line under the header: thin gold + spacer + thin gold. */
	box-shadow:
		0 1px 0 rgba(201, 168, 76, 0.5),
		0 4px 0 rgba(201, 168, 76, 0.12),
		0 5px 0 rgba(201, 168, 76, 0.5);
}

body.template-1 .site-header__inner {
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	position: relative;
}

body.template-1 .site-branding {
	text-align: center;
	position: relative;
}

body.template-1 .site-branding .site-title {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0;
}

body.template-1 .site-branding .site-title a {
	color: var(--site-text);
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 2px;
	padding-bottom: 0.15rem;
	transition: background-size 0.25s ease;
}

body.template-1 .site-branding .site-title a:hover {
	background-size: 100% 2px;
	color: var(--site-accent);
}

body.template-1 .site-branding::after {
	content: "";
	display: block;
	width: 64px;
	height: 2px;
	margin: 0.5rem auto 0;
	background: linear-gradient(90deg, transparent, var(--site-accent), transparent);
}

body.template-1 .site-description {
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--site-muted);
}

body.template-1 .main-navigation ul {
	gap: 2rem;
	justify-content: center;
}

body.template-1 .main-navigation a {
	font-family: var(--font-body);
	font-size: 0.85rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.4rem 0;
	position: relative;
	color: var(--header-link);
}

body.template-1 .main-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background: var(--site-accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

body.template-1 .main-navigation a:hover::after,
body.template-1 .main-navigation a:focus::after {
	transform: scaleX(1);
}

/* Vegas Gold doesn't use the header CTA, top-bonus pill or language selector. */
body.template-1 .site-header__cta,
body.template-1 .site-header__top-bonus,
body.template-1 .site-header__lang {
	display: none;
}

/* ---------- Main content ---------- */

body.template-1 #content,
body.template-1 .site-main {
	color: var(--site-text);
}

body.template-1 .entry-content,
body.template-1 .page-content {
	line-height: 1.75;
	font-size: 1.0625rem;
}

body.template-1 .entry-content p,
body.template-1 .page-content p {
	margin-bottom: 1.5em;
}

body.template-1 .entry-content blockquote,
body.template-1 .page-content blockquote {
	border-left: 3px solid var(--site-accent);
	margin: 2em 0;
	padding: 1rem 1.5rem;
	background: rgba(201, 168, 76, 0.05);
	color: var(--site-accent-2);
	font-size: 1.15rem;
	font-family: var(--font-display);
	letter-spacing: 0.03em;
}

body.template-1 .entry-content blockquote p,
body.template-1 .page-content blockquote p {
	margin-bottom: 0;
}

body.template-1 .entry-content ul,
body.template-1 .page-content ul {
	list-style: none;
	padding-left: 1.5rem;
	margin-bottom: 1.5em;
}

body.template-1 .entry-content ul li,
body.template-1 .page-content ul li {
	position: relative;
	padding-left: 0.5rem;
	margin-bottom: 0.5em;
}

body.template-1 .entry-content ul li::before,
body.template-1 .page-content ul li::before {
	content: "◆";
	position: absolute;
	left: -1.25rem;
	color: var(--site-accent);
	font-size: 0.5rem;
	top: 0.55em;
}

body.template-1 .entry-content ol,
body.template-1 .page-content ol {
	padding-left: 1.5rem;
	margin-bottom: 1.5em;
	counter-reset: tpl1-ol;
	list-style: none;
}

body.template-1 .entry-content ol li,
body.template-1 .page-content ol li {
	position: relative;
	padding-left: 0.5rem;
	margin-bottom: 0.5em;
	counter-increment: tpl1-ol;
}

body.template-1 .entry-content ol li::before,
body.template-1 .page-content ol li::before {
	content: counter(tpl1-ol);
	position: absolute;
	left: -1.5rem;
	color: var(--site-accent);
	font-family: var(--font-display);
	font-size: 0.85rem;
	top: 0.1em;
}

body.template-1 a {
	color: var(--site-accent-2);
}

body.template-1 a:hover,
body.template-1 a:focus {
	color: var(--site-accent);
}

/* Diamond bullet before main page / entry titles. */
body.template-1 .page-title::before,
body.template-1 .entry-title::before {
	content: "◆";
	display: inline-block;
	margin-right: 0.6rem;
	color: var(--site-accent);
	font-size: 0.7em;
	transform: translateY(-0.15em);
}

/* Eyebrow utility: small uppercase gold label above section titles. */
body.template-1 .eyebrow,
body.template-1 .tpl1-eyebrow {
	display: inline-block;
	color: var(--site-accent);
	font-family: var(--font-body);
	font-size: 0.72rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	padding-left: 24px;
	position: relative;
}

body.template-1 .eyebrow::before,
body.template-1 .tpl1-eyebrow::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 16px;
	height: 1px;
	background: var(--site-accent);
}

/* Decorative gold-frame card utility — wraps section content with inset
 * border + corner accent diamonds. */
body.template-1 .tpl1-frame {
	position: relative;
	border: 1px solid var(--site-border);
	padding: 2rem 1.75rem;
	background: rgba(0, 0, 0, 0.35);
}

body.template-1 .tpl1-frame::before,
body.template-1 .tpl1-frame::after {
	content: "◆";
	position: absolute;
	color: var(--site-accent);
	font-size: 0.85rem;
	background: var(--site-bg);
	padding: 0 0.4rem;
	line-height: 1;
}

body.template-1 .tpl1-frame::before {
	top: -7px;
	left: 1.25rem;
}

body.template-1 .tpl1-frame::after {
	bottom: -7px;
	right: 1.25rem;
}

/* VIP ribbon utility — small gold corner ribbon for featured items. */
body.template-1 .is-vip {
	position: relative;
	overflow: hidden;
}

body.template-1 .is-vip::after {
	content: "VIP";
	position: absolute;
	top: 14px;
	right: -34px;
	transform: rotate(45deg);
	background: linear-gradient(180deg, var(--site-accent-2), var(--site-accent));
	color: #0d0d0d;
	font-family: var(--font-display);
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	padding: 0.2rem 2.5rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ---------- Footer (3 columns: About | Casino Links | 18+ Disclaimer) ---------- */

body.template-1 .site-footer {
	background: var(--footer-bg);
	border-top: 1px solid rgba(201, 168, 76, 0.2);
}

body.template-1 .site-footer__inner {
	grid-template-columns: 1.2fr 1fr 1.2fr;
	gap: 0;
}

body.template-1 .site-footer__col {
	padding: 0 2rem;
	position: relative;
}

body.template-1 .site-footer__col + .site-footer__col {
	border-left: 1px solid var(--footer-divider);
}

/* Hide the "Responsible Gaming" column for Vegas Gold (3-column footer). */
body.template-1 .site-footer__col--responsible {
	display: none;
}

body.template-1 .site-footer__heading {
	font-family: var(--font-display);
	font-size: 1rem;
	letter-spacing: 0.18em;
	color: var(--site-accent);
}

body.template-1 .site-footer__brand-title {
	font-family: var(--font-display);
	font-size: 1.4rem;
	letter-spacing: 0.12em;
	color: var(--site-text);
	margin: 0 0 0.5rem;
}

body.template-1 .site-footer__tagline {
	color: var(--footer-text);
	font-size: 0.9rem;
	line-height: 1.5;
}

body.template-1 .site-footer__menu a {
	color: var(--footer-text);
	font-size: 0.9rem;
	letter-spacing: 0.04em;
}

body.template-1 .site-footer__menu a:hover {
	color: var(--site-accent);
	text-decoration: none;
}

body.template-1 .site-footer__disclaimer {
	font-size: 0.85rem;
	color: var(--footer-text);
	line-height: 1.6;
}

body.template-1 .site-footer__social a {
	background: rgba(201, 168, 76, 0.08);
	color: var(--site-accent);
	transition: background 0.2s ease, color 0.2s ease;
}

body.template-1 .site-footer__social a:hover {
	background: var(--site-accent);
	color: #0d0d0d;
}

body.template-1 .site-footer__bottom {
	border-top: 1px solid var(--footer-divider);
	color: var(--footer-text);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* ---------- Mobile ---------- */

@media (max-width: 900px) {
	body.template-1 .site-header__inner {
		flex-direction: row;
		gap: 0.75rem;
		justify-content: space-between;
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}

	body.template-1 .site-branding::after {
		display: none;
	}

	body.template-1 .site-branding .site-title {
		font-size: 1.1rem;
		letter-spacing: 0.08em;
	}

	body.template-1 .site-footer__inner {
		grid-template-columns: 1fr;
	}

	body.template-1 .site-footer__col {
		padding: 0;
	}

	body.template-1 .site-footer__col + .site-footer__col {
		border-left: 0;
		border-top: 1px solid var(--footer-divider);
		padding-top: 1.5rem;
		margin-top: 0.5rem;
	}
}
