/* =========================================================
   NAMPA BOWL — STYLESHEET Version 4
   Order: General, Hero, Pricing, Events, Parties, Cafe,
          Fun, More
   ========================================================= */

/* =====================
   GENERAL
   ===================== */
:root {
	/* Core theme */
	--BG-BLUE: #021347; /* light/medium gray page background */
	--CARD-GRAY: #616164; /* light gray card background */
	--BAND-BLUE: #021347; /* medium blue band */
	--OUTLINE: #000000; /* black outline */
	--TEXT: #f0f0f2;

	/* Existing tokens */
	--DARK-BLUE: #0a3d91;
	--DARK-RED: #b22222;
	--ORANGE: #f7941e;
	--AQUA: #00c6d7;
	--WHITE: #ffffff;
	--MAX-WIDTH: 1100px;

	margin-block-start: 0;
	padding: 0;
}
h2,
h3,
h4 {
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 1);
}

h2 {
	color: var(--ORANGE);
}

h3 {
	color: var(--ORANGE);
}

h4 {
	color: var(--ORANGE);
}
h4,
h5,
h6 {
	margin-block-start: 0;
	margin-block-end: 0.4em;
}
* {
	box-sizing: border-box;
}

body {
	font-family:
		"Open Sans",
		system-ui,
		-apple-system,
		sans-serif;
	margin: 0;
	color: var(--TEXT);
	line-height: 1.5;
	background: var(--BG-BLUE);
}

html,
body {
	overflow-x: hidden;
}

.container {
	max-width: var(--MAX-WIDTH);
	margin: 0 auto;
	padding: 24px;
}

/* Header / Nav */
.site-header {
	background: var(--BG-BLUE);
	border-bottom: 3px solid var(--OUTLINE);
	position: sticky;
	top: 0;
	z-index: 9998;
	box-shadow: none;
}

.header-inner {
	position: relative;
}

.brand {
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	color: var(--TEXT);
	text-decoration: none;
	font-size: 1.25rem;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Desktop navigation */
#mainNav {
	display: flex;
	position: static;
	flex-direction: row;
	gap: 18px;
	background: transparent;
	padding: 0;
	margin: 0;
}

#mainNav a {
	color: var(--TEXT);
	text-decoration: none;
	padding: 6px 8px;
	border-radius: 6px;
}

#mainNav a:hover {
	background: rgba(255, 255, 255, 0.14);
}

#navToggle {
	display: none;
	background: none;
	border: 0;
	padding: 8px;
	color: #fff;
	cursor: pointer;
}

/* Buttons / Links */
.btn-primary {
	background: var(--ORANGE);
	color: var(--WHITE);
	padding: 10px 16px;
	border-radius: 10px;
	border: none;
	text-decoration: none;
	font-weight: 600;
}
.btn-secondary {
	background: transparent;
	color: var(--BG-BLUE);
	padding: 8px 14px;
	border-radius: 10px;
	border: 2px solid rgba(10, 61, 145, 0.08);
	text-decoration: none;
}
.link {
	display: inline-block;
	margin-top: 10px;
	color: var(--TEXT);
	text-decoration: none;
}

/* Make in-page anchors land with space under the sticky header */
section[id] {
	scroll-margin-top: 90px; /* adjust to taste */
}

/* Typography tweaks (site-wide paragraphs) */
p {
	line-height: 1.2;
	margin-top: 0.4em;
	margin-bottom: 0.4em;
}

/* Footer */
.site-footer h3,
.site-footer h4 {
	margin-top: 0;
}
.site-footer h3 {
	color: var(--ORANGE);
}
.site-footer {
	background: var(--BG-BLUE);
	color: #fff;
	padding: 36px 24px;
	margin-top: 28px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	column-gap: 60px;
	row-gap: 24px;
}
@media (max-width: 700px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}
.site-footer a {
	color: #fff;
	text-decoration: none;
}
.social a {
	display: inline-block;
	margin-right: 8px;
	padding: 6px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
}
.footer-hours {
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
}

.footer-hours li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	white-space: nowrap;
}

/* =====================
   HERO
   ===================== */
