/**
 * Main Stylesheet - PatioTime Theme
 *
 * @package PatioTime
 * @since 1.0.0
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
	--color-primary: #c9a962;
	--color-primary-dark: #b8944d;
	--color-secondary: #1a1a2e;
	--color-text: #333333;
	--color-text-light: #666666;
	--color-text-muted: #999999;
	--color-white: #ffffff;
	--color-black: #000000;
	--color-bg-light: #f8f8f8;
	--color-bg-cream: #faf9f6;
	--color-border: #e0e0e0;
	
	--font-primary: 'Cormorant Garamond', 'Georgia', serif;
	--font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 4rem;
	--spacing-xl: 6rem;
	--spacing-xxl: 8rem;
	
	--container-width: 1200px;
	--container-narrow: 800px;
}

/* ==========================================================================
   Reset and Base Styles
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-secondary);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text);
	background-color: var(--color-white);
	overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--color-secondary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 1.75rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1rem;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover,
a:focus {
	color: var(--color-primary-dark);
}

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

/* ==========================================================================
   Layout
   ========================================================================== */
.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

.container-narrow {
	max-width: var(--container-narrow);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: transparent;
	padding: 1.5rem 0;
}

.site-header.scrolled {
	position: fixed;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 30px;
}

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

.site-title {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 400;
	font-style: italic;
	margin: 0;
	letter-spacing: 2px;
}

.site-title a {
	color: var(--color-white);
	text-decoration: none;
}

.site-header.scrolled .site-title a {
	color: var(--color-secondary);
}

.site-description {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.custom-logo {
	max-height: 50px;
	width: auto;
}

/* Navigation */
.main-navigation {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	margin: 0;
	padding: 0;
}

.nav-menu li {
	margin: 0;
}

.nav-menu a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0.5rem 0;
	display: block;
	transition: color 0.3s ease;
}

.site-header.scrolled .nav-menu a {
	color: var(--color-text);
}

.nav-menu a:hover,
.nav-menu a:focus {
	color: var(--color-primary);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	color: var(--color-white);
}

.menu-toggle-icon {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: currentColor;
	left: 0;
}

.menu-toggle-icon::before { top: -7px; }
.menu-toggle-icon::after { bottom: -7px; }

.header-actions {
	flex: 0 0 auto;
}

.btn-reservation {
	background-color: var(--color-primary);
	color: var(--color-white);
	border: none;
	padding: 0.875rem 1.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-reservation:hover,
.btn-reservation:focus {
	background-color: var(--color-primary-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-white);
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

/* Fallback gradient when no image */
.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.5) 100%
	);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	padding: 2rem;
	max-width: 900px;
}

