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

/* =====================
   GENERAL
   ===================== */
:root {
	/* Core theme */
	--BG-GRAY: #e9ecef; /* light/medium gray page background */
	--CARD-GRAY: #f6f7f8; /* light gray card background */
	--BAND-BLUE: #2f5fa8; /* medium blue band */
	--OUTLINE: #000000; /* black outline */
	--TEXT: #1d1d1f;

	/* Existing tokens */
	--DEEP-BLUE: var(--BAND-BLUE);
	--ORANGE: #f7941e;
	--AQUA: #00c6d7;
	--WHITE: #ffffff;
	--MAX-WIDTH: 1100px;

	margin-block-start: 0;
	padding: 0;
}
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-GRAY);
}

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

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

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

.main-nav a {
	color: #fff;
	text-decoration: none;
	padding: 6px 8px;
	border-radius: 6px;
}

.main-nav a:hover {
	background: rgba(255, 255, 255, 0.14);
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	font-size: 1.25rem;
	padding: 8px;
}

.header-inner {
	position: relative;
}

/* 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(--DEEP-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(--DEEP-BLUE);
	text-decoration: none;
}

/* Blue band section headers used across pages */
.section-band {
	background: var(--BAND-BLUE);
	color: #fff;
	border: 2px solid var(--outline);
	border-radius: 12px;
	padding: 10px 14px;
	margin: 0 0 14px;
	font-family: "Montserrat", sans-serif;
}

/* 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 {
	background: #0a3d91;
	color: #fff;
	padding: 36px 24px;
	margin-top: 28px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 18px;
}
.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);
}

/* =====================
   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-cafe.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(--DEEP-BLUE);
}

/* 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;
}

/* BOOKING (currently informational only) */
.book {
	background: linear-gradient(90deg, #fff, rgba(0, 198, 215, 0.05));
	padding: 28px;
	border-radius: 12px;
	text-align: center;
	margin: 24px;
}

/* 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;
}
.pricing-grid {
	display: grid;
	grid-row-gap: 15px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 10px;
	padding: 10px;
}
.pricing-grid-two {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 10px;
}

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

.pricing-image {
	grid-column: span 2;
	height: 250px;
	border-radius: 10px;
	overflow: hidden;
}
.pricing-image img {
	width: 100%;
	object-fit: cover;
	display: block;
}

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

.events-note,
.events-season {
	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;
	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(--DEEP-BLUE);
}

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

.event-right .event-date {
	text-align: right;
	white-space: nowrap;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	color: var(--DEEP-BLUE);
	font-weight: 600;
}

.event-right .event-time {
	text-align: right;
	white-space: nowrap;
	font-size: 0.95rem;
	opacity: 0.9;
}

.event-item.today {
	background: rgba(47, 95, 168, 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: #b00020;
	background: rgba(176, 0, 32, 0.1);
	border: 1px solid rgba(176, 0, 32, 0.25);
}
.impact-limited {
	color: #7a5b00;
	background: rgba(247, 148, 30, 0.18);
	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(247, 148, 30, 0.16);
	border-left: 6px solid var(--ORANGE);
}
.impact-banner.limited h3 {
	margin: 0 0 4px;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	color: #7a5b00;
}
.impact-banner.limited p {
	margin: 0;
	line-height: 1.25;
}

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

/* Events v2 – remove flyer container borders */
body.page-events .event-flyer,
body.page-events .menu-board,
body.page-events .image-box {
	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-GRAY);
}

/* Modern "card" treatment for events content */
body.page-events .events-box,
body.page-events .event-item,
body.page-events .events-snapshot,
body.page-events .events-list {
	border: none !important;
	background: #ffffff; /* 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: rgba(210, 196, 196, 0.26);
	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,
body.page-events .events-submenu a,
body.page-events .pill,
body.page-events .chip {
	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: 10px;
	position: relative;
}
.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);
}

/* Lightbox overlay */
.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;
}
.flyer-lightbox-inner img {
	width: 100%;
	height: auto;
	max-height: 90vh;
	display: block;
	border: none !important;
	box-shadow: none !important;
	border-radius: 12px;
	background: transparent;
}
.flyer-close {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: none !important;
	box-shadow: none !important;
	background: rgba(255, 255, 255, 0.9);
	font-weight: 900;
}

/* Events v2 – Lightbox: remove ANY container borders/frames */

/* Lightbox overlay stays dark */
body.page-events .flyer-lightbox {
	background: rgba(0, 0, 0, 0.75);
}

/* Inner container must be transparent (no frame) */
body.page-events .flyer-lightbox-inner {
	background: transparent !important;
	padding: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
}

