/**
 * Site Styles
 *
 * Styles for the site including navigation positioning, large-hero section,
 * content area, and footer
 */

/* ============================================
   Navigation Positioning
   ============================================ */

:root {
	--panel-bg: rgba(0, 74, 173, 0.5);
	--panel-bg2: rgba(0, 0, 0, 0.4);
}

body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	background-color: #0d1d3d;
	min-height: 100vh;
	/* background-blend-mode: screen; */
}

#page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.content-wrapper {
	flex: 1;
	background-image: url(../img/exterior_800.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (min-width: 768px) {
	.content-wrapper {
		background-image: url(../img/exterior_darkened.jpg);
	}
}

a {
	color: #2784ff;
}

a:hover, a:active, a:focus {
	color: #b0d2ff;
	text-decoration: underline;
}

.site-header {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
	position: relative;
	z-index: 100;
}

.site-branding {
	flex: 0 0 auto;
}

.header-logo-desktop {
	max-width: 150px;
}

.page-template-page-home h2 {
	font-size: 2rem;
}


/* Desktop: Header is positioned relative, content flows below */
@media (min-width: 768px) {
	.site-header {
		position: relative;
		flex-direction: column;
		padding: 0;
		height: 140px;
		background-color: transparent;
	}

	/* Hide mobile branding on desktop */
	.site-branding {
		display: none;
	}

	/* Show desktop logo */
	.header-logo-desktop {
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		z-index: 102;
		width: 200px;
		height: 200px;
		pointer-events: auto;
		margin: 0;
		max-width: none;
	}

	.header-logo-svg {
		width: 200px !important;
		height: 200px !important;
		max-width: 200px;
		max-height: 200px;
		display: block;
		object-fit: contain;
		filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
	}
	
	.header-logo-desktop a {
		display: block;
		width: 100%;
		height: 100%;
	}

	/* Add padding to body content to account for overlapping logo */
	.site-main {
		padding-top: 60px; /* Logo extends 60px below the header bar */
	}

	/* Homepage: no padding, carousel touches header bar */
	.page-template-page-home .site-main {
		padding-top: 0;
	}
}

/* Compact logo at smaller desktop widths */
@media (min-width: 768px) and (max-width: 1024px) {
	.header-logo-desktop {
		width: 160px;
		height: 160px;
	}

	.header-logo-svg {
		width: 160px !important;
		height: 160px !important;
		max-width: 160px;
		max-height: 160px;
	}
}

/* Mobile: Header stacks vertically on homepage */
@media (max-width: 767px) {
	.page-template-page-home .site-header {
		position: relative;
		background-color: var(--panel-bg);
	}
}

/* Dark overlay on header hover - only for non-homepage pages */
.site-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.2s ease;
	pointer-events: none;
	z-index: -1;
}

/* Site title white with shadow */
.site-title,
.site-title a {
	color: #ffffff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 1px rgba(0, 0, 0, 0.2);
	text-decoration: none;
	font-size: 42px;
	letter-spacing: 2px;
	font-weight: normal;
	margin: 0;
	line-height: 1.2;
}

.site-title a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.site-title-main {
	font-size: 42px;
	line-height: 1.2;
}

.site-title-sub {
	font-size: 17px;
	line-height: 1.2;
	letter-spacing: 1px;
	color: #d3d3d3;
	font-weight: 300;
	font-style: italic;
}

.site-title a:hover,
.site-title a:focus {
	color: #ffffff;
	text-decoration: none;
}

/* ============================================
   Main Content Area Wrapper
   ============================================ */

/* Desktop: constrain main content to 1600px max width */
@media (min-width: 768px) {
	.site-main {
		max-width: 1600px;
		margin: 0 auto;
	}
}

/* ============================================
   Large Hero Styles
   ============================================ */

.large-hero {
	padding: 12rem 2rem 8rem;
	position: relative;
	width: 100%;
	overflow: hidden;
	z-index: 1;
	height: auto;
	margin: 0 auto;
	max-width: 900px;
}

/* Hero Carousel Container — hidden in default layout */
.hero-carousel {
	display: none;
}

/* ============================================
   Reviews Area — overlaid on hero
   ============================================ */