.hero-title {
	font-family: var(--font-primary);
	font-size: 4rem;
	font-weight: 400;
	margin-bottom: 2.5rem;
	color: var(--color-white);
	line-height: 1.1;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hero-actions {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-block;
	padding: 1rem 2rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: var(--color-primary);
	color: var(--color-white);
	border: 2px solid var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: var(--color-white);
}

.btn-secondary {
	background-color: transparent;
	color: var(--color-white);
	border: 2px solid var(--color-white);
}

.btn-secondary:hover,
.btn-secondary:focus {
	background-color: var(--color-white);
	color: var(--color-secondary);
}

.btn-link {
	color: var(--color-text);
	padding: 0;
	background: none;
	border: none;
	border-bottom: 1px solid var(--color-text);
	font-size: 0.875rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.btn-link:hover {
	color: var(--color-primary);
	border-color: var(--color-primary);
}

/* ==========================================================================
   Sections
   ========================================================================== */
section {
	position: relative;
}

.about-section,
.menu-section,
.events-section,
.newsletter-section {
	padding: var(--spacing-xxl) 0;
}

.section-header {
	text-align: center;
	margin-bottom: var(--spacing-lg);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.section-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 1rem;
	display: block;
}

.section-title {
	font-family: var(--font-primary);
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
	color: var(--color-secondary);
}

.section-subtitle {
	font-size: 1rem;
	color: var(--color-text-light);
	line-height: 1.8;
}

/* ==========================================================================
   Philosophy Section (Fresh & Local)
   ========================================================================== */
.philosophy-section {
	padding: var(--spacing-xxl) 0;
	text-align: center;
	background-color: var(--color-white);
}

.philosophy-header {
	max-width: 700px;
	margin: 0 auto var(--spacing-lg);
}

.philosophy-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 1.5rem;
	display: block;
}

.philosophy-subtitle {
	font-family: var(--font-primary);
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
	color: var(--color-secondary);
}

.philosophy-header p {
	font-size: 1rem;
	color: var(--color-text-light);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.philosophy-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-top: var(--spacing-lg);
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.feature-item {
	text-align: center;
	padding: 2rem;
}

.feature-item h4 {
	font-family: var(--font-primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--color-secondary);
}

.feature-item p {
	color: var(--color-text-light);
	font-size: 0.9375rem;
}

/* ==========================================================================
   Story Section (Our Story)
   ========================================================================== */
.story-section {
	padding: var(--spacing-xxl) 0;
	background-color: var(--color-white);
}

.story-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	min-height: 600px;
}

.story-image {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #8b7355 0%, #6d5a45 100%);
	min-height: 500px;
}

/* Fallback pattern for images */
.story-image::before,
.menu-image::before,
.events-image::before,
.experience-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
	z-index: 1;
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.story-text {
	padding: var(--spacing-lg);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: var(--color-bg-cream);
}

.story-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

.story-subtitle {
	font-family: var(--font-primary);
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
	color: var(--color-secondary);
}

.story-text p {
	font-size: 1rem;
	color: var(--color-text-light);
	line-height: 1.8;
	margin-bottom: 2rem;
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-section {
	padding: var(--spacing-xxl) 0;
	background-color: var(--color-white);
}

.menu-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	min-height: 700px;
}

.menu-text {
	padding: var(--spacing-lg);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.menu-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

.menu-subtitle {
	font-family: var(--font-primary);
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
	color: var(--color-secondary);
}

.menu-text > p {
	font-size: 1rem;
	color: var(--color-text-light);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.menu-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 0;
}

.menu-link {
	color: var(--color-text);
	font-size: 0.9375rem;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
}

.menu-link::before {
	content: '•';
	color: var(--color-primary);
}

.menu-link:hover {
	color: var(--color-primary);
}

.menu-image {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #3d5a6c 0%, #2c4251 100%);
	min-height: 500px;
}

.menu-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

/* Menu Recommendations Card */
.menu-recommendations {
	background-color: var(--color-bg-cream);
	padding: var(--spacing-lg);
	margin-top: var(--spacing-lg);
}

.recommendations-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 0.5rem;
	display: block;
}

.recommendations-title {
	font-family: var(--font-primary);
	font-size: 1.75rem;
	font-weight: 400;
	margin-bottom: 2rem;
	color: var(--color-secondary);
}

.menu-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.menu-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--color-border);
}

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

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

.menu-item-title {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 400;
	margin-bottom: 0.25rem;
	color: var(--color-secondary);
}

.menu-item-description {
	font-size: 0.875rem;
	color: var(--color-text-light);
	margin: 0;
}

.menu-item-price {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--color-primary);
	margin-left: 2rem;
}

/* ==========================================================================
   Events Section
   ========================================================================== */
.events-section {
	padding: var(--spacing-xxl) 0;
	background-color: var(--color-bg-light);
	position: relative;
}

.events-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	min-height: 600px;
}

.events-text {
	padding: var(--spacing-lg);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: var(--color-white);
}

.events-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

.events-subtitle {
	font-family: var(--font-primary);
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
	color: var(--color-secondary);
}

