/*--------------------------------------------------------------
# Typography & Core variables
--------------------------------------------------------------*/
:root {
	--bg-dark: #0f0f0f;
	--bg-card: #181818;
	--bg-input: #262626;
	--bg-light-cream: #fcfaf2;
	--bg-light-accent: #f5f2e6;
	--gold: #c5a059;
	--gold-hover: #e0be7a;
	--gold-dark: #9e7c3f;
	--gold-rgb: 197, 160, 89;
	--text-light: #f5f5f5;
	--text-muted: #a3a3a3;
	--text-dark: #1a1a1a;
	--text-dark-muted: #555555;
	--font-title: 'Playfair Display', Georgia, serif;
	--font-body: 'Inter', sans-serif;
	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	--border-radius: 8px;
}

/* Reset and Global Styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: #0c0c0c;
	color: var(--text-light);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

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

a:hover {
	color: var(--gold-hover);
}

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

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

/* Buttons */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 14px 30px;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: var(--transition);
	border: 2px solid transparent;
	text-align: center;
}

.btn-sm {
	padding: 8px 18px;
	font-size: 12px;
}

.btn-gold {
	background-color: var(--gold);
	color: var(--text-dark);
	border-color: var(--gold);
}

.btn-gold:hover {
	background-color: var(--gold-hover);
	border-color: var(--gold-hover);
	color: var(--text-dark);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

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

.btn-outline:hover {
	background-color: var(--text-light);
	color: var(--bg-dark);
	transform: translateY(-2px);
}

.btn-block {
	display: block;
	width: 100%;
}

/* Sections */
section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

/* Luxury warm glow highlights in the background of each section */
section::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.045) 0%, rgba(212, 175, 55, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

#about::before {
	top: -100px;
	right: -100px;
}

#cuisines::before {
	bottom: -150px;
	left: -150px;
}

#menu::before {
	top: 10%;
	right: -200px;
}

#reviews::before {
	bottom: -100px;
	left: -100px;
}

#contact::before {
	top: -100px;
	right: -100px;
}

.section-header {
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}

.section-subtitle {
	display: block;
	font-family: var(--font-body);
	color: var(--gold);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-title {
	font-family: var(--font-title);
	font-size: 42px;
	color: var(--text-light);
	line-height: 1.2;
	font-weight: 700;
}

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

.section-divider {
	height: 2px;
	width: 60px;
	background-color: var(--gold);
	margin: 20px 0;
}

.section-divider.center {
	margin: 20px auto;
}

.section-desc {
	max-width: 600px;
	margin: 0 auto;
	color: var(--text-muted);
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.top-bar {
	background-color: #0b0b0b;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding: 8px 0;
	font-size: 13px;
	color: var(--text-muted);
}

.top-bar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-left a {
	color: var(--text-muted);
	margin-right: 20px;
}

.top-bar-left a:hover {
	color: var(--gold);
}

.site-header {
	position: fixed;
	top: 37px;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(12, 12, 12, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: top 0.3s ease, background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.sticky {
	top: 0;
	background-color: #0c0c0c;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
	border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.site-header.sticky .header-container {
	height: 65px;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	transition: height 0.3s ease;
}

.site-branding .custom-logo {
	height: 60px;
	width: auto;
	object-fit: contain;
	transition: height 0.3s ease;
}

.site-header.sticky .site-branding .custom-logo {
	height: 48px;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 30px;
}

.nav-menu a {
	color: var(--text-light);
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.5px;
	padding: 10px 0;
	position: relative;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--gold);
	transition: var(--transition);
}

.nav-menu a:hover {
	color: var(--gold);
}

.nav-menu a:hover::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle .bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	background-color: var(--text-light);
	transition: var(--transition);
}

/*--------------------------------------------------------------
# Hero Section — Auto-Sliding Banner
--------------------------------------------------------------*/
.hero-section {
	height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

/* Slide layers stack behind content */
.hero-slides {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	transform: scale(1.06);
	animation: none;
}

.hero-slide.active {
	opacity: 1;
	animation: kenburns 6s ease-in-out forwards;
}

@keyframes kenburns {
	0%   { transform: scale(1.06); }
	100% { transform: scale(1.00); }
}

/* Dark overlay — soft gradient from left (dark) to right (clear) so the real image shines through brightly */
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		95deg,
		rgba(10, 10, 10, 0.85) 0%,
		rgba(10, 10, 10, 0.70) 30%,
		rgba(10, 10, 10, 0.25) 60%,
		rgba(10, 10, 10, 0.10) 80%,
		rgba(10, 10, 10, 0.50) 100%
	),
	linear-gradient(
		to bottom,
		rgba(10, 10, 10, 0.1) 0%,
		rgba(10, 10, 10, 0) 70%,
		rgba(10, 10, 10, 0.90) 100%
	);
	z-index: 2;
}

/* Dot indicators */
.hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.5);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}
.hero-dot.active,
.hero-dot:hover {
	background: var(--gold);
	border-color: var(--gold);
	transform: scale(1.3);
}