.reviews-area {
	position: relative;
	height: 10rem;
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2rem;
	box-sizing: border-box;
}

.review-slide {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #ffffff;
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
	max-width: 750px;
	width: 100%;
	padding: 0 1rem;
	box-sizing: border-box;
}

.review-slide.active {
	opacity: 1;
}

.review-stars {
	font-size: clamp(1.1rem, 2.5vw, 1.6rem);
	letter-spacing: 3px;
	color: #ffd700;
	text-shadow:
		0 1px 4px rgba(0, 0, 0, 0.9),
		0 0 12px rgba(0, 0, 0, 0.7);
	margin-bottom: 0.4rem;
	line-height: 1;
}

.review-text {
	color: white;
	font-size: clamp(1.1rem, 2.42vw, 1.54rem);
	line-height: 1.55;
	margin: 0 0 0.4rem;
	paint-order: stroke fill;
	text-shadow:
		/* Outline simulation — cross-browser fallback for stroke */
		-1px -1px 0 #000, 1px -1px 0 #000,
		-1px  1px 0 #000, 1px  1px 0 #000,
		/* Centered glow */
		0 0 6px rgba(0, 0, 0, 1),
		0 0 14px rgba(0, 0, 0, 1),
		0 0 28px rgba(0, 0, 0, 1),
		0 0 45px rgba(0, 0, 0, 0.9),
		0 0 46px rgba(0, 0, 0, 0.9),
		0 0 48px rgba(0, 0, 0, 0.9);

}

.review-attribution {
	color: white;
	font-size: clamp(0.7rem, 1.3vw, 0.85rem);
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	opacity: 0.8;
	margin: 0;
	text-shadow:
		0 1px 3px rgba(0, 0, 0, 1),
		0 2px 10px rgba(0, 0, 0, 0.9);
}

/* ============================================
   Content Area Styles
   ============================================ */

.content-area {
	padding: 2rem 1rem;
	margin: 2rem auto 0;
	width: calc(100% - 2rem);
	box-sizing: border-box;
	color: #ffffff;
	text-shadow: black 0px 0px 5px;
}

.content-area-inner {
	padding: 20px;
	background-color: var(--panel-bg);
	backdrop-filter: blur(8px);
}

.content-area p {
	margin-bottom: 1rem;
	line-height: 1.6;
}
.content-area a:visited,
.content-area a {
	text-decoration: none;
	color: #ffffff;
}

.content-area a:hover,
.content-area a:focus {
	color: #ffffff;
	text-decoration: underline;
}

/* Event list rows are whole-card links; underline comes from .events-list__title::after only */
.content-area .events-list__item--link,
.content-area .events-list__item--link:visited,
.content-area .events-list__item--link:hover,
.content-area .events-list__item--link:focus,
.content-area .events-list__item--link:focus-visible,
.content-area .events-list__item--link:active {
	text-decoration: none;
}

.content-area h1 {
	margin-bottom: 2rem;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 1px solid #ffffff;
}

@media (min-width: 850px) {
	.content-area h1 {
		margin-bottom: 4rem;
	}
}
/* Desktop styles for content-area */
@media (min-width: 768px) {
	.content-area {
		padding: 3rem 4rem;
		max-width: 1200px;
	}
	
	.content-area p {
		font-size: 1.125rem;
		margin-bottom: 1.5rem;
	}
}

/* ============================================
   Menu CTA (floated aside on desktop)
   ============================================ */

.menu-cta {
	position: relative;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.75rem;
	box-sizing: border-box;
	background-color: rgba(255, 166, 0, 0.1);
}

.menu-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	padding: 1px;
	box-sizing: border-box;
	pointer-events: none;
	background: linear-gradient(135deg, #19b0ff, #f65d3b);
	-webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
	mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
	-webkit-mask-clip: content-box, border-box;
	mask-clip: content-box, border-box;
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	-webkit-mask-origin: border-box;
	mask-origin: border-box;
}

.menu-cta > * {
	position: relative;
	z-index: 1;
}

