/* ==========================================================================
   The Smokin' Pig - Main Stylesheet
   Western BBQ Theme - Rustic, Bold, Clean
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables / Design Tokens
   -------------------------------------------------------------------------- */
:root {
	/* Colors - BBQ Western Palette */
	--color-charcoal: #1a1a1a;
	--color-charcoal-light: #2d2d2d;
	--color-cream: #f5f0e6;
	--color-cream-dark: #e8dfd0;
	--color-wood: #5c4033;
	--color-wood-light: #8b6914;
	--color-burnt-orange: #cc5500;
	--color-burnt-orange-dark: #a34400;
	--color-bbq-red: #8b2500;
	--color-mustard: #d4a017;
	--color-smoke: #696969;
	--color-white: #ffffff;
	--color-black: #000000;

	/* Status colors */
	--color-success: #2e7d32;
	--color-error: #c62828;
	--color-warning: --color-mustard;

	/* Typography - Western BBQ Stack */
	--font-hero: "Rye", serif;
	--font-heading: "Rye", serif;
	--font-accent: "Bebas Neue", sans-serif;
	--font-note: "Special Elite", monospace;
	--font-menu: "Chalkduster", "Comic Sans MS", "Marker Felt", cursive;
	--font-body: "Open Sans", sans-serif;

	/* Spacing */
	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-xxl: 5rem;

	/* Layout */
	--container-max: 1200px;
	--header-height: 80px;

	/* Effects */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
	--shadow-glow: 0 0 30px rgba(204, 85, 0, 0.3);
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--transition: 0.3s ease;

	/* Background textures */
	--bg-dark-texture: url("/assets/images/backgrounds/darkslate.webp");
	--bg-light-texture: url("/assets/images/backgrounds/light1.webp");
	--bg-light2-texture: url("/assets/images/backgrounds/light2.webp");
	--bg-paper-texture: url("/assets/images/backgrounds/paper.webp");
	--bg-grunge-texture: url("/assets/images/backgrounds/grey1.webp");
	--bg-wood-texture: url("/assets/images/backgrounds/wood1.webp");
	--bg-marble-texture: url("/assets/images/backgrounds/light_marble.webp");
	--bg-chalkboard: url("/assets/images/backgrounds/vertical-black-board.webp");
	--bg-chalkboard2: url("/assets/images/backgrounds/vertical-black-board2.webp");
	--bg-chalkboard-dark: url("/assets/images/backgrounds/vertical-black-board-darker.webp");
	--bg-newchalkboard: url("/assets/images/backgrounds/chalk.webp");
	--bg-fire: url("/assets/videos/fire.webm");
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-charcoal);
	background-color: var(--color-cream);
}

main {
	margin: 0;
	padding: 0;
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 var(--space-md);
	text-transform: uppercase;
	letter-spacing: 2px;
}

h1 {
	font-family: var(--font-hero);
}

/* Accent text for prices, numbers */
.price,
.accent-text {
	font-family: var(--font-accent);
	letter-spacing: 1px;
}

/* Notes and special text */
.note-text,
.truck-notes,
.event-notes {
	font-family: var(--font-note);
}

p {
	margin: 0 0 var(--space-md);
}

a {
	color: var(--color-burnt-orange);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-burnt-orange-dark);
}

img {
	max-width: 100%;
	height: auto;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-md);
}

.section {
	padding: var(--space-xxl) 0;
	position: relative;
}

/* Light sections with texture */
.section-light {
	background-color: var(--color-cream);
	background-image: var(--bg-light-texture);
	background-size: cover;
	background-position: center;
}

/* Dark sections with grunge texture */
.section-dark {
	background-color: var(--color-charcoal);
	background-image: var(--bg-grunge-texture);
	background-size: cover;
	background-position: center;
	color: var(--color-cream);
}

.section-dark a {
	color: var(--color-mustard);
}

/* Blur overlay for dark sections */
.section-blur-overlay {
	position: relative;
	overflow: hidden;
}

.section-blur-overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.75);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	z-index: 0;
}

.section-blur-overlay > .container {
	position: relative;
	z-index: 1;
}

.section-blur-overlay .section-title,
.section-blur-overlay .section-subtitle,
.section-blur-overlay p,
.section-blur-overlay h2,
.section-blur-overlay h3 {
	color: var(--color-cream);
}

.section-blur-overlay .section-subtitle {
	color: rgba(255, 255, 255, 0.85);
}

/* Paper texture sections */
.section-paper {
	background-color: var(--color-cream-dark);
	background-image: var(--bg-paper-texture);
	background-size: cover;
	background-position: center;
}

/* Grunge texture for variety */
.section-grunge {
	background-color: var(--color-cream);
	background-image: var(--bg-grunge-texture);
	background-size: cover;
	background-position: center;
}

/* Light marble section */
.section-marble {
	background-color: var(--color-white);
	background-image: var(--bg-marble-texture);
	background-size: cover;
	background-position: center;
}

/* Wood texture for food truck section */
.section-wood {
	background-color: var(--color-charcoal);
	background-image: var(--bg-wood-texture);
	background-size: cover;
	background-position: center;
	color: var(--color-cream);
}

.section-wood a {
	color: var(--color-mustard);
}

/* Solid charcoal dark section (no texture) */
.section-charcoal {
	color: var(--color-cream);
}

.section-charcoal a {
	color: var(--color-mustard);
}

.section-charcoal .section-title::after {
	background: var(--color-mustard);
}

/* Marble dark section (marble with dark overlay) */
.section-marble-dark {
	background-color: var(--color-charcoal);
	background-image: var(--bg-marble-texture);
	background-size: cover;
	background-position: center;
	background-blend-mode: overlay;
	color: var(--color-cream);
	position: relative;
}

.section-marble-dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.85);
	pointer-events: none;
}

.section-marble-dark > .container {
	position: relative;
	z-index: 1;
}

.section-marble-dark a {
	color: var(--color-mustard);
}

.section-marble-dark .section-title::after {
	background: var(--color-mustard);
}

.section-title {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	text-align: center;
	margin-bottom: var(--space-xl);
	position: relative;
	color: inherit;
	letter-spacing: 3px;
	will-change: transform, opacity;
}

.section-title::after {
	content: "";
	display: block;
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--color-burnt-orange), transparent);
	margin: var(--space-md) auto 0;
	transform-origin: center;
}

.section-dark .section-title::after {
	background: linear-gradient(90deg, transparent, var(--color-mustard), transparent);
}

.section-wood .section-title::after {
	background: linear-gradient(90deg, transparent, var(--color-mustard), transparent);
}

.subsection-title {
	font-size: 1.5rem;
	margin: var(--space-xl) 0 var(--space-lg);
	text-align: center;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--color-charcoal);
	height: var(--header-height);
	box-shadow: var(--shadow-md);
	transition: background var(--transition);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-img {
	height: 60px;
	width: auto;
	transition: transform var(--transition);
}

.logo:hover .logo-img {
	transform: scale(1.05);
}

.logo-text {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-cream);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--space-sm);
}

.nav-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background: var(--color-cream);
	margin: 5px 0;
	transition: var(--transition);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	color: var(--color-cream);
	font-family: var(--font-accent);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: var(--space-sm) 0;
	border-bottom: 2px solid transparent;
	transition: var(--transition);
}

.nav-links a:hover {
	color: var(--color-mustard);
	border-bottom-color: var(--color-mustard);
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.nav-toggle {
		display: block;
	}

	.logo-img {
		height: 50px;
	}

	.main-nav {
		position: static;
	}

	.nav-links {
		position: fixed;
		top: var(--header-height);
		right: 0;
		background: rgba(30, 30, 30, 0.98);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		flex-direction: column;
		gap: 0;
		padding: 0;
		min-width: 220px;
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
		border-radius: 0 0 var(--radius-lg) var(--radius-lg);
		visibility: hidden;
		opacity: 0;
		transform: translateY(-10px);
		overflow: hidden;
	}

	.nav-links.active {
		visibility: visible;
	}

	.nav-links li {
		width: 100%;
		opacity: 0;
		transform: translateX(20px);
	}

	.nav-links a {
		display: block;
		padding: var(--space-md) var(--space-lg);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		transition:
			background 0.2s ease,
			padding-left 0.2s ease;
	}

	.nav-links li:last-child a {
		border-bottom: none;
	}

	.nav-links a:hover {
		background: rgba(255, 255, 255, 0.05);
		padding-left: calc(var(--space-lg) + 8px);
	}

	/* Hamburger animation */
	.nav-toggle {
		position: relative;
		z-index: 100;
	}

	.nav-toggle span {
		transition: all 0.3s ease;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
		transform: translateX(-10px);
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-block;
	padding: var(--space-sm) var(--space-lg);
	font-family: var(--font-accent);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	will-change: transform;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-sm {
	padding: var(--space-xs) var(--space-md);
	font-size: 0.85rem;
}

.btn-lg {
	padding: var(--space-md) var(--space-xl);
	font-size: 1.1rem;
}

.btn-xl {
	padding: var(--space-lg) var(--space-xxl);
	font-size: 1.2rem;
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-burnt-orange) 0%, var(--color-burnt-orange-dark) 100%);
	color: var(--color-white) !important;
	border-color: var(--color-burnt-orange);
}