/* Image: no border/frame */
body.page-events .flyer-lightbox-inner img {
	border: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

/* Also remove any border on anything inside the lightbox */
body.page-events .flyer-lightbox * {
	border: none !important;
	outline: none !important;
	background: rgba(0, 0, 0, 0.75);
}

/* Flyer link button (no thumbnail) */
/* FINAL override: flyer link = plain text, no border, no padding */
.flyer-link {
	all: unset !important; /* nukes ALL default button styles */
	display: inline-block !important;

	font-weight: 700;
	color: var(--link, #2f5fa8);
	text-decoration: underline;
	cursor: pointer;
}

/* Kill any remaining focus/outline artifacts */
.flyer-link:focus,
.flyer-link:active,
.flyer-link:focus-visible {
	outline: none !important;
	box-shadow: none !important;
	border: none !important;
}

/* Center flyer links */
.event-flyer {
	text-align: center;
}

.flyer-link:hover {
	text-decoration: none;
}

.flyer-link:hover {
	background: rgba(0, 0, 0, 0.06);
}

/* =====================
   PARTIES
   ===================== */
/* (Placeholder) Add Parties page-specific styles here */

/* =====================
   Leagues
   ===================== */
/* (Placeholder) Add League page-specific styles here */

/* =====================
   CAFE
   ===================== */

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

/* Grid of menu boxes (matches your original cafe.html inline layout) */
body.page-cafe .menu-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	align-items: start;
}
@media (max-width: 900px) {
	body.page-cafe .menu-grid {
		grid-template-columns: 1fr;
	}
}

/* Menu box styling */
body.page-cafe .menu-box {
	background: var(--CARD-GRAY);
	border: 2px solid var(--outline);
	border-radius: 12px;
	padding: 14px;
}
body.page-cafe .menu-box h2 {
	margin: 0 0 10px;
	padding: 10px 12px;
	background: var(--BAND-BLUE);
	color: #fff;
	border: 2px solid var(--outline);
	border-radius: 12px;
	font-family: "Montserrat", sans-serif;
	font-size: 1.05rem;
	line-height: 1.15;
}

/* Menu list items */
body.page-cafe .menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}
body.page-cafe .menu-item {
	display: flex;
	justify-content: space-between;
	gap: 6px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	padding-bottom: 4px;
}
body.page-cafe .menu-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
body.page-cafe .menu-item .name {
	font-weight: 700;
}
body.page-cafe .menu-item .note {
	font-weight: 400;
	opacity: 0.9;
	margin-left: 8px;
}
body.page-cafe .menu-item .price {
	white-space: nowrap;
	font-weight: 900;
}
body.page-cafe .menu-subnote {
	margin: 10px 0 0;
	line-height: 1.25;
	opacity: 0.95;
}

/* 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(--BAND-BLUE);
	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: #fff;
	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);
}

/* Ensure anchors land below sticky header + sticky submenu */
body.page-cafe .cafe-section {
	scroll-margin-top: 140px; /* header + submenu */
}

/* --- 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 should expand full width */
/* Cafe: Full Menu Boards should expand full width */
#sm-boards.submenu-panel.is-open {
	width: 100%;
	max-width: none;
	padding: 16px 0;
}

#sm-boards .menu-boards {
	width: 100%;
	max-width: none; /* BIG */
	margin: 0 auto;
	padding: 0 10px; /* small side padding */

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

/* Side-by-side on desktop */
@media (min-width: 900px) {
	#sm-boards .menu-boards {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}
}

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

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

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

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

.fun-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 16px;
}

@media (max-width: 900px) {
	.fun-grid {
		grid-template-columns: 1fr;
	}
}