@media (min-width: 850px) {
	.menu-cta {
		float: right;
		clear: right;
		min-width: 240px;
		width: 40%;
		max-width: 500px;
		margin: 0 0 1.5rem 2rem;
	}

	.content-area-inner:has(.menu-cta) .menu-body {
		float: left;
		width: calc(60% - 2rem);
	}

	.content-area-inner:has(.menu-cta)::after {
		content: "";
		display: table;
		clear: both;
	}
}

/* ============================================
   Home CTA row (events + gallery)
   ============================================ */

.home-cta-section {
	padding: 0 1rem 2rem;
	margin: 1.5rem auto 0;
	width: calc(100% - 2rem);
	max-width: 1200px;
	box-sizing: border-box;
	color: #ffffff;
	text-shadow: black 0px 0px 5px;
}

.home-cta-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: stretch;
}

@media (min-width: 768px) {
	.home-cta-section {
		padding: 0 4rem 3rem;
	}

	.home-cta-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.home-cta-item {
	display: flex;
	flex-direction: column;
	min-height: 0;
	min-width: 0;
}

/* Override global `a` / `a:visited` (e.g. style.css purple visited) */
.home-cta-section .home-cta-card,
.home-cta-section .home-cta-card:visited,
.home-cta-section .home-cta-card:hover,
.home-cta-section .home-cta-card:focus,
.home-cta-section .home-cta-card:active {
	color: #ffffff;
	text-shadow: black 0px 0px 5px;
	text-decoration: none;
}

/*
 * Outer: same panel as .content-area-inner, with inset padding so the page shows
 * through the gutter between grid cells; inner ring is full-opacity gradient only.
 */
.home-cta-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	box-sizing: border-box;
	padding: 10px;
	background-color: var(--panel-bg);
	backdrop-filter: blur(8px);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/*
 * Mask only the ::before layer. Masking .home-cta-border-ring itself hid all descendants
 * (text, images). The pseudo sits behind .home-cta-card-inner (z-index).
 */
.home-cta-border-ring {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
	min-width: 0;
	box-sizing: border-box;
}

.home-cta-border-ring::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	padding: 1px;
	box-sizing: border-box;
	pointer-events: none;
	background: linear-gradient(135deg, #19b0ff, #f65d3b);
	-webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
	mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
	-webkit-mask-clip: content-box, border-box;
	mask-clip: content-box, border-box;
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	-webkit-mask-origin: border-box;
	mask-origin: border-box;
	transition: padding 0.22s ease;
}

.home-cta-card:hover .home-cta-border-ring::before,
.home-cta-card:focus-visible .home-cta-border-ring::before {
	padding: 3px;
}

.home-cta-card:focus {
	outline: 2px solid #ffffff;
	outline-offset: 3px;
}

.home-cta-card--no-link {
	cursor: default;
}

.home-cta-card--no-link:hover .home-cta-border-ring::before,
.home-cta-card--no-link:focus-visible .home-cta-border-ring::before {
	padding: 1px;
}

.home-cta-card--no-link:hover .home-cta-title,
.home-cta-card--no-link:focus-visible .home-cta-title {
	text-decoration: none;
}

.home-cta-card-inner {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	padding: 1rem 1.1rem;
	box-sizing: border-box;
	min-height: 100%;
	width: 100%;
}

.home-cta-card--gallery .home-cta-card-inner {
	gap: 0.85rem;
}

.home-cta-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1rem, 2.2vw, 1.15rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.25;
	text-decoration: none;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

/* Native underline follows wrapped lines; white on card hover/focus */
.home-cta-card:hover .home-cta-title,
.home-cta-card:focus-visible .home-cta-title {
	text-decoration: underline;
	text-decoration-color: #ffffff;
}

.home-cta-meta {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.45;
	opacity: 0.95;
}

.home-cta-time {
	margin-top: 0.15rem;
	font-weight: 600;
}

.home-cta-gallery-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	opacity: 0.92;
}

.home-cta-thumb {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (min-width: 768px) {
	.home-cta-thumb {
		width: 80px;
		height: 80px;
	}

	.home-cta-card--gallery .home-cta-card-inner {
		flex-direction: row;
		align-items: flex-start;
		gap: 1rem;
	}
}

.home-cta-gallery-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
	.home-cta-border-ring::before {
		transition: none;
	}

	.home-cta-card:hover .home-cta-border-ring::before,
	.home-cta-card:focus-visible .home-cta-border-ring::before {
		padding: 1px;
	}
}