.events-text > p {
	font-size: 1rem;
	color: var(--color-text-light);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.events-features {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.event-feature {
	color: var(--color-text);
	font-size: 0.9375rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.event-feature::before {
	content: '•';
	color: var(--color-primary);
}

.events-image {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #8b7355 0%, #6d5a45 100%);
	min-height: 500px;
}

.events-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

/* ==========================================================================
   Experience Section
   ========================================================================== */
.experience-section {
	padding: var(--spacing-xxl) 0;
	background-color: var(--color-white);
}

.experience-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	min-height: 600px;
}

.experience-image {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #d4c4a8 0%, #c9b896 100%);
	min-height: 500px;
}

.experience-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.experience-text {
	padding: var(--spacing-lg);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: var(--color-bg-cream);
}

.experience-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

.experience-subtitle {
	font-family: var(--font-primary);
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
	color: var(--color-secondary);
}

.experience-text p {
	font-size: 1rem;
	color: var(--color-text-light);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.experience-quote {
	font-style: italic;
	padding-left: 1.5rem;
	border-left: 2px solid var(--color-primary);
	margin: 2rem 0;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
	padding: var(--spacing-xl) 0;
	background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
	position: relative;
}

.newsletter-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ddd" stroke-width="0.5"/></svg>') center center no-repeat;
	background-size: 400px;
	opacity: 0.3;
}

.newsletter-container {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.newsletter-header {
	margin-bottom: 2rem;
}

.newsletter-title {
	font-family: var(--font-primary);
	font-size: 1.75rem;
	font-weight: 400;
	margin-bottom: 0.75rem;
	color: var(--color-secondary);
}

.newsletter-header p {
	font-size: 0.9375rem;
	color: var(--color-text-light);
}

.newsletter-form {
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-field-group {
	display: flex;
	gap: 0;
	margin-bottom: 1rem;
	border: 1px solid var(--color-border);
	background: var(--color-white);
}

.newsletter-field-group input[type="email"] {
	flex: 1;
	padding: 1rem 1.25rem;
	border: none;
	font-size: 0.9375rem;
	font-family: inherit;
	background: transparent;
}

.newsletter-field-group input[type="email"]:focus {
	outline: none;
}

.newsletter-field-group button {
	padding: 1rem 2rem;
	background: var(--color-primary);
	color: var(--color-white);
	border: none;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.newsletter-field-group button:hover {
	background: var(--color-primary-dark);
}

.newsletter-privacy {
	margin-top: 1rem;
}

.newsletter-privacy label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--color-text-light);
}

.newsletter-privacy input[type="checkbox"] {
	width: 16px;
	height: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background-color: var(--color-secondary);
	color: var(--color-white);
	padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 30px;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: var(--spacing-lg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: var(--spacing-md);
}

.footer-brand {
	max-width: 300px;
}

.footer-brand p {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.footer-social {
	margin-top: 1.5rem;
}

.social-links {
	list-style: none;
	display: flex;
	gap: 1rem;
	margin: 0;
	padding: 0;
}

.social-links a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: var(--color-primary);
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.footer-column h3 {
	font-family: var(--font-secondary);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	color: var(--color-white);
}

.footer-column p,
.footer-column address {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	font-style: normal;
	margin-bottom: 0.5rem;
}

.footer-column a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-column a:hover {
	color: var(--color-primary);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: var(--spacing-md);
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-menu {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8125rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.footer-menu a:hover {
	color: var(--color-primary);
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.8125rem;
}

/* ==========================================================================
   Reservation Modal
   ========================================================================== */
.reservation-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.reservation-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.reservation-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	cursor: pointer;
}

.reservation-modal-content {
	position: relative;
	background-color: var(--color-white);
	padding: 3rem;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 10001;
}

.reservation-modal-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--color-text-muted);
	line-height: 1;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease;
}

.reservation-modal-close:hover {
	color: var(--color-text);
}

.reservation-header {
	margin-bottom: 2rem;
	text-align: center;
}

.reservation-header h2 {
	font-family: var(--font-primary);
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
}

.reservation-header p {
	font-size: 0.875rem;
	color: var(--color-text-light);
}

.reservation-form .form-group {
	margin-bottom: 1.25rem;
}

.reservation-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-text);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid var(--color-border);
	font-size: 0.9375rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
}

.reservation-form .required {
	color: #d63638;
}

.form-actions {
	margin-top: 2rem;
}

.form-actions .btn {
	width: 100%;
}

.form-message {
	margin-top: 1rem;
	padding: 1rem;
	font-size: 0.875rem;
	display: none;
}

.form-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	display: block;
}

.form-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	display: block;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

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

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999999;
	padding: 1rem;
	background: var(--color-primary);
	color: var(--color-white);
}