.hero {
	height: 80vh;
	min-height: 380px;
	background: url("assets/hero/hero-index.jpg") center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	color: var(--WHITE);
}
.hero .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(47, 95, 168, 0.55),
		rgba(0, 0, 0, 0.35)
	);
}
.hero-content {
	position: relative;
	z-index: 2;
	padding: 40px;
}
.hero h1 {
	font-family: "Montserrat", sans-serif;
	font-size: 3rem;
	margin: 0 0 12px;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 1);
}
.lead {
	font-size: 1.05rem;
	margin-bottom: 18px;
}

/* Page-specific hero backgrounds (optional; add per page as needed)
   Example:
   body.page-events .hero{
     background-image:url('assets/YourImage.jpg');
     background-position:center top;
     min-height:65vh;
   }
*/

body.page-events .hero {
	background-image: url("assets/hero/hero-events.jpg");
	background-position: center top;
	min-height: 80vh;
}

body.page-cafe .hero {
	background-image: url("assets/hero/hero-cafe1.jpg");
	background-position: center top;
	min-height: 80vh;
}

body.page-fun .hero {
	background-image: url("assets/hero/hero-fun.jpg");
	background-position: center top;
	min-height: 80vh;
}

/* =====================
   HOME (General sections)
   ===================== */

/* HOURS - OPEN BOWLING */
.hours-box {
	background: var(--CARD-GRAY);
	padding: 12px;
	border-radius: 12px;
	border: 2px solid var(--outline);
	box-shadow: none;
}

.hours-row {
	display: flex;
	justify-content: space-between;
	padding: 3px 0;
	line-height: 1.15;
	font-size: 0.95rem;
	border-bottom: 1px solid #eee;
}
.hours-row:last-child {
	border-bottom: none;
}

/* Style only the day names */
.hours-row .day {
	font-weight: 500;
	font-size: 1.15rem;
	color: var(--TEXT);
}

/* Tuesday special row */
.hours-row.with-sub {
	flex-direction: column;
}
.hours-row.with-sub .row-main {
	display: flex;
	justify-content: space-between;
}
.hours-row.with-sub .subtime {
	text-align: right;
	margin-top: 4px;
	font-size: 0.95rem;
}

/* ABOUT */
.about {
	display: flex;
	gap: 24px;
	align-items: center;
	padding: 36px 24px;
}
.about-left {
	flex: 1;
}
.about-right {
	flex: 1;
}
.about-right img {
	max-width: 100%;
	border-radius: 12px;
	display: block;
}

/* REVIEWS */
.reviews {
	padding: 24px;
}
.reviews blockquote {
	background: var(--CARD-GRAY);
	border: 2px solid var(--outline);
	box-shadow: none;
}

/* =====================
   PRICING
   ===================== */
.pricing {
	padding: 20px 10px;
	background: transparent;
}
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 10px;
	padding: 10px;
}

.content-card {
	background: var(--CARD-GRAY);
	padding: 12px;
	border: none;
	border-radius: 18px;
	position: relative;
	overflow: hidden;
	box-shadow: none;
}