.hero-container {
	display: flex;
	align-items: center;
	z-index: 10;
	width: 100%;
}

/* Glassmorphism card to make the text beautiful and extremely readable without darkening the image background */
.hero-content {
	max-width: 650px;
	background: rgba(20, 20, 20, 0.65);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 40px 50px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	margin-left: 20px;
}

.hero-subtitle {
	display: block;
	color: var(--gold);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 5px;
	text-transform: uppercase;
	margin-bottom: 12px;
	animation: fadeInUp 1s ease;
}

.hero-title {
	font-family: var(--font-title);
	font-size: 52px;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 20px;
	color: var(--text-light);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 1s ease 0.2s;
	animation-fill-mode: both;
}

.hero-description {
	font-size: 18px;
	color: var(--text-muted);
	margin-bottom: 35px;
	animation: fadeInUp 1s ease 0.4s;
	animation-fill-mode: both;
}

.hero-actions {
	animation: fadeInUp 1s ease 0.6s;
	animation-fill-mode: both;
}

.hero-actions .btn {
	margin-right: 15px;
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.scroll-down-arrow {
	display: block;
	width: 24px;
	height: 40px;
	border: 2px solid var(--text-muted);
	border-radius: 12px;
	position: relative;
}

.arrow-dot {
	display: block;
	width: 4px;
	height: 8px;
	background-color: var(--gold);
	border-radius: 2px;
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
	0% { top: 8px; opacity: 1; }
	50% { top: 22px; opacity: 0; }
	100% { top: 8px; opacity: 0; }
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
	background-color: var(--bg-light-cream);
	position: relative;
}

#about::before {
	display: none; /* Hide gold glow orb in light sections to avoid washed out text */
}

.about-section .section-subtitle {
	color: var(--gold-dark);
}