.fun-card {
	background: #fff;
	border: 2px solid var(--OUTLINE, #111);
	border-radius: 18px;
	padding: 18px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.fun-card h3 {
	margin-top: 8px;
}

.fun-tag {
	display: inline-block;
	font-weight: 800;
	font-size: 0.85rem;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(47, 95, 168, 0.14);
	color: var(--BAND-BLUE, #2f5fa8);
}

.fun-bullets {
	margin: 12px 0 0;
	padding-left: 18px;
}

.fun-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 14px;
}

/* Small CTA strip */
.cta-strip {
	margin-top: 12px;
	background: rgba(47, 95, 168, 0.1);
	border-top: 2px solid var(--OUTLINE, #111);
	border-bottom: 2px solid var(--OUTLINE, #111);
	padding: 22px 0;
}

.cta-strip-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

@media (max-width: 900px) {
	.cta-strip-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

.cta-strip-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* FUN cards — match Pricing/Parties/Leagues styling */
.fun-card {
	background: var(--CARD-GRAY);
	border: none;
	border-radius: 18px;
	padding: 18px;
	overflow: hidden;

	/* left blue accent + soft blue lift (similar vibe to pricing) */
	box-shadow:
		inset 8px 0 0 rgba(47, 95, 168, 0.95),
		0 10px 26px rgba(47, 95, 168, 0.22);
}

.fun-card .fun-photo {
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 12px;
}

.fun-card .fun-photo img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

@media (max-width: 900px) {
	.fun-card .fun-photo img {
		height: 200px;
	}
}

/* =========================
   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: rgba(255, 255, 255, 0.92);
	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: prevent hero overlay from blocking header taps */
.page-fun .hero,
.page-fun .hero .overlay {
	pointer-events: none;
}

/* Re-enable clicks for the hero content only (buttons still work) */
.page-fun .hero .hero-content,
.page-fun .hero .hero-content * {
	pointer-events: auto;
}

/* Keep header above hero on Fun page */
.page-fun .site-header {
	position: relative; /* or sticky if you prefer */
	z-index: 9999;
}

/* Ensure hamburger stays clickable */
.page-fun #navToggle {
	position: relative;
	z-index: 10000;
}

/* Ensure header is above hero/overlays and clickable */
.page-fun .site-header {
	position: relative; /* creates stacking context */
	z-index: 99999; /* above everything */
}

/* If the FUN hero overlay is covering the header, it must not capture clicks */
.page-fun .hero,
.page-fun .hero .overlay {
	pointer-events: none;
}

/* Re-enable clicks for hero content/buttons */
.page-fun .hero .hero-content,
.page-fun .hero .hero-content * {
	pointer-events: auto;
}

/* Extra safety: hamburger always clickable */
.page-fun #navToggle {
	position: relative;
	z-index: 100000;
}

/* =====================
   MORE
   ===================== */
/* (Placeholder) New page styles go here */

/* =====================
   RESPONSIVE
   ===================== */
/*@media (max-width: 900px) {
	.features {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 12px;
	}
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	.about {
		flex-direction: column;
	}

	@media (max-width: 900px){
		.nav-toggle{
			display: block;
			color: #fff;         
			}
		} */

/* simple dropdown directly under the header (no floating card) */
.main-nav {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%; /* directly below header-inner row */
	background: var(--BAND-BLUE);
	flex-direction: column;
	padding: 4px 0;
	margin: 0;
}

.main-nav.show {
	display: flex;
}

.main-nav a {
	color: #fff !important;
	padding: 8px 14px; /* minimal spacing */
	border-radius: 0;
}

.main-nav a:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* ===== FINAL flyer link reset (kills ALL borders/outlines anywhere) ===== */

/* Parent container */
.event-flyer {
	text-align: center;
	margin-top: 6px;
}

/* Treat both flyer links as plain inline text */
.event-flyer .flyer-link,
.event-flyer a.link {
	all: unset !important; /* removes every UA + inherited style */
	display: inline !important;

	font-weight: 700;
	color: var(--link, #2f5fa8);
	text-decoration: underline;
	cursor: pointer !important;
}

/* Absolutely no focus/outline/border remnants */
.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 !important;
	box-shadow: none !important;
	border: none !important;
	background: transparent !important;
}

/* Put both links on ONE centered line */
.event-flyer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px; /* spacing between the two links */
}

/* Baseline alignment fix for flyer links */
.event-flyer {
	align-items: baseline; /* align text bottoms */
}

.event-flyer .flyer-link,
.event-flyer a.link {
	line-height: 1.1; /* same line box */
	vertical-align: baseline;
}

/* Flyer: View | PDF inline */
.event-flyer {
	text-align: center;
}

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

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

.flyer-sep {
	opacity: 0.6;
}

.flyer-link {
	all: unset;
	color: var(--link, #2f5fa8);
	text-decoration: underline;
	cursor: pointer;
}
.flyer-link:hover {
	text-decoration: none;
}

.flyer-pdf {
	/* uses your existing .link too; this just ensures consistent cursor */
	cursor: pointer;
}

/* ===== Pricing cards: remove border, add blue shadow ===== */
.pricing-grid .pricing-card {
	border: none !important; /* remove border */
	box-shadow: 0 8px 20px rgba(47, 95, 168, 0.35); /* band-blue shadow */
}

/* ===== Pricing/Parties cards: banner-style left "vertical parenthesis" glow ===== */
.pricing-grid .pricing-card {
	border: none !important;
	position: relative;
	overflow: hidden; /* keeps the accent clean with rounded corners */
}

/* Left-side "parenthesis" effect: inner blue band + soft outer glow */
.pricing-grid .pricing-card {
	/* inner left band + subtle overall lift */
	box-shadow:
		inset 8px 0 0 rgba(47, 95, 168, 0.85),
		/* the solid left stroke */ inset 16px 0 18px rgba(47, 95, 168, 0.22),
		/* feathered inner glow */ 0 10px 26px rgba(47, 95, 168, 0.22); /* outside lift */
}

/* Optional: roundness polish (if you already have radius, this won't hurt) */
.pricing-grid .pricing-card {
	border-radius: 18px;
}

/* ===== Pricing & Parties cards: left vertical accent ONLY (no glow) ===== */
.pricing-card {
	border: none !important;
	position: relative;
	overflow: hidden;
	border-radius: 18px;

	/* clean left accent, no glow */
	box-shadow: inset 8px 0 0 rgba(47, 95, 168, 0.95);
}
/* Pricing + Parties cards: no border, no glow, left blue accent */
.page-pricing .pricing-card,
.page-parties .pricing-card {
	border: none !important;
	box-shadow: inset 8px 0 0 rgba(47, 95, 168, 0.95) !important; /* accent only */
}

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

/* ===== League page: space between multiple pricing grids ===== */
.page-league .pricing-grid + .pricing-grid {
	margin-top: 2rem;
}

.main-nav.show {
	display: flex; /* becomes visible when JS adds .show */
	flex-direction: column;
	gap: 8px;
	background: #fff; /* or rgba(0,0,0,0.85) if you want dark */
	padding: 12px;
	border-radius: 12px;
}

.main-nav.show a {
	display: block;
	padding: 12px 14px;
	text-decoration: none;
}

/* Ensure hamburger is always clickable on top */
.nav-toggle {
	position: relative;
	z-index: 99999;
}
.site-header {
	position: relative;
	z-index: 9998;
}

@media (max-width: 860px) {
	.main-nav {
		display: none;
	}
	.main-nav.show {
		display: flex !important;
		flex-direction: column;
	}
}

/* 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;
}

/* === Cafe: Menu Boards full-width + side-by-side on desktop === */
/* Cafe boards: full-width WITHOUT causing horizontal scroll */
#sm-boards .menu-boards {
	/* This avoids the 100vw scrollbar overflow problem */
	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;
}

/* Side-by-side on desktop */
@media (min-width: 900px) {
	#sm-boards .menu-boards {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}
}

/* Important so grid items can shrink and never force overflow */
#sm-boards .menu-board {
	min-width: 0;
}
#sm-boards .menu-board img {
	width: 100%;
	height: auto;
	display: block;
	cursor: zoom-in;
}