/* Parties: full-width stacked company/team packages */
.pricing-grid-two {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

/* =====================
   EVENTS
   ===================== */
.events-snapshot h2,
.events-page h2 {
	margin-bottom: 8px;
}

.events-note,
.events-season {
	color: var(--TEXT);
	margin-top: 0;
	margin-bottom: 12px;
	line-height: 1.25;
}
.events-season {
	opacity: 0.9;
}

.events-box {
	background: var(--CARD-GRAY);
	padding: 12px;
	border-radius: 12px;
	border: none !important;
	box-shadow: none !important;
}

.event-item {
	display: flex;
	background: var(--CARD-GRAY);
	gap: 12px;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
.event-item:last-child {
	border-bottom: none;
}
.event-left {
	flex: 1;
}

.event-title {
	font-family: "Montserrat", sans-serif;
	margin: 0 0 4px;
	font-size: 1rem;
	color: var(--TEXT);
}

.event-blurb {
	margin: 0;
	line-height: 1.25;
}

.event-right {
	text-align: right;
	white-space: nowrap;
}

/* date matches title */
.event-right .event-date {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	color: var(--TEXT);
	margin: 0;
}

/* time stays smaller/secondary */
.event-right .event-time {
	font-size: 0.95rem;
	opacity: 0.9;
	margin: 0;
	color: var(--TEXT);
}

.event-item.today {
	background: rgba(75, 75, 77, 0.1);
	border-radius: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.impact-tag {
	display: inline-block;
	margin-top: 6px;
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1;
}
.impact-none {
	color: var(--TEXT);
	background: rgba(248, 0, 45, 0.983);
	border: 1px solid rgba(40, 1, 8, 0.983);
}
.impact-limited {
	color: #000;
	background: rgba(243, 178, 14, 0.991);
	border: 1px solid rgba(247, 148, 30, 0.35);
}

.impact-banner {
	border-radius: 10px;
	padding: 10px 12px;
	margin-bottom: 12px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.impact-banner.limited {
	background: rgba(243, 178, 14, 0.991);
	border-left: 6px solid var(--ORANGE);
}
.impact-banner.limited h3 {
	margin: 0 0 4px;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	color: #340800;
	text-shadow: none;
}
.impact-banner.limited p {
	margin: 0;
	color: #340800;
	line-height: 1.25;
}

.events-more {
	text-align: center;
	margin-top: 10px;
}

/* Events v2 – remove flyer container borders */
body.page-events .event-flyer {
	border: none !important;
	box-shadow: none !important;
	background: transparent;
}

/* ==================================
   EVENTS (v2 Modern Feel)
   Removes borders on cards/boxes only.
   Keeps borders on banners, warning tags, and pills.
   ================================== */

/* Page-specific neutral background (optional but helps modern look) */
body.page-events {
	background: var(--BG-BLUE);
}

/* Modern "card" treatment for events content */
body.page-events .events-box,
body.page-events .event-item,
body.page-events .events-snapshot {
	border: none !important;
	background: var(--BG-BLUE); /* slight contrast vs page background */
	border-radius: 14px;
	padding: 0; /* let .event-item handle spacing */
	margin-bottom: 14px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* If your events list is already white, this just increases spacing */
body.page-events .event-item {
	padding: 14px 14px;
	margin: 12px 0;
}

/* Clean up separators inside event cards */
body.page-events .event-item hr,
body.page-events .event-item .divider {
	border: none;
	height: 1px;
	background: rgba(0, 0, 0, 0.08);
}

/* Subtle modern grouping — closer to page background */
body.page-events .event-item {
	background: var(--CARD-GRAY);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Optional: slightly emphasize "today" without borders */
body.page-events .event-item.today {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

/* Events v2 – remove image borders */
body.page-events img {
	border: none !important;
	outline: none !important;
	border-radius: 12px;
}

/* ----------------------------------
   Keep borders for IMPORTANT elements
   ---------------------------------- */

/* Callout banner (yellow) stays outlined */
body.page-events .impact-banner {
	border: 2px solid #000 !important;
	box-shadow: none; /* banners should feel "posted" not floating */
}

/* Keep warning tags outlined (NO OPEN BOWLING and LIMITED LANES) */
body.page-events .impact-tag {
	border: 2px solid #000 !important;
	box-shadow: none;
}

/* If you use pill buttons/links for filtering/jump menu, keep borders */
body.page-events .submenu a {
	border: none;
	box-shadow: none;
}

/* Buttons keep outline (matches your rule) */
body.page-events button,
body.page-events .btn,
body.page-events .button {
	border: none;
}

/* Flyers */
.event-flyer {
	margin-top: 6px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 12px;
	text-align: center;
}

.flyer-thumb {
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	width: 100%;
}

.flyer-thumb img {
	width: 100%;
	max-width: 520px;
	border: 2px solid var(--OUTLINE);
	border-radius: 10px;
	display: block;
	margin: 0 auto;
	background: #fff;
}

.new-ribbon {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 6px 10px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 0.85rem;
	background: var(--BAND-BLUE);
	color: #fff;
	border: 2px solid var(--OUTLINE);
}

/* Flyer links */
.flyer-inline {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	font-weight: 700;
}

.flyer-label {
	font-weight: 600;
}

.flyer-sep {
	opacity: 0.6;
}

.event-flyer .flyer-link,
.event-flyer a.link {
	all: unset;
	display: inline;
	font-weight: 700;
	line-height: 1.1;
	color: #8fc5ff;
	text-decoration: underline;
	cursor: pointer;
	vertical-align: baseline;
}

.event-flyer .flyer-link:hover,
.event-flyer a.link:hover {
	text-decoration: none;
	background: transparent;
}

.event-flyer .flyer-link:focus,
.event-flyer .flyer-link:active,
.event-flyer .flyer-link:focus-visible,
.event-flyer a.link:focus,
.event-flyer a.link:active,
.event-flyer a.link:focus-visible {
	outline: none;
	box-shadow: none;
	border: none;
	background: transparent;
}

.flyer-pdf {
	cursor: pointer;
}

/* Flyer lightbox */
.flyer-lightbox {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.75);
	z-index: 9999;
	padding: 18px;
}

.flyer-lightbox.show {
	display: flex;
}

.flyer-lightbox-inner {
	max-width: min(980px, 100%);
	max-height: 90vh;
	position: relative;
	background: transparent;
	padding: 0;
	border: 0;
	box-shadow: none;
}

.flyer-lightbox-inner img {
	width: 100%;
	height: auto;
	max-height: 90vh;
	display: block;
	border: 0;
	box-shadow: none;
	border-radius: 12px;
	background: transparent;
}

.flyer-close {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: none;
	box-shadow: none;
	background: rgba(255, 255, 255, 0.9);
	font-weight: 900;
	cursor: pointer;
}

/* Events lightbox override: keep overlay dark, inner content transparent */
body.page-events .flyer-lightbox {
	background: rgba(0, 0, 0, 0.75);
}

body.page-events .flyer-lightbox-inner,
body.page-events .flyer-lightbox-inner img {
	background: transparent;
	border: 0;
	box-shadow: none;
}

body.page-events .flyer-lightbox * {
	outline: none;
}

/* =====================
   PARTIES
/* =====================
   PARTIES
   ===================== */
body.page-parties .hero h1 {
	color: var(--TEXT);
}
body.page-parties h1 {
	color: var(--ORANGE);
}

/* =====================
   Leagues
   ===================== */
body.page-leagues .hero h1 {
	color: var(--TEXT);
}
body.page-leagues h1 {
	color: var(--ORANGE);
}
/* =====================
   CAFE
   ===================== */

/* Cafe page layout tweaks */
body.page-cafe main {
	padding-bottom: 24px;
}

/* Full menu board images */
body.page-cafe .menu-boards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 14px;
}
@media (max-width: 900px) {
	body.page-cafe .menu-boards {
		grid-template-columns: 1fr;
	}
}
body.page-cafe .menu-board img {
	width: 100%;
	height: auto;
	display: block;
	border: 2px solid var(--outline);
	border-radius: 12px;
	background: #fff;
}

/* ===== Cafe Accordion Submenu (Section -> Items w/ Prices) ===== */
body.page-cafe .cafe-submenu {
	width: 45%; /* half width */
	max-width: 520px; /* keeps it from getting too wide on big screens */
	margin: 3px auto 6px; /* centers it */
	padding: 0;
	background: transparent;
	border: none;
	position: static !important; /* reset any previous sticky/absolute */
	top: auto !important;
	z-index: 50;
}

body.page-cafe .cafe-submenu-accordion ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

/* Blue pill section header */
body.page-cafe .submenu-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;

	background: var(--CARD-GRAY);
	color: #fff;
	border: 2px solid var(--outline);
	border-radius: 999px; /* oval */
	padding: 12px 18px;

	cursor: pointer;
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	letter-spacing: 0.5px;
}

/* + / − icon */
body.page-cafe .submenu-icon {
	width: 28px;
	min-width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	font-weight: 900;
	line-height: 1;
}

body.page-cafe .submenu-panel {
	display: none;
	padding: 8px 6px 2px;
}

body.page-cafe .submenu-panel.is-open {
	display: block !important;
}

/* Item rows: name left, price right. NO borders */
body.page-cafe .submenu-item {
	display: grid;
	grid-template-columns: 1fr 140px; /* fixed price column */
	align-items: baseline;
	gap: 1px;

	padding: 2px 2px;
	text-decoration: none;
	color: var(--TEXT);
	border: none !important;
	background: transparent !important;
}

body.page-cafe .submenu-item:hover {
	text-decoration: underline;
}

body.page-cafe .submenu-item .si-name {
	font-weight: 700;
}

body.page-cafe .submenu-item .si-price {
	text-align: right;
	justify-self: end;
	white-space: nowrap;
	font-weight: 800;
}

@media (max-width: 520px) {
	body.page-cafe .submenu-item {
		grid-template-columns: 1fr;
	}
	body.page-cafe .submenu-item .si-price {
		text-align: left;
		justify-self: start;
		opacity: 0.9;
	}
}

body.page-cafe .cafe-submenu-accordion .submenu-panel a {
	display: block;
	padding: 0px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 800;
	color: var(--TEXT);
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: var(--CARD-GRAY);
	margin-top: 8px;
}
body.page-cafe .cafe-submenu-accordion .submenu-panel a:first-child {
	margin-top: 0;
}
body.page-cafe .cafe-submenu-accordion .submenu-panel a:hover {
	background: rgba(47, 95, 168, 0.1);
}

/* --- FORCE cafe submenu item + price alignment (override any older rules) --- */
body.page-cafe .cafe-submenu-accordion .submenu-panel a.submenu-item {
	display: grid !important;
	grid-template-columns: 1fr 160px !important; /* fixed price column */
	gap: 12px;
	align-items: baseline;
	width: 100% !important;
}

body.page-cafe .cafe-submenu-accordion .submenu-panel a.submenu-item .si-name {
	display: block;
}

body.page-cafe .cafe-submenu-accordion .submenu-panel a.submenu-item .si-price {
	display: block !important;
	width: 100% !important;
	text-align: right !important;
	justify-self: end !important;
	white-space: nowrap;
}

/* ===== Cafe submenu dot leaders ===== */
body.page-cafe .cafe-submenu-accordion .submenu-panel a.submenu-item {
	position: relative;
}

/* Cafe: Full Menu Boards */
#sm-boards.submenu-panel.is-open {
	width: 100%;
	max-width: none;
	padding: 16px 0;
}

#sm-boards .menu-boards {
	/* Full width without creating horizontal page scroll */
	width: calc(100vw - (100vw - 100%));
	margin-left: 50%;
	transform: translateX(-50%);
	padding: 0 12px;
	box-sizing: border-box;

	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 900px) {
	#sm-boards .menu-boards {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}
}

#sm-boards .menu-board {
	display: block;
	min-width: 0;
	border-radius: 14px;
	overflow: hidden;
}

#sm-boards .menu-board img {
	width: 100%;
	height: auto;
	display: block;
	cursor: zoom-in;
}