.btn-primary:hover {
	background: var(--color-charcoal-light);
	border-color: var(--color-burnt-orange-dark);
	color: var(--color-burnt-orange) !important;
	box-shadow: var(--shadow-glow);
}

/* Animated CTA button with subtle glow pulse */
.btn-animated {
	animation: btn-glow-pulse 2.5s ease-in-out infinite;
	box-shadow: 0 0 15px rgba(204, 85, 0, 0.4);
}

.btn-animated:hover {
	animation: none;
	box-shadow:
		0 0 25px rgba(204, 85, 0, 0.6),
		0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes btn-glow-pulse {
	0%,
	100% {
		box-shadow:
			0 0 15px rgba(204, 85, 0, 0.4),
			0 4px 15px rgba(0, 0, 0, 0.2);
		transform: translateY(0);
	}
	50% {
		box-shadow:
			0 0 25px rgba(204, 85, 0, 0.6),
			0 6px 20px rgba(0, 0, 0, 0.25);
		transform: translateY(-2px);
	}
}

.btn-secondary {
	background: var(--color-mustard);
	color: var(--color-charcoal) !important;
	border-color: var(--color-charcoal);
}

.btn-secondary:hover {
	background: var(--color-charcoal-light);
	border-color: var(--color-mustard);
	color: var(--color-mustard) !important;
}

.btn-outline {
	background: transparent;
	color: var(--color-charcoal);
	border-color: var(--color-charcoal);
}

.btn-outline:hover {
	background: var(--color-charcoal);
	color: var(--color-cream);
}

.section-dark .btn-outline {
	color: var(--color-cream);
	border-color: var(--color-bbq-red);
	background: rgba(139, 37, 0, 0.6);
}

.section-dark .btn-outline:hover {
	background: var(--color-bbq-red);
	border-color: var(--color-burnt-orange);
	color: var(--color-white);
	box-shadow: 0 0 20px rgba(204, 85, 0, 0.4);
}

/* Red accent outline button for hero/dark sections */
.btn-outline-red {
	background: rgba(139, 37, 0, 0.7);
	color: var(--color-cream);
	border: 2px solid var(--color-bbq-red);
}

.btn-outline-red:hover {
	background: var(--color-bbq-red);
	border-color: var(--color-burnt-orange);
	color: var(--color-white);
	box-shadow: 0 0 25px rgba(204, 85, 0, 0.5);
}

/* Hero section btn-outline gets red accent too */
.hero .btn-outline {
	color: var(--color-cream);
	border-color: var(--color-bbq-red);
	background: rgba(139, 37, 0, 0.6);
}

.hero .btn-outline:hover {
	background: var(--color-bbq-red);
	border-color: var(--color-burnt-orange);
	color: var(--color-white);
	box-shadow: 0 0 20px rgba(204, 85, 0, 0.4);
}

.btn-white {
	background: var(--color-white);
	color: var(--color-charcoal);
	border-color: var(--color-white);
}

.btn-white:hover {
	background: var(--color-cream);
	border-color: var(--color-cream);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-charcoal);
	color: var(--color-cream);
	padding-top: var(--header-height);
	margin-top: 0;
	overflow: hidden;
}

/* Video Background Container */
.hero-video-container {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 1;
}

/* Fallback background when no video - sits behind video */
.hero-bg-fallback {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-wood) 100%);
	background-image: var(--bg-wood-texture);
	background-size: cover;
	background-position: center;
}

/* Dark overlay for text legibility - always visible */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 2;
	pointer-events: none;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 3;
}

.hero-content {
	position: relative;
	text-align: center;
	padding: var(--space-xl);
	z-index: 10;
}

/* Hero Logo */
.hero-logo {
	width: auto;
	max-width: 400px;
	height: auto;
	margin-bottom: var(--space-lg);
	filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.8));
}

.hero-title {
	font-family: var(--font-hero);
	font-size: clamp(2.5rem, 8vw, 5rem);
	margin-bottom: var(--space-sm);
	text-shadow:
		4px 4px 12px rgba(0, 0, 0, 0.8),
		0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
	font-family: var(--font-accent);
	font-size: 3rem;
	color: var(--color-mustard);
	margin-bottom: var(--space-xl);
	letter-spacing: 4px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
	overflow: hidden;
	white-space: nowrap;
}

.hero-tagline .char {
	display: inline-block;
	opacity: 0;
}

@media (max-width: 768px) {
	.hero-tagline {
		font-size: 1.8rem;
		white-space: normal;
		letter-spacing: 2px;
	}
}

.status-banners {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	justify-content: center;
	margin-bottom: var(--space-xl);
	/* Animation handled by GSAP to prevent flicker */
}

.status-banner {
	background: rgba(0, 0, 0, 0.75);
	padding: var(--space-md) var(--space-lg);
	border-radius: var(--radius-md);
	backdrop-filter: blur(12px);
	border: 2px solid;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
	text-align: center;
}

.status-banner:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow);
}

.status-live {
	border-color: var(--color-success);
	animation: pulse-border 2s infinite;
}

.status-upcoming {
	border-color: var(--color-mustard);
}

.status-open {
	border-color: var(--color-success);
}

.status-closed {
	border-color: var(--color-error);
}