/* ============================================
   Event Meta (dates, timing, past notice)
   ============================================ */

/* Pull date line tight under the title */
.single .content-area h1 {
	margin-bottom: 0.8rem;
}

.event-dates {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: bold;
}

/* Give the "past" notice breathing room above the body copy */
.event-past {
	margin-top: 2rem;
	margin-bottom: 0;
}

/* ============================================
   Events page listing (upcoming events)
   ============================================ */

.events-list {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: 100%;
}

.events-list__item {
	display: grid;
	align-items: start;
	gap: 1rem 1.5rem;
	grid-template-columns: minmax(0, 11.5rem) minmax(0, 11.5rem);
	grid-template-rows: auto auto;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	text-decoration: none;
	color: inherit;
}

.events-list__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* Linked row: no default underlines on children; gradient rule on title only */
.events-list__item--link,
.events-list__item--link:hover,
.events-list__item--link:focus,
.events-list__item--link:active {
	text-decoration: none;
}

.events-list__item--link .events-list__title {
	position: relative;
	display: inline-block;
	width: fit-content;
	max-width: 100%;
	box-sizing: border-box;
	padding-bottom: 0.28rem;
	text-decoration: none;
}

.events-list__item--link .events-list__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(135deg, #19b0ff, #f65d3b);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.28s ease;
	pointer-events: none;
}

.events-list__item--link:hover .events-list__title::after,
.events-list__item--link:focus-visible .events-list__title::after {
	transform: scaleX(1);
}

.events-list__item--link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.events-list__date {
	grid-column: 1;
	grid-row: 1;
	/* Fixed slot so single-day and date-range badges share the same width */
	width: 100%;
	max-width: 11.5rem;
	justify-self: start;
	box-sizing: border-box;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	padding: 0.65rem 1rem;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(0, 0, 0, 0.2);
}

.events-list__date--range {
	gap: 0.5rem;
}

.events-list__date-part {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.1;
}