/* =====================
   FUN
   ===================== */

/* Fun page layout */
.section-pad {
	padding: 34px 0;
}

/* =========================
   FUN PAGE (reusable fun-card component)/* =========================
   FUN PAGE (reusable fun-card component)
   ========================= */

.page-fun .fun-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr; /* mobile */
	align-items: stretch;
}

@media (min-width: 860px) {
	.page-fun .fun-grid {
		grid-template-columns: repeat(
			2,
			minmax(0, 1fr)
		); /* exactly 2 columns */
	}
}

/* Base card */
.page-fun .fun-card {
	position: relative;
	border-radius: 18px;
	background: var(--CARD-GRAY);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	padding: 18px;
}

/* Left accent band (reusable visual identity) */
.page-fun .fun-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 8px;
	height: 100%;
	background: rgba(47, 95, 168, 0.85); /* your band-blue */
}

/* Tag pill */
.page-fun .fun-card__tag {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.2px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(47, 95, 168, 0.12);
	margin-bottom: 10px;
}

/* Title / text */
.page-fun .fun-card__title {
	margin: 0 0 10px 0;
}

.page-fun .fun-card__text {
	margin: 0 0 12px 0;
}

.page-fun .fun-card__bullets {
	margin: 0 0 14px 18px;
	padding: 0;
}