.status-badge {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 400;
	color: var(--color-cream);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.status-badge.pulse {
	animation: pulse 1.5s infinite;
}

.status-location {
	margin: var(--space-sm) 0 0;
	font-size: 1.05rem;
	font-family: var(--font-body);
	font-weight: 500;
	color: var(--color-cream);
	letter-spacing: 0.5px;
}

.status-notes {
	font-family: var(--font-note);
	color: var(--color-cream-dark);
	font-size: 0.9rem;
}

.status-time {
	font-family: var(--font-note);
	font-size: 0.95rem;
	color: var(--color-mustard);
	margin-top: var(--space-xs);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	justify-content: center;
	/* Animation handled by GSAP to prevent flicker */
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

@keyframes pulse-border {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(46, 125, 50, 0);
	}
}

/* --------------------------------------------------------------------------
   Hero - Live Truck Mode (Priority Stacking)
   -------------------------------------------------------------------------- */
.hero-truck-live {
	min-height: 100vh;
	background: linear-gradient(135deg, #1a0f00 0%, #3d1f00 50%, #1a0f00 100%);
}

.hero-truck-live::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(255, 85, 0, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.hero-live-truck {
	position: relative;
	z-index: 2;
}

.live-badge-hero {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: #11d911;
	background: radial-gradient(circle, rgba(17, 217, 17, 1) 0%, rgba(0, 110, 9, 1) 100%);
	color: white;
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 700;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: var(--space-lg);
	box-shadow: 0 4px 30px rgba(0, 191, 61, 0.4);
	position: relative;
	overflow: visible;
}

.live-pulse-ring {
	position: absolute;
	left: 1.5rem;
	width: 12px;
	height: 12px;
	background: white;
	border-radius: 50%;
	animation: live-pulse-ring 1.5s infinite;
}

@keyframes live-pulse-ring {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.hero-title-live {
	font-size: clamp(2.5rem, 10vw, 5rem);
	color: #fff;
	text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
	margin-bottom: var(--space-sm);
}

.hero-address-live {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	color: var(--color-mustard);
	font-family: var(--font-heading);
	text-transform: uppercase;
	margin-bottom: var(--space-md);
}

.hero-notes-live {
	font-size: 1.2rem;
	color: var(--color-cream);
	font-style: italic;
	opacity: 0.9;
	margin-bottom: var(--space-sm);
}

/* Hero Status Marquee */
.hero-status-marquee {
	background: rgba(251, 191, 36, 0.2);
	border: 1px solid rgba(251, 191, 36, 0.4);
	border-radius: 8px;
	padding: 0.75rem 0;
	margin: 1.5rem auto;
	max-width: 500px;
	overflow: hidden;
	position: relative;
}

.hero-status-marquee::before,
.hero-status-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 40px;
	z-index: 2;
	pointer-events: none;
}

.hero-status-marquee::before {
	left: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.hero-status-marquee::after {
	right: 0;
	background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}

/* Marquee Track & Content - GSAP Powered */
.marquee-track {
	display: flex;
	width: max-content;
	gap: 3rem;
}

.marquee-text {
	flex-shrink: 0;
	white-space: nowrap;
	color: #fbbf24;
	font-weight: 700;
	font-size: 1rem;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	padding: 0 1.5rem;
}

.hero-time-live {
	font-size: 1rem;
	color: var(--color-cream-dark);
	margin-bottom: var(--space-xl);
}

.hero-actions-live {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	justify-content: center;
	margin-bottom: var(--space-xl);
}

.hero-actions-live .btn {
	font-size: 1.1rem;
	padding: 1rem 2.5rem;
}

/* Restaurant mini card (shown below live truck) */
.hero-restaurant-mini {
	margin-top: var(--space-xl);
	padding: var(--space-lg);
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.mini-label {
	font-size: 0.75rem;
	color: var(--color-cream-dark);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: var(--space-sm);
}

.mini-title {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	color: var(--color-cream);
	margin-bottom: var(--space-sm);
}

.mini-status {
	display: inline-block;
	font-size: 0.85rem;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	margin-bottom: var(--space-sm);
}

.mini-status.open {
	background: rgba(46, 125, 50, 0.3);
	color: #4caf50;
}

.mini-status.closed {
	background: rgba(198, 40, 40, 0.3);
	color: #ef5350;
}

.mini-hours {
	font-size: 0.9rem;
	color: var(--color-cream-dark);
	margin-bottom: var(--space-md);
}

.hero-restaurant-mini .btn {
	font-size: 0.85rem;
	padding: 0.5rem 1.5rem;
}

/* --------------------------------------------------------------------------
   Map Containers
   -------------------------------------------------------------------------- */
.map-container {
	position: relative;
	width: 100%;
	height: 250px;
	border-radius: var(--radius-md);
	overflow: hidden;
	margin-bottom: var(--space-md);
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-container.large {
	height: 350px;
}

.truck-map-container {
	margin-top: var(--space-lg);
	padding: var(--space-md);
	background: rgba(0, 0, 0, 0.3);
	border-radius: var(--radius-lg);
}

.truck-map-container h3 {
	color: var(--color-cream);
	font-size: 1rem;
	margin-bottom: var(--space-md);
}

.truck-map {
	width: 100%;
	height: 250px;
	border-radius: var(--radius-md);
}

/* Restaurant map */
.restaurant-map-container {
	margin-top: var(--space-lg);
}

.restaurant-map {
	width: 100%;
	height: 200px;
	border-radius: var(--radius-md);
	border: 2px solid var(--color-cream-dark);
}

/* Schedule card map */
.schedule-card .map-container {
	height: 150px;
	margin-top: var(--space-sm);
}

/* Contact page map */
.contact-map {
	height: 400px;
	border-radius: var(--radius-lg);
}

/* Leaflet overrides for theme */
.leaflet-popup-content-wrapper {
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
	font-family: var(--font-body);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Animation Utilities
   -------------------------------------------------------------------------- */
[data-animate] {
	opacity: 0;
}

.site-header.scrolled {
	background: rgba(26, 26, 26, 0.98);
	backdrop-filter: blur(10px);
}

/* --------------------------------------------------------------------------
   Food Truck Section
   -------------------------------------------------------------------------- */

.truck-section-icon {
	display: block;
	margin: 0 auto 0.5rem;
	width: 600px;
	max-width: 100%;
	height: auto;
	will-change: transform;
	margin-top: -10%;
}

@media (max-width: 768px) {
	.truck-section-icon {
		width: 95vw;
		max-width: none;
		margin-top: -16%;
	}
}

/* Truck shake animation */
@keyframes truck-idle-shake {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	25% {
		transform: translateY(-2px) rotate(0.3deg);
	}
	50% {
		transform: translateY(0) rotate(-0.2deg);
	}
	75% {
		transform: translateY(-1px) rotate(0.2deg);
	}
}

.truck-section-icon.idle-shake {
	animation: truck-idle-shake 0.4s ease-in-out;
}

.truck-live-wrapper {
	position: relative;
	max-width: 550px;
	margin: 0 auto var(--space-xl);
}

.truck-live-card {
	position: relative;
	background: #111;
	color: var(--color-white);
	padding: 2.5rem 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.2);
	z-index: 0;
	overflow: visible;
}

/* Animated border using clip rect technique */
.truck-live-card::before,
.truck-live-card::after {
	content: "";
	position: absolute;
	top: -1%;
	bottom: -1%;
	left: -1%;
	right: -1%;
	border-radius: 13px;
	box-shadow: inset 0 0 0 2px #4ade80;
	z-index: -1;
	animation: clipMe 6s linear infinite;
}

.truck-live-card::after {
	animation-delay: -3s;
}

@keyframes clipMe {
	0%,
	100% {
		clip: rect(0px, 570px, 2px, 0px);
	}
	25% {
		clip: rect(0px, 2px, 570px, 0px);
	}
	50% {
		clip: rect(568px, 570px, 570px, 0px);
	}
	75% {
		clip: rect(0px, 570px, 570px, 568px);
	}
}

/* Subtle ambient glow — much less aggressive */
.truck-live-wrapper::before {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: 14px;
	background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.12) 0%, transparent 70%);
	z-index: -2;
	pointer-events: none;
}

@keyframes glowShift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.live-indicator {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: #22c55e;
	color: #fff;
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.85rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.live-indicator.pulse::before {
	content: "";
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

.truck-live-card h3 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
	color: #fff;
	letter-spacing: -0.02em;
}

.truck-address {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: #a1a1aa;
	font-weight: 400;
}

.truck-notes {
	font-style: italic;
	color: #71717a;
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
}

/* Status Marquee (Food Truck Section) */
.status-marquee {
	background: rgba(251, 191, 36, 0.15);
	border: 1px solid rgba(251, 191, 36, 0.3);
	border-radius: 6px;
	padding: 0.5rem 0;
	margin: 1rem 0;
	overflow: hidden;
	position: relative;
}

.status-marquee::before,
.status-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 30px;
	z-index: 2;
	pointer-events: none;
}

.status-marquee::before {
	left: 0;
	background: linear-gradient(to right, #222, transparent);
}

.status-marquee::after {
	right: 0;
	background: linear-gradient(to left, #222, transparent);
}

.status-marquee .marquee-text {
	font-size: 0.9rem;
}

.truck-time {
	display: inline-block;
	margin: 1.25rem 0;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.3);
	border-radius: 6px;
	color: #4ade80;
	font-weight: 500;
}

.truck-live-card .btn {
	background: #4ade80;
	color: #0a0a0a;
	border: none;
	font-weight: 700;
	padding: 0.75rem 2rem;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.truck-live-card .btn:hover {
	background: #22c55e;
	transform: translateY(-2px);
	box-shadow: 0 10px 40px rgba(74, 222, 128, 0.3);
}

.truck-status-card {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	padding: var(--space-lg) var(--space-xl);
	border-radius: var(--radius-md);
	text-align: center;
	max-width: 450px;
	margin: 0 auto var(--space-xl);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.truck-status {
	font-size: 1.1rem;
	color: var(--color-smoke);
	margin-bottom: 0.5rem;
}

.section-dark .truck-status {
	color: var(--color-cream-dark);
}

.truck-schedule {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-md);
	max-width: 900px;
	margin: 0 auto;
}

.schedule-card {
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	padding: var(--space-md);
	display: flex;
	gap: var(--space-md);
	align-items: flex-start;
	will-change: transform, box-shadow;
	transition: none; /* Let GSAP handle */
}

.schedule-date {
	background: linear-gradient(135deg, var(--color-burnt-orange) 0%, var(--color-burnt-orange-dark) 100%);
	color: var(--color-white);
	padding: var(--space-sm) var(--space-md);
	border-radius: var(--radius-sm);
	text-align: center;
	min-width: 70px;
	box-shadow: 0 4px 15px rgba(204, 85, 0, 0.3);
}

.date-day {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
}

.date-num {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	font-family: var(--font-heading);
}

.date-month {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
}

.schedule-info h4 {
	font-size: 1.1rem;
	margin-bottom: var(--space-xs);
}

.schedule-address,
.schedule-time {
	font-size: 0.9rem;
	margin-bottom: var(--space-xs);
	color: var(--color-cream-dark);
}

.schedule-notes {
	font-size: 0.85rem;
	font-style: italic;
	color: var(--color-mustard);
}

.no-stops {
	text-align: center;
	padding: var(--space-xl);
	color: var(--color-smoke);
}

.section-dark .no-stops {
	color: var(--color-cream-dark);
}

/* --------------------------------------------------------------------------
   Restaurant Section
   -------------------------------------------------------------------------- */
.restaurant-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-xl);
	max-width: 900px;
	margin: 0 auto;
}

.info-card,
.hours-card {
	background: var(--color-white);
	padding: var(--space-xl);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

.restaurant-status {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: var(--space-lg);
	padding: var(--space-md);
	border-radius: var(--radius-sm);
}

.restaurant-status.open {
	background: rgba(46, 125, 50, 0.1);
	color: var(--color-success);
}

.restaurant-status.closed {
	background: rgba(198, 40, 40, 0.1);
	color: var(--color-error);
}

.status-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: currentColor;
}

.restaurant-status.open .status-dot {
	animation: pulse 1.5s infinite;
}

.restaurant-details {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.detail-item {
	margin: 0;
}

.detail-item a {
	color: var(--color-charcoal);
}

.detail-item a:hover {
	color: var(--color-burnt-orange);
}

.hours-card h3 {
	text-align: center;
	margin-bottom: var(--space-lg);
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.hours-row {
	display: flex;
	justify-content: space-between;
	padding: var(--space-sm);
	border-radius: var(--radius-sm);
}

.hours-row.today {
	background: rgba(212, 160, 23, 0.15);
	font-weight: 600;
}

.hours-row .day {
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   Menu Section
   -------------------------------------------------------------------------- */
.menu-cta {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--space-xl);
}

.menu-category {
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-md);
	padding: var(--space-lg);
}

.category-title {
	font-size: 1.5rem;
	color: var(--color-mustard);
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-sm);
	border-bottom: 2px solid var(--color-mustard);
}

.menu-items {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.menu-item {
	padding: var(--space-sm) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:last-child {
	border-bottom: none;
}

.menu-item.sold-out {
	opacity: 0.6;
}

.item-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: var(--space-md);
}

.item-name {
	font-family: var(--font-menu);
	font-size: 1.2rem;
	letter-spacing: 0.5px;
}

.item-price {
	font-family: var(--font-accent);
	font-size: 1.1rem;
	color: var(--color-mustard);
	white-space: nowrap;
}

.item-description {
	font-size: 0.9rem;
	color: var(--color-cream-dark);
	margin: var(--space-xs) 0 0;
}

.sold-out-badge {
	display: inline-block;
	background: var(--color-error);
	color: var(--color-white);
	font-family: var(--font-note);
	font-size: 0.8rem;
	padding: 2px 10px;
	border-radius: 10px;
	text-transform: uppercase;
	margin-top: var(--space-xs);
}

/* --------------------------------------------------------------------------
   Menu Favorites Section (Homepage)
   -------------------------------------------------------------------------- */
.section-subtitle {
	text-align: center;
	font-family: var(--font-note);
	font-size: 1.2rem;
	color: var(--color-smoke);
	margin-top: calc(var(--space-lg) * -1);
	margin-bottom: var(--space-xl);
}

.favorites-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-lg);
	margin-bottom: var(--space-xl);
}

@media (max-width: 1200px) {
	.favorites-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.favorite-card {
	background: #ffffff;
	background: linear-gradient(177deg, rgba(255, 255, 255, 1) 53%, rgba(250, 250, 250, 1) 100%);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transform-style: preserve-3d;
	perspective: 1000px;
	will-change: transform, box-shadow;
	transition: none; /* Let GSAP handle transitions */
	position: relative;
}

.favorite-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-burnt-orange), var(--color-mustard));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.favorite-card:hover::before {
	opacity: 1;
}

.favorite-image {
	position: relative;
	height: 220px;
	background: var(--color-cream-dark);
	overflow: hidden;
}

.favorite-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
}

.favorite-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-wood) 100%);
}