.about-section .section-title {
	color: var(--text-dark);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.lead-text {
	font-family: var(--font-title);
	font-size: 20px;
	font-style: italic;
	color: #333333;
	border-left: 3px solid var(--gold-dark);
	padding-left: 20px;
	margin-bottom: 25px;
}

.about-text-content p {
	color: var(--text-dark-muted);
	margin-bottom: 20px;
}

.about-features {
	display: flex;
	gap: 30px;
	margin-top: 35px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.feature-icon {
	font-size: 24px;
}

.feature-label {
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-light);
}

.about-image-collage {
	position: relative;
}

.collage-main-frame {
	position: relative;
	border: 1px solid rgba(197, 160, 89, 0.35);
	padding: 15px;
	border-radius: var(--border-radius);
	background: #ffffff;
}

.collage-img {
	width: 100%;
	border-radius: var(--border-radius);
	object-fit: cover;
}

.main-img {
	height: 480px;
}

.collage-accent-frame {
	position: absolute;
	bottom: -40px;
	left: -40px;
	width: 220px;
	height: auto;
	border: 8px solid var(--bg-light-cream);
	background-color: #ffffff;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}

.accent-img {
	width: 100%;
	object-fit: contain;
	padding: 10px;
}

.experience-badge {
	position: absolute;
	top: -30px;
	right: -30px;
	background-color: var(--gold);
	color: var(--text-dark);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-shadow: var(--shadow);
	border: 4px solid var(--bg-light-cream);
}

.badge-num {
	font-family: var(--font-title);
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}

.badge-text {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Cuisines Section
--------------------------------------------------------------*/
.cuisines-section {
	background-color: #111111;
}

.cuisines-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
	z-index: 2;
}

.cuisine-card {
	background: linear-gradient(145deg, #1b1b1b, #111111);
	padding: 40px 30px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.03);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
	transition: var(--transition);
	text-align: center;
}

.cuisine-card:hover {
	transform: translateY(-8px);
	border-color: rgba(212, 175, 55, 0.45);
	box-shadow: 0 15px 30px rgba(212, 175, 55, 0.12);
	background: linear-gradient(145deg, #202020, #141414);
}

.cuisine-icon-wrapper {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: rgba(212, 175, 55, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 25px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	transition: var(--transition);
}

.cuisine-card:hover .cuisine-icon-wrapper {
	background-color: var(--gold);
	transform: rotateY(180deg);
}

.cuisine-emoji {
	font-size: 32px;
}

.cuisine-card-title {
	font-family: var(--font-title);
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--text-light);
}

.cuisine-card-desc {
	font-size: 14px;
	color: var(--text-muted);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu-section {
	background-color: var(--bg-light-accent);
}

#menu::before {
	display: none; /* Disable gold glow in light sections */
}

.menu-section .section-subtitle {
	color: var(--gold-dark);
}

.menu-section .section-title {
	color: var(--text-dark);
}

.menu-section .section-desc {
	color: var(--text-dark-muted);
}

.menu-tabs {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 50px;
	position: relative;
	z-index: 2;
}

.tab-btn {
	background: none;
	border: 1px solid rgba(0, 0, 0, 0.15);
	color: var(--text-dark);
	padding: 10px 24px;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
	background-color: var(--gold-dark);
	border-color: var(--gold-dark);
	color: var(--text-light);
}

.menu-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.menu-gallery-item {
	display: block;
	transition: var(--transition);
}

.menu-gallery-item.hide {
	display: none;
}

.menu-card-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.05);
	aspect-ratio: 3/4;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.menu-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.menu-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to top, rgba(10, 10, 10, 0.95) 30%, rgba(10, 10, 10, 0.35));
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	opacity: 0;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 25px;
}

.menu-card-wrapper:hover .menu-card-img {
	transform: scale(1.08);
}

.menu-card-wrapper:hover .menu-card-overlay {
	opacity: 1;
}

.overlay-icons {
	display: flex;
	justify-content: flex-end;
}

.zoom-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--gold);
	color: var(--text-dark);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 20px;
	transition: var(--transition);
	box-shadow: var(--shadow);
}

.zoom-icon:hover {
	transform: scale(1.1);
	background-color: var(--text-light);
}

.menu-card-item-title {
	font-family: var(--font-title);
	font-size: 20px;
	color: var(--text-light);
	margin-bottom: 8px;
}

.menu-card-item-desc {
	font-size: 13px;
	color: var(--text-muted);
}

/*--------------------------------------------------------------
# Lightbox Modal
--------------------------------------------------------------*/
.lightbox-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(8px);
	overflow: hidden;
	justify-content: center;
	align-items: center;
}

.lightbox-modal[aria-hidden="false"] {
	display: flex;
}

.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 85%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#lightbox-img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	box-shadow: var(--shadow);
}

#lightbox-caption {
	margin-top: 15px;
	color: var(--text-light);
	font-size: 18px;
	font-family: var(--font-title);
	font-weight: 600;
	text-align: center;
}

.lightbox-close {
	position: absolute;
	top: 25px;
	right: 35px;
	color: var(--text-light);
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: var(--transition);
	z-index: 2010;
}

.lightbox-close:hover {
	color: var(--gold);
}

.lightbox-prev, .lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.5);
	color: var(--text-light);
	border: 1px solid rgba(255,255,255,0.1);
	font-size: 24px;
	padding: 15px 20px;
	cursor: pointer;
	border-radius: 50%;
	transition: var(--transition);
	z-index: 2010;
}

.lightbox-prev:hover, .lightbox-next:hover {
	background-color: var(--gold);
	color: var(--text-dark);
}

.lightbox-prev {
	left: -80px;
}