html,
body {
	overflow-x: hidden;
}

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

	.nav-toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		font-size: 26px;
		line-height: 1;
		border: none;
		background: transparent;
		color: #fff;
		cursor: pointer;
		z-index: 4001;
	}

	/* The dropdown menu */
	#mainNav {
		display: none !important;
		position: absolute !important;
		left: 0;
		right: 0;
		top: 100%;
		z-index: 4000;

		background: var(--BAND-BLUE, #2f5fa8);
		padding: 6px 10px;
		margin: 0;
		flex-direction: column;
		gap: 2px; /* minimal spacing */
		border-bottom: 3px solid var(--OUTLINE, #111);
	}

	#mainNav.show {
		display: flex !important;
	}

	#mainNav a {
		display: block;
		padding: 8px 10px;
		color: #fff !important;
		text-decoration: none;
		border-radius: 8px;
	}

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

/* ===== NAV: Desktop shows main nav, mobile uses hamburger dropdown ===== */

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

#navToggle {
	display: none; /* hide hamburger on desktop */
}

/* Mobile */
@media (max-width: 900px) {
	.header-inner {
		position: relative;
	} /* anchor the dropdown */

	#navToggle {
		display: inline-flex; /* show hamburger on mobile */
	}

	/* Dropdown menu (does NOT expand the header height) */
	#mainNav {
		display: none; /* hidden until .show */
		position: absolute; /* key: take it out of the header layout flow */
		left: 0;
		right: 0;
		top: 100%;
		z-index: 4000;

		background: var(--BAND-BLUE, #2f5fa8);
		border-bottom: 3px solid var(--OUTLINE, #111);

		flex-direction: column;
		gap: 2px; /* minimal spacing */
		padding: 6px 10px;
	}

	#mainNav.show {
		display: flex;
	}

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

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