.favorite-content {
	padding: var(--space-lg);
	position: relative;
}

.favorite-name {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: var(--color-charcoal);
	margin-bottom: var(--space-sm);
	letter-spacing: 1px;
}

.favorite-description {
	font-size: 0.95rem;
	color: var(--color-smoke);
	margin-bottom: var(--space-md);
	line-height: 1.6;
}

.favorite-price {
	display: inline-block;
	font-family: var(--font-accent);
	font-size: 1.4rem;
	color: var(--color-burnt-orange);
	font-weight: 700;
	position: relative;
}

.favorite-price::before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color-burnt-orange);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.favorite-card:hover .favorite-price::before {
	transform: scaleX(1);
}

.menu-actions {
	text-align: center;
	display: flex;
	justify-content: center;
	gap: var(--space-md);
	flex-wrap: wrap;
}

/* Fire video background for fan favorites */
.section-favorites-fire {
	position: relative;
	overflow: hidden;
	background: #050505;
}

.favorites-fire-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	/* filter: brightness(0.82) contrast(1.08) saturate(1.05); */
	pointer-events: none;
}

.section-favorites-fire::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.62) 100%);
	z-index: 1;
	pointer-events: none;
}

.section-favorites-fire > .container {
	position: relative;
	z-index: 2;
}

/* --------------------------------------------------------------------------
   Events Section
   -------------------------------------------------------------------------- */
.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-lg);
	max-width: 1000px;
	margin: 0 auto;
}

.event-card {
	background: var(--color-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}

.event-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.event-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.event-content {
	padding: var(--space-lg);
}

.event-content h3 {
	font-size: 1.3rem;
	margin-bottom: var(--space-sm);
}

.event-date {
	color: var(--color-burnt-orange);
	font-weight: 600;
	margin-bottom: var(--space-sm);
}

.event-description {
	color: var(--color-smoke);
	font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Gallery Section
   -------------------------------------------------------------------------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--space-md);
}

.gallery-item {
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: var(--radius-md);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}

.gallery-item:hover img {
	transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-wrapper {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--space-xl);
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.about-wrapper {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.about-logo {
	text-align: center;
}

.about-logo img {
	max-width: 250px;
	height: auto;
	filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.about-content {
	font-size: 1.1rem;
	line-height: 1.8;
	max-width: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.about-content .section-title {
	text-align: left;
}

@media (max-width: 768px) {
	.about-content .section-title {
		text-align: center;
	}
}

.about-cta {
	margin-top: var(--space-lg);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	align-items: center;
}

@media (max-width: 768px) {
	.about-cta {
		justify-content: center;
	}
}

/* --------------------------------------------------------------------------
   Page Hero (for subpages)
   -------------------------------------------------------------------------- */
.page-hero {
	padding: calc(var(--header-height) + var(--space-xxl)) var(--space-md) var(--space-xxl);
	text-align: center;
	position: relative;
}

.page-hero-dark {
	background: var(--color-charcoal);
	background-image: var(--bg-wood-texture);
	background-size: cover;
	background-position: center;
	color: var(--color-cream);
}

.page-hero-dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
	pointer-events: none;
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero-logo {
	max-width: 150px;
	height: auto;
	margin-bottom: var(--space-lg);
	filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
}

.page-title {
	font-family: var(--font-hero);
	font-size: clamp(2.5rem, 6vw, 4rem);
	margin-bottom: var(--space-sm);
	text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
	font-family: var(--font-note);
	font-size: 1.3rem;
	opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Full Menu Page
   -------------------------------------------------------------------------- */
.full-menu-grid {
	display: flex;
	flex-direction: column;
	gap: var(--space-xxl);
}

.menu-section {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	box-shadow: var(--shadow-md);
}

.menu-section-title {
	font-family: var(--font-heading);
	font-size: 2rem;
	color: var(--color-burnt-orange);
	margin-bottom: var(--space-sm);
	padding-bottom: var(--space-sm);
	border-bottom: 3px solid var(--color-mustard);
}

.menu-section-desc {
	font-family: var(--font-note);
	color: var(--color-smoke);
	margin-bottom: var(--space-lg);
}

.menu-section-items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-lg);
}

.full-menu-item {
	display: flex;
	gap: var(--space-md);
	padding: var(--space-md);
	border-radius: var(--radius-md);
	background: var(--color-cream);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}

.full-menu-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-sm);
}

.full-menu-item.sold-out {
	opacity: 0.6;
}

.full-menu-item-image {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.full-menu-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.full-menu-item-content {
	flex: 1;
}

.full-menu-item-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: var(--space-sm);
	margin-bottom: var(--space-xs);
}

.full-menu-item-name {
	font-family: var(--font-menu);
	font-size: 1.3rem;
	color: var(--color-charcoal);
	margin: 0;
}

.full-menu-item-price {
	font-family: var(--font-accent);
	font-size: 1.2rem;
	color: var(--color-burnt-orange);
	white-space: nowrap;
}

.full-menu-item-description {
	font-size: 0.9rem;
	color: var(--color-smoke);
	line-height: 1.5;
	margin: 0;
}

/* Menu Gallery */
.menu-gallery-section {
	margin-top: var(--space-xxl);
	padding-top: var(--space-xxl);
	border-top: 2px dashed var(--color-wood-light);
}

.menu-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--space-lg);
}