.page-fun .fun-card__bullets li {
	margin: 6px 0;
}

/* Media */
/* === FUN CARD MEDIA CONSTRAINTS === */
.page-fun .fun-card__media {
	max-height: 260px; /* desktop default */
	aspect-ratio: 16 / 9; /* keeps all images uniform */
	overflow: hidden;
	border-radius: 14px;
}

.page-fun .fun-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* critical */
	display: block;
}

/* Actions */
.page-fun .fun-card__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 10px;
}

/* Split layout (image + text) for larger screens */
.page-fun .fun-card--split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.page-fun .fun-card--split .fun-card__body {
	min-width: 0;
}

@media (min-width: 860px) {
	.page-fun .fun-card--split {
		grid-column: 1 / -1; /* span full width of the grid */
	}
}

.page-fun .fun-card--split.fun-card--reverse {
	grid-template-columns: 1.25fr 1fr;
}
.page-fun .fun-card--split.fun-card--reverse .fun-card__media {
	order: 2;
}

/* Bottom CTA */
.page-fun .fun-cta {
	margin-top: 28px;
	padding: 22px;
	border-radius: 18px;
	background: rgba(47, 95, 168, 0.1);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.page-fun .fun-cta__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 12px;
}

@media (max-width: 480px) {
	.page-fun .fun-card__media {
		max-height: 200px;
	}
}