.events-list__date-day {
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.events-list__date-month {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.85;
}

.events-list__date-sep {
	font-size: 1.25rem;
	font-weight: 300;
	opacity: 0.6;
	align-self: center;
}

.events-list__date-fallback {
	display: block;
	width: 100%;
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
	overflow-wrap: break-word;
}

.events-list__body {
	grid-column: 1 / -1;
	grid-row: 2;
	min-width: 0;
}

.events-list__thumb {
	grid-column: 2;
	grid-row: 1;
	justify-self: end;
	width: 100%;
	max-width: 11.5rem;
	aspect-ratio: 1;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(0, 0, 0, 0.2);
	overflow: hidden;
	align-self: start;
}

.events-list__thumb-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.events-list__title {
	margin: 0 0 0.35rem;
	font-size: 1.35rem;
	line-height: 1.25;
}

.events-list__timing {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: bold;
}

.events-list__excerpt {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	opacity: 0.92;
}

.events-list__excerpt p {
	margin: 0 0 0.5rem;
}

.events-list__excerpt p:last-child {
	margin-bottom: 0;
}

@media (min-width: 560px) {
	.events-list__item {
		grid-template-columns: minmax(0, 11.5rem) minmax(0, 1fr) minmax(0, 11.5rem);
		grid-template-rows: auto;
		gap: 1.5rem;
	}

	.events-list__date {
		grid-column: 1;
		grid-row: 1;
	}

	.events-list__body {
		grid-column: 2;
		grid-row: 1;
	}

	.events-list__thumb {
		grid-column: 3;
		grid-row: 1;
		justify-self: stretch;
	}
}

@media (prefers-reduced-motion: reduce) {
	.events-list__item--link .events-list__title::after {
		transition: none;
	}
}

/* ============================================
   Entry Title Row (title + sibling link)
   ============================================ */

.entry-title-row {
	position: relative;
}

.drink-menu-link {
	position: absolute;
	bottom: .4rem;
	right: 0;
	font-size: 1rem;
	white-space: nowrap;
	color: #ffffff;
	text-decoration: none;
}

.drink-menu-link:hover,
.drink-menu-link:focus {
	text-decoration: underline;
}

/* ============================================
   Page Content Styles
   ============================================ */

/* Page featured image — border on wrapper; image covers box (no letterboxing) */
.page-featured-image {
	padding: 0;
	width: 100%;
	max-width: min(100%, 1000px);
	margin: 0 auto;
	box-sizing: border-box;
	border: 10px solid #1a1a1a;
	overflow: hidden;
	aspect-ratio: 10 / 7;
}

.page-featured-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

/* Page content wrapper */
.page .entry-header,
.page .entry-content {
	padding: 2rem 1rem;
	max-width: 100%;
	box-sizing: border-box;
}

.page .entry-header {
	padding-bottom: 1rem;
}

.page .entry-content {
	padding-top: 0;
}

.page .entry-content p {
	margin-bottom: 1rem;
	line-height: 1.6;
}

/* Desktop styles for page content */
@media (min-width: 768px) {
	.page .entry-header,
	.page .entry-content {
		padding: 3rem 2rem;
		max-width: 1200px;
		margin: 0 auto;
	}
	
	.page .entry-header {
		padding-bottom: 1.5rem;
	}
	
	.page .entry-content {
		padding-top: 0;
	}
	
	.page .entry-content p {
		font-size: 1.125rem;
		margin-bottom: 1.5rem;
	}
}

/* ============================================
   Footer Styles
   ============================================ */

.site-footer {
	background-color: #0d1d3d;
	color: #ffffff;
	padding: 2rem 1rem 6.5rem 1rem; /* Extra bottom padding for event alert banner */
	width: 100%;
}

.site-footer .footer-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.site-footer .footer-section {
	flex: 1;
}

.site-footer .footer-section h3 {
	font-size: 1.125rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.site-footer .footer-section h3 a {
	color: #ffffff;
	text-decoration: none;
	transition: text-decoration 0.3s ease;
}

.site-footer .footer-section h3 a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.site-footer .footer-section p,
.site-footer .footer-section address {
	margin: 0.5rem 0;
	line-height: 1.6;
	font-style: normal;
}

.site-footer .footer-section address {
	font-style: normal;
}

/* General footer link styles - applies to all links in footer */
.site-footer a {
	color: #ffffff;
	text-decoration: none;
	transition: text-decoration 0.3s ease;
}

.site-footer a:hover,
.site-footer a:focus {
	color: #ffffff;
	text-decoration: underline;
}

.site-footer .footer-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer .footer-navigation li {
	margin-bottom: 0.5rem;
}

.site-footer .footer-navigation a {
	color: #ffffff;
	text-decoration: none;
	transition: text-decoration 0.3s ease;
}

.site-footer .footer-navigation a:hover {
	color: #ffffff;
	text-decoration: underline;
}

/* Desktop styles for footer - 3-up horizontal layout */
@media (min-width: 768px) {
	.site-footer {
		padding: 3rem 2rem 8rem 2rem; /* Extra bottom padding for event alert banner */
	}
	
	.site-footer .footer-content {
		flex-direction: row;
		max-width: 1200px;
		margin: 0 auto;
		gap: 3rem;
	}
	
	.site-footer .footer-section {
		flex: 1;
	}
	
	.site-footer .footer-hours {
		text-align: center;
	}
	
	.site-footer .footer-navigation {
		text-align: right;
	}
}

/* ============================================
   Event Alert Banner Styles
   ============================================ */

.event-alert-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #ffe4cc;
	color: #000000;
	padding: 1.5rem;
	z-index: 1000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.event-alert-banner a {
	color: #153169;
}

.event-alert-banner a:hover {
text-decoration: none;
}

.event-alert-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	gap: 1rem;
	text-align: center;
}

.event-alert-text {
	margin: 0;
	flex: 1;
	line-height: 1.5;
}

.event-alert-close {
	background: none;
	border: none;
	color: #000000;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	padding: .6rem;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: opacity 0.3s ease;
	position: absolute;
	right: .6rem;
	top: .4rem;
}

.event-alert-close:hover {
	opacity: 0.7;
}

.event-alert-close:focus {
	outline: 2px solid #000000;
	outline-offset: 2px;
}

/* Mobile adjustments */
@media (min-width: 768px) {
	.event-alert-banner {
		padding: 1.5rem;
	}
	
	.event-alert-content {
		flex-wrap: wrap;
	}
	
	.event-alert-text {
		font-size: 1.4rem;
		text-align: center;
	}
	
	.event-alert-close {
		font-size: 1.5rem;
		width: 1.5rem;
		height: 1.5rem;
	}
}

/* ============================================
   Specials Gallery & Lightbox
   ============================================ */

.specials-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 0.75rem;
	margin-top: 1.5rem;
}