.menu-gallery-placeholder {
	aspect-ratio: 1;
	background: var(--color-cream);
	border: 3px dashed var(--color-wood-light);
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--color-smoke);
}

.menu-gallery-placeholder span {
	font-size: 3rem;
	margin-bottom: var(--space-sm);
}

.menu-gallery-placeholder p {
	font-family: var(--font-note);
	margin: 0;
}

/* --------------------------------------------------------------------------
   Chalkboard Menu Styling
   -------------------------------------------------------------------------- */
.section-chalkboard {
	background-color: #1a1a1a;
	background-image: var(--bg-newchalkboard);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #f5f5f5;
	position: relative;
	padding: var(--space-xxl) 0;
}

.section-chalkboard::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	pointer-events: none;
}

.section-chalkboard > .container {
	position: relative;
	z-index: 1;
}

/* Chalkboard menu grid */
.chalkboard-menu-grid {
	display: flex;
	flex-direction: column;
	gap: var(--space-xl);
}

.chalkboard-section {
	background: rgba(0, 0, 0, 0.4);
	border: 3px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	backdrop-filter: blur(2px);
	position: relative;
}

/* Chalk dust effect on corners */
.chalkboard-section::before {
	content: "";
	position: absolute;
	top: -2px;
	left: 20px;
	right: 20px;
	height: 4px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 80%, transparent);
	border-radius: 2px;
}

.chalkboard-section-title {
	font-family: var(--font-menu);
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	color: #ffd54f;
	text-align: center;
	margin-bottom: var(--space-md);
	text-shadow:
		2px 2px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(255, 213, 79, 0.3);
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
	width: 100%;
}

/* Underline decoration */
.chalkboard-section-title::after {
	content: "";
	display: block;
	width: 60%;
	max-width: 200px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #ffd54f 20%, #ffd54f 80%, transparent);
	margin: var(--space-sm) auto 0;
	opacity: 0.6;
}

.chalkboard-section-desc {
	font-family: var(--font-note);
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	margin-bottom: var(--space-lg);
	font-style: italic;
}

.chalkboard-items {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.chalkboard-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: var(--space-md);
	padding: var(--space-sm) 0;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
	transition: transform 0.2s ease;
}

.chalkboard-item:last-child {
	border-bottom: none;
}

.chalkboard-item:hover {
	transform: translateX(5px);
}

.chalkboard-item.sold-out {
	opacity: 0.5;
}

.chalkboard-item-info {
	flex: 1;
	padding-right: var(--space-md);
}

.chalkboard-item-name {
	font-family: var(--font-menu);
	font-size: 1.3rem;
	color: #ffffff;
	margin: 0 0 var(--space-xs) 0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	letter-spacing: 1px;
}

.chalkboard-item-description {
	font-family: var(--font-note);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	line-height: 1.4;
}

.chalkboard-item-price {
	font-family: var(--font-menu);
	font-size: 1.4rem;
	color: #81c784;
	white-space: nowrap;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	flex-shrink: 0;
}

.chalkboard-item .sold-out-badge {
	background: rgba(198, 40, 40, 0.8);
	font-size: 0.7rem;
	padding: 2px 8px;
}

/* Chalkboard with images variant */
.chalkboard-item-with-image {
	display: flex;
	gap: var(--space-md);
	padding: var(--space-md);
	background: rgba(255, 255, 255, 0.03);
	border-radius: var(--radius-md);
	margin-bottom: var(--space-sm);
	border: none;
}

.chalkboard-item-image {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.chalkboard-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Two column layout for larger screens */
@media (min-width: 768px) {
	.chalkboard-items-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md) var(--space-xl);
	}
}

/* Menu CTA on chalkboard */
.section-chalkboard .menu-cta {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.section-chalkboard .menu-cta .btn {
	background: linear-gradient(135deg, var(--color-burnt-orange) 0%, var(--color-bbq-red) 100%);
	border: 2px solid var(--color-mustard);
	color: white;
	font-size: 1.1rem;
	padding: var(--space-md) var(--space-xl);
}

.section-chalkboard .menu-cta .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(204, 85, 0, 0.4);
}

/* Chalkboard decorative elements */
.chalk-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	margin: var(--space-xl) 0;
	color: rgba(255, 255, 255, 0.4);
	font-family: var(--font-menu);
	font-size: 1.5rem;
}

.chalk-divider::before,
.chalk-divider::after {
	content: "";
	flex: 1;
	max-width: 100px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* --------------------------------------------------------------------------
   Menu Accordion
   -------------------------------------------------------------------------- */
.menu-accordion {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
}

.accordion-section {
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-lg);
	overflow: hidden;
	backdrop-filter: blur(2px);
}

.accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-lg) var(--space-xl);
	cursor: pointer;
	transition: background 0.3s ease;
	user-select: none;
}

.accordion-header:hover {
	background: rgba(255, 255, 255, 0.05);
}

.accordion-title {
	font-family: var(--font-menu);
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	color: #ffd54f;
	text-shadow:
		2px 2px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(255, 213, 79, 0.3);
	letter-spacing: 2px;
	margin: 0;
}