.lightbox-next {
	right: -80px;
}

/*--------------------------------------------------------------
# Contact & Reservations
--------------------------------------------------------------*/
.contact-section {
	background-color: var(--bg-light-cream);
	position: relative;
}

#contact::before {
	display: none; /* Hide glow orb on light sections */
}

.contact-section .section-subtitle {
	color: var(--gold-dark);
}

.contact-section .section-title {
	color: var(--text-dark);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: start;
	position: relative;
	z-index: 2;
}

.contact-intro {
	color: var(--text-dark-muted);
	margin-bottom: 40px;
}

.contact-details-list {
	list-style: none;
}

.contact-details-list li {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.contact-icon-box {
	width: 50px;
	height: 50px;
	border-radius: var(--border-radius);
	background-color: rgba(197, 160, 89, 0.1);
	border: 1px solid rgba(197, 160, 89, 0.25);
	color: var(--gold-dark);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
}

.contact-detail-text h4 {
	font-family: var(--font-title);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--text-dark);
}

.contact-detail-text p, .contact-detail-text a {
	color: var(--text-dark-muted);
	font-size: 15px;
}

.contact-detail-text a:hover {
	color: var(--gold-dark);
}

.reservation-form-panel {
	background: #ffffff;
	padding: 40px;
	border-radius: var(--border-radius);
	border: 1px solid rgba(197, 160, 89, 0.15);
	box-shadow: 0 15px 40px rgba(197, 160, 89, 0.08);
	color: var(--text-dark);
}

.form-title {
	font-family: var(--font-title);
	font-size: 28px;
	margin-bottom: 8px;
	color: var(--text-dark);
}

.form-subtitle {
	color: var(--text-dark-muted);
	font-size: 14px;
	margin-bottom: 30px;
}

.form-group-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
	width: 100%;
	background-color: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.15);
	color: var(--text-dark);
	padding: 12px 16px;
	border-radius: 6px;
	font-family: var(--font-body);
	font-size: 14px;
	transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
	outline: none;
	border-color: var(--gold-dark);
	box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-feedback {
	margin-top: 15px;
	font-size: 14px;
	text-align: center;
	font-weight: 600;
}

.form-feedback.success {
	color: #2ec4b6;
}

.form-feedback.error {
	color: #e71d36;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	background-color: #0b0b0b;
	padding: 80px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.5fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-logo {
	margin-bottom: 25px;
}

.footer-custom-logo {
	height: 50px;
	width: auto;
	object-fit: contain;
}

.footer-desc {
	color: var(--text-muted);
	font-size: 14px;
	margin-bottom: 25px;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--text-light);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	transition: var(--transition);
}

.social-icon:hover {
	background-color: var(--gold);
	color: var(--text-dark);
	border-color: var(--gold);
	transform: translateY(-3px);
}

.footer-title {
	font-family: var(--font-title);
	color: var(--text-light);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: var(--gold);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: var(--text-muted);
	font-size: 14px;
}

.footer-links a:hover {
	color: var(--gold);
	padding-left: 5px;
}

.footer-contact-info {
	list-style: none;
}

.footer-contact-info li {
	margin-bottom: 18px;
	font-size: 14px;
}

.info-label {
	display: block;
	font-weight: 600;
	color: var(--text-light);
	margin-bottom: 4px;
}

.info-value, .footer-email {
	color: var(--text-muted);
}

.footer-email:hover {
	color: var(--gold);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 25px 0;
	font-size: 13px;
	color: var(--text-muted);
}

.footer-bottom-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*--------------------------------------------------------------
# Inner Pages
--------------------------------------------------------------*/
.inner-page-hero {
	background-color: #0b0b0b;
	padding: 140px 0 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.inner-page-hero .page-title {
	font-family: var(--font-title);
	font-size: 40px;
	color: var(--text-light);
}

.inner-page-container {
	padding-top: 60px;
	padding-bottom: 80px;
}

.inner-main {
	max-width: 800px;
	margin: 0 auto;
}

.blog-post-card {
	background-color: var(--bg-card);
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.05);
	margin-bottom: 40px;
	overflow: hidden;
}

.post-card-content {
	padding: 30px;
}