@media (min-width: 768px) {
	.specials-gallery {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 1rem;
	}
}

.specials-gallery__thumb {
	display: block;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: none;
	cursor: pointer;
	border-radius: 4px;
	overflow: hidden;
	transition: border-color 0.2s ease, transform 0.2s ease;
	aspect-ratio: 1 / 1;
}

.specials-gallery__thumb:hover,
.specials-gallery__thumb:focus {
	border-color: rgba(255, 255, 255, 0.85);
	transform: scale(1.03);
	outline: none;
}

.specials-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

/* Lightbox overlay */
.specials-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.70);
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.specials-lightbox[hidden] {
	display: none;
}

body.lightbox-open {
	overflow: hidden;
}

.specials-lightbox__img-wrap {
	max-width: 90vw;
	max-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.specials-lightbox__img-wrap img {
	display: block;
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 3px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
}

.specials-lightbox__close,
.specials-lightbox__prev,
.specials-lightbox__next {
	position: fixed;
	background: rgba(255, 255, 255, 0.18);
	border: none;
	color: #ffffff;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	transition: background 0.2s ease;
	line-height: 1;
	pointer-events: auto;
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	box-sizing: border-box;
	padding: 0;
}

.specials-lightbox__close {
	align-items: center;
}

.specials-lightbox__close:hover,
.specials-lightbox__prev:hover,
.specials-lightbox__next:hover {
	background: rgba(255, 255, 255, 0.28);
}

.specials-lightbox__close:focus,
.specials-lightbox__prev:focus,
.specials-lightbox__next:focus {
	outline: 2px solid rgba(255, 255, 255, 0.7);
	outline-offset: 2px;
}

.specials-lightbox__close {
	top: 1rem;
	right: 1rem;
	font-size: 2.25rem;
	width: 3.5rem;
	height: 3.5rem;
}

.specials-lightbox__prev,
.specials-lightbox__next {
	top: 50%;
	transform: translateY(-50%);
	font-size: 3.5rem;
	width: 4.25rem;
	height: 4.25rem;
}

.specials-lightbox__prev {
	left: 0.75rem;
}

.specials-lightbox__next {
	right: 0.75rem;
}

@media (min-width: 768px) {
	.specials-lightbox__prev {
		left: 1.5rem;
	}
	.specials-lightbox__next {
		right: 1.5rem;
	}
}

/* ============================================
   Alt Theme Toggle Button
   ============================================ */

.alt-theme-toggle {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	width: 80px;
	height: 80px;
	margin: 0;
	padding: 0;
	border: 2px solid #fff;
	background: #333;
	color: inherit;
	font-size: 2rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.alt-theme-toggle:hover {
	opacity: 1;
}

/* ============================================
   404 Page Menu
   ============================================ */

.error-404-nav-wrap {
	margin-top: 2rem;
}

.error-404-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.error-404-nav li {
	margin: 0.4rem 0;
}

.error-404-nav a {
	text-decoration: none;
	font-size: 1.1rem;
}

.error-404-nav a:hover {
	text-decoration: underline;
}

.error-404-nav .sub-menu {
	list-style: none;
	margin: 0.25rem 0 0.25rem 1.5rem;
	padding: 0;
}

.error-404-nav .sub-menu li {
	margin: 0.25rem 0;
}

.error-404-nav .sub-menu a {
	font-size: 1rem;
	opacity: 0.8;
}

/* ============================================
   Font Utility Classes
   ============================================ */

/* Merriweather font utility class - can be applied to any element */
.font-merriweather {
	font-family: "Merriweather", serif;
}