.accordion-icon {
	font-size: 1.5rem;
	color: #ffd54f;
	transition: transform 0.3s ease;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.accordion-section.collapsed .accordion-icon {
	transform: rotate(-90deg);
}

.accordion-content {
	max-height: 5000px;
	overflow: hidden;
	transition:
		max-height 0.4s ease,
		padding 0.3s ease;
	padding: 0 var(--space-xl) var(--space-lg);
}

.accordion-section.collapsed .accordion-content {
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.accordion-desc {
	font-family: var(--font-note);
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	margin-bottom: var(--space-lg);
	font-style: italic;
}

/* --------------------------------------------------------------------------
   Menu Item Lightbox
   -------------------------------------------------------------------------- */
.menu-item-thumb {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	cursor: pointer;
	border: 2px solid rgba(255, 255, 255, 0.2);
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.menu-item-thumb:hover {
	transform: scale(1.1);
	border-color: #ffd54f;
	box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
}

.menu-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Lightbox Overlay */
.lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
	backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	animation: lightbox-zoom 0.3s ease;
}

@keyframes lightbox-zoom {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.lightbox-image {
	max-width: 100%;
	max-height: 85vh;
	border-radius: var(--radius-lg);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
	text-align: center;
	color: white;
	font-family: var(--font-menu);
	font-size: 1.3rem;
	margin-top: var(--space-md);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	background: none;
	border: none;
	color: white;
	font-size: 2.5rem;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		color 0.2s ease;
	line-height: 1;
}

.lightbox-close:hover {
	transform: scale(1.2);
	color: #ffd54f;
}

/* --------------------------------------------------------------------------
   Food Gallery Swiper
   -------------------------------------------------------------------------- */
.food-gallery-wrapper {
	background-image: url("/assets/images/food-gallery-bg.webp");
	margin-top: var(--space-xxl);
	padding-top: var(--space-xl);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-kitchen-gallery .food-gallery-wrapper {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.food-gallery-header {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.food-gallery-header h2 {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	color: #ffd54f;
	text-shadow:
		2px 2px 0 rgba(0, 0, 0, 0.5),
		0 0 30px rgba(255, 213, 79, 0.2);
	margin-bottom: var(--space-sm);
}

.food-gallery-header p {
	font-family: var(--font-note);
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.1rem;
}

.food-swiper {
	padding: var(--space-lg) 0 var(--space-xxl);
	overflow: visible;
}

.food-swiper .swiper-slide {
	height: 350px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.food-swiper .swiper-slide-active {
	transform: scale(1.05);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.food-swiper .swiper-slide:hover {
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.food-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.food-swiper .swiper-slide:hover img {
	transform: scale(1.1);
}

.food-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.food-swiper .swiper-slide:hover .food-slide-overlay {
	opacity: 1;
}

/* Swiper Pagination */
.food-swiper .swiper-pagination {
	bottom: 0;
}

.food-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	opacity: 1;
	transition: all 0.3s ease;
}

.food-swiper .swiper-pagination-bullet-active {
	background: #ffd54f;
	width: 30px;
	border-radius: 6px;
}

/* Swiper Navigation */
.food-swiper .swiper-button-prev,
.food-swiper .swiper-button-next {
	color: #ffd54f;
	background: rgba(0, 0, 0, 0.5);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.food-swiper .swiper-button-prev::after,
.food-swiper .swiper-button-next::after {
	font-size: 1.2rem;
}

.food-swiper .swiper-button-prev:hover,
.food-swiper .swiper-button-next:hover {
	background: #ffd54f;
	color: #1a1a1a;
	transform: scale(1.1);
}

/* Responsive Swiper */
@media (max-width: 768px) {
	.food-swiper .swiper-slide {
		height: 280px;
	}

	.food-swiper .swiper-button-prev,
	.food-swiper .swiper-button-next {
		display: none;
	}
}

.text-center {
	text-align: center;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: var(--space-md);
	flex-wrap: wrap;
	margin-top: var(--space-lg);
}

/* Food Gallery in Light Sections */
.section-paper .food-gallery-wrapper {
	border-top-color: rgba(0, 0, 0, 0.1);
}

.section-paper .food-gallery-header h2 {
	color: var(--color-bbq);
	text-shadow: none;
}

.section-paper .food-gallery-header p {
	color: rgba(0, 0, 0, 0.6);
}

.section-paper .food-swiper .swiper-pagination-bullet {
	background: rgba(0, 0, 0, 0.2);
}

.section-paper .food-swiper .swiper-pagination-bullet-active {
	background: var(--color-bbq);
}

.section-paper .food-swiper .swiper-button-prev,
.section-paper .food-swiper .swiper-button-next {
	color: #fff;
	background: var(--color-bbq);
}

.section-paper .food-swiper .swiper-button-prev:hover,
.section-paper .food-swiper .swiper-button-next:hover {
	background: var(--color-ember);
	color: #fff;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background-color: var(--color-charcoal);
	background-image: var(--bg-dark-texture);
	background-size: cover;
	background-position: center;
	color: var(--color-cream);
	padding: var(--space-xxl) 0 var(--space-lg);
	position: relative;
	align-items: center !important;
}

.site-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
	pointer-events: none;
}

.site-footer .container {
	position: relative;
	z-index: 1;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
	gap: 10px;
	margin-bottom: var(--space-xl);
}

.footer-brand-row {
	display: flex;
	justify-content: center;
	margin-bottom: var(--space-lg);
}

.footer-logo-section {
	text-align: center;
}

.footer-logo {
	max-width: 180px;
	height: auto;
	margin-bottom: var(--space-md);
}

.footer-tagline {
	font-family: var(--font-note);
	font-size: 0.95rem;
	color: var(--color-cream-dark);
}

.footer-section h3 {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	color: var(--color-mustard);
	margin-bottom: var(--space-md);
	text-align: center;
}

.footer-section p {
	margin-bottom: var(--space-sm);
	font-size: 0.95rem;
}

.footer-section a {
	color: var(--color-cream);
	transition: color var(--transition);
}

.footer-section a:hover {
	color: var(--color-mustard);
}

.hours-line {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	padding: 0.25rem 0;
}

.hours-line .day {
	font-family: var(--font-accent);
	letter-spacing: 1px;
}

/* Social Links */
.social-links {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	margin-bottom: var(--space-md);
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: 0.75rem 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm);
	color: var(--color-cream);
	font-family: var(--font-accent);
	font-size: 0.9rem;
	letter-spacing: 1px;
	max-width: 220px;
	transition:
		background var(--transition),
		transform var(--transition);
}

.social-link:hover {
	background: var(--color-burnt-orange);
	color: var(--color-white);
	transform: translateY(-2px);
}

/* Facebook brand styling - base state */
.social-link-facebook {
	background: linear-gradient(135deg, #3b5998 0%, #4a6cb3 100%);
	color: #ffffff;
	border: 1px solid #3b5998;
	box-shadow: 0 4px 12px rgba(59, 89, 152, 0.3);
	font-weight: 600;
}

.social-link-facebook svg {
	color: #ffffff;
	width: 18px;
	height: 18px;
}

.social-link-facebook:hover {
	background: linear-gradient(135deg, #2d4373 0%, #3b5998 100%);
	color: #ffffff;
	border: 1px solid #8b9dc3;
	box-shadow: 0 6px 16px rgba(59, 89, 152, 0.45);
	transform: translateY(-2px);
}

/* Footer-specific button styling */
.footer-section .social-links {
	align-items: center;
}

.footer-section .btn.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 220px;
	padding: 0.75rem 1.5rem;
	font-size: 0.9rem;
}

/* Facebook button style for standalone buttons */
.btn.social-link-facebook {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #3b5998 0%, #4a6cb3 100%);
	color: #ffffff;
	border: 2px solid #3b5998;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(59, 89, 152, 0.35);
	transition: all 0.3s ease;
}

.btn.social-link-facebook:hover {
	background: linear-gradient(135deg, #2d4373 0%, #3b5998 100%);
	border-color: #8b9dc3;
	box-shadow: 0 6px 20px rgba(59, 89, 152, 0.5);
	transform: translateY(-3px);
	color: #ffffff;
}

.social-link svg {
	width: 18px;
	height: 18px;
}

.mt-lg {
	margin-top: var(--space-lg);
}

/* Footer Buttons Container */
.footer-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
}

.footer-buttons .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 180px;
	padding: 0.75rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
}

/* Facebook button */
.btn-facebook {
	background: linear-gradient(135deg, #3b5998 0%, #4a6cb3 100%);
	color: #ffffff !important;
	border: 1px solid #3b5998;
	box-shadow: 0 4px 12px rgba(59, 89, 152, 0.3);
}

.btn-facebook:hover {
	background: linear-gradient(135deg, #2d4373 0%, #3b5998 100%);
	border-color: #8b9dc3;
	box-shadow: 0 6px 16px rgba(59, 89, 152, 0.45);
	transform: translateY(-2px);
	color: #ffffff !important;
}

.btn-facebook svg {
	width: 18px;
	height: 18px;
}

.footer-bottom {
	text-align: center;
	padding-top: var(--space-lg);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: var(--color-smoke);
}

/* --------------------------------------------------------------------------
   Error Pages
   -------------------------------------------------------------------------- */
.error-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--space-xl);
}

.error-page h1 {
	font-size: 8rem;
	color: var(--color-burnt-orange);
	margin-bottom: var(--space-sm);
}

.error-page p {
	font-size: 1.5rem;
	margin-bottom: var(--space-xl);
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.page-hero-about {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("/assets/images/backgrounds/wood-bg.webp");
	background-size: cover;
	background-position: center;
	color: var(--color-cream);
	min-height: 40vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
	pointer-events: none;
}

/* About Story Section */
.about-story-wrapper {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--space-xxl);
	align-items: center;
}

.about-story-image img {
	width: 100%;
	max-width: 300px;
	border-radius: var(--radius-lg);
}

.about-story-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: var(--space-md);
	color: var(--color-charcoal);
}

/* Award Section */
.award-showcase {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	align-items: center;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto var(--space-xl);
}

.award-badge {
	display: none; /* Using trophy instead */
}

@keyframes goldShine {
	0%,
	100% {
		box-shadow:
			0 10px 40px rgba(255, 193, 7, 0.4),
			inset 0 2px 5px rgba(255, 255, 255, 0.5);
	}
	50% {
		box-shadow:
			0 15px 50px rgba(255, 193, 7, 0.6),
			inset 0 2px 5px rgba(255, 255, 255, 0.7);
	}
}

.award-year {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	color: var(--color-mustard);
}

.award-icon {
	font-size: 2.5rem;
	line-height: 1;
}

.award-text {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	color: var(--color-cream);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.award-details {
	text-align: center;
	color: var(--color-cream);
	max-width: 600px;
}

.award-details h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: var(--color-mustard);
	margin-bottom: var(--space-xs);
}

.award-title {
	font-family: var(--font-hero);
	font-size: 1.8rem;
	margin-bottom: var(--space-md);
	color: var(--color-cream);
}

.award-description {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: var(--space-lg);
	opacity: 0.95;
}

/* Community Section */
.community-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto var(--space-xxl);
}

.donation-amount {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: var(--space-lg);
}

.amount-prefix {
	font-family: var(--font-note);
	font-size: 1.2rem;
	color: var(--color-smoke);
}

.amount-number {
	font-family: var(--font-hero);
	font-size: clamp(3rem, 8vw, 5rem);
	color: var(--color-burnt-orange);
	line-height: 1.1;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.amount-suffix {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	color: var(--color-charcoal);
	letter-spacing: 2px;
	text-transform: uppercase;
}

.community-text {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--color-charcoal);
}

.community-causes h3 {
	text-align: center;
	font-family: var(--font-heading);
	font-size: 1.6rem;
	margin-bottom: var(--space-xl);
	color: var(--color-charcoal);
}

.causes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-lg);
}

.cause-card {
	background: #ffffff;
	background: linear-gradient(177deg, rgba(255, 255, 255, 1) 53%, rgba(250, 250, 250, 1) 100%);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	text-align: center;
	box-shadow: var(--shadow-md);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}

.cause-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.cause-icon {
	font-size: 3rem;
	display: block;
	margin-bottom: var(--space-md);
}

.cause-card h4 {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	color: var(--color-burnt-orange);
	margin-bottom: var(--space-sm);
}

.cause-card p {
	color: var(--color-smoke);
	line-height: 1.6;
}

/* Donation Gallery Section */
.donation-gallery-wrapper {
	max-width: 1000px;
	margin: 0 auto;
}

.donation-gallery-header {
	text-align: center;
	margin-bottom: var(--space-xl);
	color: var(--color-cream);
}

.donation-gallery-header h2 {
	font-family: var(--font-hero);
	font-size: 2rem;
	margin-bottom: var(--space-xs);
}

.donation-gallery-header p {
	font-family: var(--font-note);
	font-size: 1.1rem;
	opacity: 0.9;
}

.donation-swiper {
	padding-bottom: var(--space-xl);
}

.donation-swiper .swiper-slide {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	position: relative;
	cursor: pointer;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.donation-swiper .swiper-slide-active {
	transform: scale(1.05);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.donation-swiper .swiper-slide img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
}

.donation-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
	pointer-events: none;
}

.donation-placeholder {
	width: 100%;
	height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-cream);
}

.donation-placeholder span {
	font-size: 4rem;
	margin-bottom: var(--space-md);
}

.donation-swiper .swiper-pagination-bullet {
	background: var(--color-cream);
	opacity: 0.5;
}

.donation-swiper .swiper-pagination-bullet-active {
	background: var(--color-mustard);
	opacity: 1;
}

.donation-swiper .swiper-button-prev,
.donation-swiper .swiper-button-next {
	color: var(--color-cream);
	opacity: 0.8;
}

.donation-swiper .swiper-button-prev:hover,
.donation-swiper .swiper-button-next:hover {
	opacity: 1;
}

/* About CTA Section */
.about-cta-wrapper {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.cta-sauces-img {
	max-width: 350px;
	height: auto;
	margin-bottom: var(--space-lg);
	border-radius: var(--radius-lg);
}

.about-cta-wrapper h2 {
	font-family: var(--font-heading);
	font-size: 2rem;
	color: var(--color-charcoal);
	margin-bottom: var(--space-md);
}

.about-cta-wrapper p {
	font-size: 1.1rem;
	color: var(--color-smoke);
	margin-bottom: var(--space-xl);
	line-height: 1.7;
}

.about-cta-wrapper .cta-buttons {
	display: flex;
	gap: var(--space-md);
	justify-content: center;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	:root {
		--header-height: 60px;
	}

	/* Fix hero viewport height for mobile browsers with address bar */
	.hero {
		min-height: 100svh; /* Safe viewport height - accounts for browser chrome */
		min-height: -webkit-fill-available; /* iOS Safari fallback */
		overflow-y: visible; /* Allow content to extend if needed */
		padding-bottom: var(--space-xl); /* Extra padding for button visibility */
	}

	.hero-content {
		padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 20px));
	}

	.section {
		padding: var(--space-xl) 0;
	}

	.section-title {
		font-size: 2rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.hero-actions .btn {
		width: 100%;
		max-width: 300px;
	}

	.status-banners {
		flex-direction: column;
		align-items: center;
	}

	.status-banner {
		width: 100%;
		max-width: 400px;
	}

	.menu-grid {
		grid-template-columns: 1fr;
	}

	.restaurant-info {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hours-line {
		justify-content: center;
		gap: var(--space-md);
	}

	/* Accordion mobile improvements */
	.accordion-header {
		padding: var(--space-md) var(--space-lg);
	}

	.accordion-title {
		font-size: 1.3rem;
	}

	.accordion-content {
		padding: 0 var(--space-md) var(--space-md);
	}

	.chalkboard-item {
		flex-wrap: wrap;
		gap: var(--space-sm);
	}

	.chalkboard-item-name {
		font-size: 1.1rem;
	}

	.chalkboard-item-price {
		font-size: 1.2rem;
	}

	.menu-item-thumb {
		width: 50px;
		height: 50px;
	}

	/* Hero mobile improvements */
	.hero-logo {
		max-width: 280px;
	}

	/* Favorite cards mobile */
	.favorite-image {
		height: 180px;
	}

	.favorite-content {
		padding: var(--space-md);
	}

	.favorite-name {
		font-size: 1.2rem;
	}

	/* Page hero mobile */
	.page-hero {
		padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
	}

	.page-hero-logo {
		max-width: 100px;
	}

	.page-title {
		font-size: 2rem;
	}

	.page-subtitle {
		font-size: 1.1rem;
	}

	/* About page mobile */
	.about-story-wrapper {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.about-story-image {
		order: -1;
	}

	.about-story-image img {
		max-width: 200px;
		margin: 0 auto;
	}

	.award-showcase {
		flex-direction: column;
		text-align: center;
	}

	.award-badge {
		width: 140px;
		height: 140px;
	}

	.award-details {
		text-align: center;
	}

	.award-title {
		font-size: 1.4rem;
	}

	.donation-swiper .swiper-slide img {
		height: 200px;
	}

	/* Buttons mobile */
	.btn-lg {
		padding: var(--space-sm) var(--space-lg);
		font-size: 0.95rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-buttons .btn {
		width: 100%;
		max-width: 300px;
	}
}

/* Extra small screens */
@media (max-width: 480px) {
	:root {
		--space-lg: 1.5rem;
		--space-xl: 2rem;
		--space-xxl: 3rem;
	}

	.container {
		padding: 0 var(--space-md);
	}

	.section-title {
		font-size: 1.6rem;
	}

	.accordion-title {
		font-size: 1.1rem;
	}

	.chalkboard-item-info {
		padding-right: 0;
	}

	.chalkboard-item-price {
		width: 100%;
		text-align: right;
	}

	.food-gallery-header h2 {
		font-size: 1.6rem;
	}

	.lightbox-caption {
		font-size: 1rem;
	}
}

.shiny {
	color: #f5c21b;
	background: -webkit-gradient(linear, left top, left bottom, from(#f5c21b), to(#d17000));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	font-family: "Source Sans Pro", sans-serif;
	font-size: clamp(2.5rem, 10vw, 6rem);
	font-weight: 900;
	position: relative;
	text-transform: uppercase;
}

.shiny::before {
	background-position: -180px;
	-webkit-animation: flare 5s infinite;
	-webkit-animation-timing-function: linear;
	background-image: linear-gradient(65deg, transparent 20%, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.3) 27%, transparent 27%, transparent 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	content: "$150,000";
	color: #fff;
	display: block;
	position: absolute;
}

.shiny::after {
	content: "$150,000";
	color: #fff;
	display: block;
	position: absolute;
	text-shadow:
		0 1px #6e4414,
		0 2px #6e4414,
		0 3px #6e4414,
		0 4px #6e4414,
		0 5px #6e4414,
		0 6px #6e4414,
		0 7px #6e4414,
		0 8px #6e4414,
		0 9px #6e4414,
		0 10px #6e4414;
	top: 0;
	z-index: -1;
}

.inner-shiny::after,
.inner-shiny::before {
	-webkit-animation: sparkle 5s infinite;
	-webkit-animation-timing-function: linear;
	background: #fff;
	border-radius: 100%;
	box-shadow:
		0 0 5px #fff,
		0 0 10px #fff,
		0 0 15px #fff,
		0 0 20px #fff,
		0 0 25px #fff,
		0 0 30px #fff,
		0 0 35px #fff;
	content: "";
	display: block;
	height: 0.15em;
	opacity: 0.7;
	position: absolute;
	width: 0.15em;
}

.inner-shiny::before {
	-webkit-animation-delay: 0.2s;
	height: 0.12em;
	left: 0.12em;
	top: 0.2em;
	width: 0.12em;
}

.inner-shiny::after {
	top: 0.08em;
	right: -0.05em;
}

@-webkit-keyframes flare {
	0% {
		background-position: -180px;
	}
	30% {
		background-position: 400px;
	}
	100% {
		background-position: 400px;
	}
}

@-webkit-keyframes sparkle {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 0;
	}
	40% {
		opacity: 0.8;
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* ==========================================================================
   Trophy - 3D Animated
   ========================================================================== */
.trophy {
	width: 200px;
	height: 260px;
	transform-style: preserve-3d;
	transform-origin: center;
	animation: 3s ease-in-out infinite alternate both floating;
	margin-bottom: -5%;
}

@keyframes floating {
	from {
		transform: rotate3d(-2, 1, 0.5, 15deg) translateY(10px);
	}
	to {
		transform: rotate3d(-1, -0.5, 0.2, 10deg) translateY(0px);
	}
}

.trophy .first,
.trophy .second {
	width: 100%;
	height: 100%;
}

.trophy .second {
	position: absolute;
	top: 0;
	left: 10;
	transform: rotateY(20deg);
}

.trophy .top {
	height: 60%;
	width: 50%;
	margin: auto;
	margin-bottom: -12%;
	position: relative;
	z-index: -1;
}

.trophy .top:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 213, 79, 1) 20%, rgba(255, 179, 0, 1) 100%);
	border-radius: 100%;
	top: -1px;
	transform: rotateX(90deg) translateY(-50%);
	transform-origin: top center;
	border: solid 5px rgba(255, 240, 201, 0.7);
	box-sizing: border-box;
}

.trophy .cup {
	height: 65%;
	width: 100%;
	margin: auto;
	border-radius: 10% 10% 50% 50%;
	transform: rotate3D(1, 0, 0, -30deg) translateZ(50%);
	z-index: 2;
}

.trophy .cup-base {
	width: 50%;
	height: 30%;
	border-radius: 50%;
	z-index: 0;
	margin: auto;
	margin-top: -5%;
	margin-bottom: -50%;
}

.trophy .circle {
	z-index: 1;
	width: 20%;
	height: 12%;
	border-radius: 50%;
	margin: auto;
	margin-top: -10%;
}

.trophy .circle,
.trophy .cup-base,
.trophy .cup {
	background-color: #ffb300;
	overflow: hidden;
	position: relative;
}

.trophy .cup-base:after,
.trophy .cup:after,
.trophy .circle:after,
.trophy .cup:before,
.trophy .top:after,
.trophy .base-top:after {
	position: absolute;
	content: "";
}

.trophy .cup-base:after {
	height: 100%;
	width: 100%;
	left: -10%;
	top: -1%;
	background-color: #ffd54f;
	border-radius: 50%;
}

.trophy .cup:after {
	height: 112%;
	width: 100%;
	top: -10%;
	left: -10%;
	background-color: #ffd54f;
	border-radius: 10% 10% 50% 50%;
}

.trophy .cup:before {
	background-color: transparent;
	border-left: 8px solid rgba(255, 240, 201, 0.6);
	height: 70%;
	width: 40%;
	top: 18%;
	left: 12%;
	border-radius: 10% 10% 50% 50%;
	z-index: 15;
	filter: blur(2px);
	transform: translateZ(50px) rotateY(0deg);
	animation: 3s ease-in-out infinite alternate both shine-rotate;
}

@keyframes shine-rotate {
	from {
		transform: translateZ(50px) rotateY(0deg) translateX(15px);
		width: 25%;
	}
	to {
		transform: translateZ(50px) rotateY(0deg);
	}
}

.trophy .arm {
	transform-style: preserve-3d;
	position: absolute;
	height: 22%;
	width: 28%;
	border: 10px solid #ffd54f;
	border-right: none;
	border-radius: 50% 0 0 50%;
	top: 18%;
	right: 95%;
	animation: 3s ease-in-out infinite alternate both pull-in;
}

@keyframes pull-in {
	from {
		transform: translateX(-5px);
	}
	to {
		transform: translateX(0);
	}
}

.trophy .arm.right {
	border: 10px solid #ffb300;
	border-left: none;
	border-radius: 0 50% 50% 0;
	top: 18%;
	right: 0;
	left: 95%;
}

.trophy .circle:after {
	position: absolute;
	content: "";
	height: 100%;
	width: 80%;
	background-color: #ffd54f;
}

.move {
	transform-style: preserve-3d;
	transform: translateZ(40px);
	width: 100%;
	height: 100%;
}

.trophy .base {
	background-color: #6d4c41;
	width: 55%;
	height: 20%;
	margin: auto;
	position: relative;
	perspective: 800px;
	transform-style: preserve-3D;
	border-radius: 3px;
}

.trophy .base-top {
	width: 100%;
	height: 150%;
	background-color: #8d6e63;
	position: absolute;
	bottom: 100%;
	transform: rotateX(90deg);
	transform-origin: bottom center;
	border-radius: 3px;
}

.trophy .base-top:after {
	content: "";
	transform-style: preserve-3D;
	background-color: #5d4037;
	width: 30%;
	height: 50%;
	position: absolute;
	top: 0;
	left: 40%;
	transform: skew(-40deg);
	transform-origin: bottom center;
}

.trophy .base-side {
	width: 68%;
	height: 99.8%;
	background-color: #8d6e63;
	position: absolute;
	top: 0;
	right: 99.8%;
	transform: rotateY(-90deg);
	transform-origin: top right;
	border-radius: 3px 0 0 3px;
}

.trophy .base-side.right {
	left: 99.8%;
	transform: rotateY(90deg);
	transform-origin: top left;
	border-radius: 0 3px 3px 0;
}

.trophy .plate {
	background: linear-gradient(135deg, #ffe082 0%, #ffb300 50%, #ff8f00 100%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(5px);
	height: 45%;
	width: 75%;
	overflow: hidden;
	border-radius: 2px;
}

.trophy .plate:after {
	content: "";
	background-color: rgba(255, 240, 201, 0.5);
	width: 25%;
	height: 100%;
	position: absolute;
	left: 15%;
	top: 0;
	transform: skew(30deg);
	animation: 3s ease-in-out infinite alternate both plate-shine;
}

@keyframes plate-shine {
	from {
		transform: translateX(60px) skew(30deg);
	}
	to {
		transform: translateX(0px) skew(30deg);
	}
}

.crop-base {
	position: absolute;
	bottom: 100%;
	width: 50%;
	height: 30%;
	border: 12px solid transparent;
	border-bottom: 12px solid #8d6e63;
	bottom: 90%;
	left: 50%;
	transform: translate(-50%) rotateX(60deg) translateY(-39%);
	transform-origin: bottom center;
	border-radius: 50%;
}

/* Video Section with Plyr */
.award-video-wrapper {
	max-width: 700px;
	margin: 0 auto;
}

.video-container {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.video-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
	z-index: 10;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.video-overlay.hidden {
	opacity: 0;
	pointer-events: none;
}

.watch-video-btn {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-md) var(--space-xl);
	background: var(--color-burnt-orange);
	color: var(--color-cream);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	letter-spacing: 1px;
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.watch-video-btn:hover {
	background: var(--color-charcoal);
	transform: scale(1.05);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.watch-video-btn svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

/* Plyr customization */
.plyr {
	--plyr-color-main: var(--color-burnt-orange);
	border-radius: var(--radius-lg);
}

.plyr__poster {
	background-size: cover;
}

/* Responsive trophy */
@media (max-width: 768px) {
	.trophy {
		width: 140px;
		height: 190px;
		margin-bottom: -5%;
	}

	.trophy .arm {
		border-width: 7px;
	}

	.trophy .arm.right {
		border-width: 7px;
	}

	.award-video-wrapper {
		max-width: 100%;
		padding: 0 var(--space-md);
	}

	.watch-video-btn {
		font-size: 1rem;
		padding: var(--space-sm) var(--space-lg);
	}
}