.entry-title {
	font-family: var(--font-title);
	font-size: 26px;
	margin-bottom: 10px;
}

.entry-meta {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 15px;
}

.entry-meta span {
	margin-right: 15px;
}

.entry-summary {
	color: var(--text-muted);
	margin-bottom: 20px;
}

.post-thumbnail-large {
	margin-bottom: 30px;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.entry-content p {
	margin-bottom: 20px;
	line-height: 1.8;
}

/* Icons replacement (simple textual symbols / icons) */
.icon-email::before { content: "✉ "; }
.icon-clock::before { content: "🕒 "; }

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1024px) {
	.cuisines-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.menu-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.lightbox-prev {
		left: 20px;
	}
	.lightbox-next {
		right: 20px;
	}
}

@media (max-width: 768px) {
	section {
		padding: 60px 0;
	}
	.section-title {
		font-size: 32px;
	}
	.hero-title {
		font-size: 42px;
	}
	.about-grid, .contact-grid, .footer-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.collage-accent-frame {
		width: 160px;
		bottom: -20px;
		left: -20px;
	}
	.experience-badge {
		width: 100px;
		height: 100px;
		top: -20px;
		right: -20px;
	}
	.badge-num {
		font-size: 22px;
	}
	.hide-mobile {
		display: none !important;
	}
	
	/* Mobile Menu */
	.menu-toggle {
		display: block;
		z-index: 1001;
	}
	
	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background-color: #121212;
		border-left: 1px solid rgba(255, 255, 255, 0.05);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: var(--transition);
		box-shadow: var(--shadow);
	}
	
	.nav-menu.active {
		right: 0;
	}
	
	.nav-menu li {
		margin: 0 0 25px 0;
	}
	
	.nav-menu a {
		font-size: 18px;
	}

	.site-header.active-menu .menu-toggle .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	
	.site-header.active-menu .menu-toggle .bar:nth-child(2) {
		opacity: 0;
	}
	
	.site-header.active-menu .menu-toggle .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
	
	.footer-bottom-container {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
	.hero-content {
		margin-left: 0;
		padding: 30px;
		background: rgba(15, 15, 15, 0.80);
		border-radius: 16px;
	}
}

@media (max-width: 480px) {
	.menu-gallery-grid {
		grid-template-columns: 1fr;
	}
	.form-group-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.reservation-form-panel {
		padding: 25px;
	}
}

/*--------------------------------------------------------------
# Hero Rating Badge (TripAdvisor)
--------------------------------------------------------------*/
.hero-rating-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-radius: 50px;
	padding: 8px 20px;
	margin-bottom: 28px;
	backdrop-filter: blur(6px);
	flex-wrap: wrap;
	justify-content: center;
}
.rating-stars {
	color: var(--gold);
	font-size: 1rem;
	letter-spacing: 2px;
}
.rating-score {
	color: var(--gold);
	font-weight: 700;
	font-size: 1rem;
}
.rating-label {
	color: var(--text-muted);
	font-size: 0.8rem;
}

/*--------------------------------------------------------------
# Reviews Section
--------------------------------------------------------------*/
.reviews-section {
	background: #111111;
	padding: 100px 0;
}

.reviews-ta-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 16px;
	flex-wrap: wrap;
}
.ta-stars {
	color: #34E0A1; /* TripAdvisor green */
	font-size: 1.2rem;
	letter-spacing: 3px;
}
.ta-score {
	color: var(--text-light);
	font-weight: 700;
	font-size: 1rem;
}
.ta-count {
	color: var(--text-muted);
	font-size: 0.85rem;
}
.ta-link {
	color: #34E0A1;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(52, 224, 161, 0.4);
	transition: var(--transition);
}
.ta-link:hover {
	color: var(--gold);
	border-color: var(--gold);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 50px;
	position: relative;
	z-index: 2;
}