/* Fun page: keep header and hero controls clickable */
.page-fun .hero,
.page-fun .hero .overlay {
	pointer-events: none;
}

.page-fun .hero .hero-content,
.page-fun .hero .hero-content * {
	pointer-events: auto;
}

.page-fun .site-header {
	position: relative;
	z-index: 99999;
}

.page-fun #navToggle {
	position: relative;
	z-index: 100000;
}

/* =====================
   MORE
   ===================== */

/* =====================
   SHARED CONTENT CARDS
   ===================== */

/* Cards inside a standard grid: blue accent + subtle blue lift */
.card-grid .content-card {
	box-shadow:
		inset 8px 0 0 rgba(47, 95, 168, 0.85),
		inset 16px 0 18px rgba(47, 95, 168, 0.22),
		0 10px 26px rgba(47, 95, 168, 0.22);
}

/* Pricing page: blue left accent only */
.page-pricing .content-card {
	box-shadow: inset 8px 0 0 rgba(47, 95, 168, 0.95) !important;
}

/* Parties page: blue left accent only */
.page-parties .content-card {
	box-shadow: inset 8px 0 0 rgba(47, 95, 168, 0.95) !important;
}
body.page-parties h1 {
	color: var(--ORANGE);
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	display: none;
	place-items: center;
	padding: 18px;
	background: rgba(0, 0, 0, 0.85);
	z-index: 9999;
}

.lightbox.is-open {
	display: grid;
}

.lightbox-img {
	max-width: min(1400px, 95vw);
	max-height: 90vh;
	width: auto;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
	position: fixed;
	top: 14px;
	right: 16px;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 999px;
	font-size: 32px;
	line-height: 44px;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.lightbox-close:hover {
	background: rgba(255, 255, 255, 0.26);
}

.no-scroll {
	overflow: hidden;
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 900px) {
	.header-inner {
		position: relative;
		z-index: 3000;
	}

	#navToggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		font-size: 26px;
		line-height: 1;
		position: relative;
		z-index: 4001;
	}

	#mainNav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		z-index: 4000;
		background: var(--BAND-BLUE);
		border-bottom: 3px solid var(--OUTLINE);
		flex-direction: column;
		gap: 2px;
		padding: 6px 10px;
	}

	#mainNav.show {
		display: flex;
	}

	#mainNav a {
		display: block;
		padding: 8px 10px;
		color: #fff;
		border-radius: 8px;
	}

	#mainNav a:hover {
		background: rgba(255, 255, 255, 0.12);
	}
}