.skip-link:focus {
	left: 6px;
	top: 7px;
}

/* Page/Post Content */
.entry-header {
	text-align: center;
	padding: var(--spacing-xxl) 0 var(--spacing-lg);
	background-color: var(--color-bg-cream);
}

.entry-title {
	font-family: var(--font-primary);
	font-size: 3rem;
	font-weight: 400;
}

.entry-content {
	max-width: var(--container-narrow);
	margin: 0 auto;
	padding: var(--spacing-lg) 20px;
}

.entry-content p {
	margin-bottom: 1.5rem;
}

/* ==========================================================================
   Elementor Compatibility
   ========================================================================== */
.elementor-page .content-area,
.elementor-page .site-main {
	max-width: none;
	padding: 0;
	margin: 0;
}

.elementor-page .entry-content {
	max-width: none;
	padding: 0;
}

.content-full-width {
	width: 100%;
	max-width: none;
}

.content-full-width .site-content-inner {
	width: 100%;
	max-width: none;
	padding: 0;
}

/* Elementor Canvas Template */
body.elementor-template-canvas {
	margin: 0;
	padding: 0;
}

body.elementor-template-canvas .site {
	display: block;
}

/* PatioTime Elementor Widget Styles */
.patiotime-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.patiotime-menu-widget {
	padding: var(--spacing-lg);
}

.patiotime-menu-widget .menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-md);
	margin-top: var(--spacing-md);
}

.patiotime-hours-widget {
	padding: var(--spacing-md);
}

.patiotime-hours-widget .hours-item {
	margin-bottom: var(--spacing-sm);
}

.patiotime-hours-widget .hours-label {
	display: block;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	margin-bottom: 0.25rem;
}

.patiotime-hours-widget .hours-text {
	display: block;
}

.patiotime-social-widget .social-links {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 15px;
}

.patiotime-social-widget .social-links a {
	font-size: 1.25rem;
	transition: color 0.3s ease;
}

.patiotime-newsletter-widget {
	padding: var(--spacing-lg);
	text-align: center;
}

.patiotime-newsletter-widget .newsletter-title {
	font-family: var(--font-primary);
	font-size: 2.5rem;
	margin-bottom: var(--spacing-sm);
}

.patiotime-newsletter-widget .newsletter-field-group {
	display: flex;
	max-width: 500px;
	margin: var(--spacing-md) auto 0;
}

.patiotime-newsletter-widget .newsletter-field-group input[type="email"] {
	flex: 1;
	padding: 15px 20px;
	border: 1px solid var(--color-border);
	border-right: none;
	font-size: 1rem;
}

.patiotime-newsletter-widget .newsletter-field-group button {
	padding: 15px 30px;
	background: var(--color-primary);
	color: var(--color-white);
	border: none;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s ease;
}

.patiotime-newsletter-widget .newsletter-field-group button:hover {
	background: var(--color-primary-dark);
}

.patiotime-newsletter-widget .newsletter-privacy {
	margin-top: var(--spacing-sm);
	font-size: 0.875rem;
}