.review-card {
	background: linear-gradient(145deg, #1b1b1b, #111111);
	border: 1px solid rgba(255,255,255,0.03);
	border-radius: 16px;
	padding: 30px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}
.review-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	right: 20px;
	font-size: 6rem;
	color: rgba(212, 175, 55, 0.08);
	font-family: var(--font-title);
	line-height: 1;
}
.review-card:hover {
	border-color: rgba(212, 175, 55, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.review-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.reviewer-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold), #b8892a);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--bg-dark);
	flex-shrink: 0;
}
.reviewer-info {
	flex: 1;
}
.reviewer-name {
	color: var(--text-light);
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 3px;
}
.reviewer-meta {
	color: var(--text-muted);
	font-size: 0.78rem;
}
.review-rating {
	color: var(--gold);
	font-size: 0.85rem;
	letter-spacing: 1px;
	flex-shrink: 0;
}
.review-text {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.7;
	font-style: italic;
}

@media (max-width: 900px) {
	.reviews-grid {
		grid-template-columns: 1fr;
	}
	.hero-rating-badge {
		gap: 8px;
		padding: 6px 16px;
	}
}

/*--------------------------------------------------------------
# Sunday Brunch Promo Section
--------------------------------------------------------------*/
.brunch-promo-section {
	background-color: var(--bg-card);
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}

.brunch-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}

.brunch-image-column {
	display: flex;
	justify-content: center;
	align-items: center;
}

.brunch-poster-wrapper {
	position: relative;
	border-radius: var(--border-radius);
	border: 1px solid rgba(197, 160, 89, 0.25);
	padding: 10px;
	background-color: #111111;
	box-shadow: 0 20px 40px rgba(0,0,0,0.5);
	overflow: hidden;
	cursor: pointer;
	max-width: 440px;
}

.brunch-poster-img {
	width: 100%;
	height: auto;
	border-radius: calc(var(--border-radius) - 2px);
	display: block;
	transition: var(--transition);
}

.brunch-poster-wrapper:hover .brunch-poster-img {
	transform: scale(1.02);
}

.brunch-poster-zoom {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: var(--transition);
	border-radius: var(--border-radius);
}

.brunch-poster-wrapper:hover .brunch-poster-zoom {
	opacity: 1;
}

.brunch-poster-zoom .zoom-icon {
	color: #ffffff;
	font-weight: 600;
	font-size: 15px;
	background-color: var(--gold);
	color: var(--text-dark);
	padding: 10px 20px;
	border-radius: 30px;
	box-shadow: var(--shadow);
}

.brunch-timing {
	font-size: 18px;
	color: var(--text-light);
	margin-bottom: 20px;
}

.brunch-timing strong {
	color: var(--gold);
}

.brunch-intro {
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 35px;
}

.brunch-pricing-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 35px;
}

.pricing-tier-card {
	background-color: #111111;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: var(--border-radius);
	padding: 20px 15px;
	text-align: center;
	transition: var(--transition);
}

.pricing-tier-card:hover {
	border-color: var(--gold);
	transform: translateY(-3px);
}

.tier-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 10px;
	border-radius: 12px;
	margin-bottom: 12px;
}

.tier-label.buffet {
	background-color: rgba(197, 160, 89, 0.15);
	color: var(--gold);
}

.tier-label.grab-go {
	background-color: rgba(230, 126, 34, 0.15);
	color: #e67e22;
}

.tier-label.kids {
	background-color: rgba(46, 204, 113, 0.15);
	color: #2ecc71;
}

.tier-price {
	display: block;
	font-family: var(--font-title);
	font-size: 30px;
	font-weight: 700;
	color: var(--text-light);
	margin-bottom: 8px;
}

.tier-price .currency {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
}

.tier-desc {
	display: block;
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.4;
}

.brunch-drinks-special {
	background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, rgba(0,0,0,0) 100%);
	border-left: 3px solid var(--gold);
	padding: 20px;
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
	margin-bottom: 40px;
}

.special-badge {
	display: inline-block;
	background-color: var(--gold);
	color: var(--text-dark);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 12px;
	border-radius: 4px;
	margin-bottom: 8px;
}

.brunch-drinks-special p {
	color: var(--text-light);
	margin: 0;
	font-size: 15px;
}

.brunch-actions {
	display: flex;
	gap: 20px;
}

@media (max-width: 900px) {
	.brunch-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.brunch-image-column {
		order: 2;
	}
	.brunch-details-column {
		order: 1;
	}
	.brunch-pricing-tiers {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}
