/* =======================================
   CSS Variables & Design System Tokens
   ======================================= */
:root {
	/* Colors */
	/* --color-primary: #4a5d4e; */
	--color-primary: #4f523f;
	/* --color-primary-dark: #3c4b3f; */
	--color-primary-dark: #404436;
	--color-accent: #a87b5b;
	--color-accent-hover: #966c4e;
	--color-bg-main: #fdfbf7;
	--color-text-dark: #2a2a2a;
	--color-text-light: #ffffff;
	--color-text-muted: #6b6b6b;
	--color-border: #e5e0d8;
	--color-border-light: rgba(255, 255, 255, 0.2);

	/* Typography */
	--font-serif: 'Playfair Display', serif;
	--font-sans: 'Inter', sans-serif;

	/* Corner Radiuses */
	--radius-pill: 9999px;
	--radius-card: 24px;
	--radius-image: 24px;

	/* Layout */
	--container-max-width: 1200px;
	--spacing-horizontal-padding: clamp(2rem, 5vw, 4rem);
}

/* =======================================
   Reset & Base Styles
   ======================================= */
html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-sans);
	background-color: var(--color-bg-main);
	color: var(--color-text-dark);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-serif);
	font-weight: 600;
	line-height: 1.2;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.2s ease;
}

/* =======================================
   Utility & Layout Classes
   ======================================= */
.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 3rem;
}

@media (max-width: 992px) {
	.container {
		padding: 0 2.5rem;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 1.5rem;
	}
}

.section-padding {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

@media (max-width: 768px) {
	.section-padding {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	border-radius: var(--radius-pill);
	font-family: var(--font-sans);
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.btn-primary {
	background-color: var(--color-accent);
	color: var(--color-text-light);
}

.btn-primary:hover {
	background-color: var(--color-accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(168, 123, 91, 0.2);
}

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

.btn-outline:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* =======================================
   Mobile Menu Overlay & Hamburger
   ======================================= */
body.menu-open {
  overflow: hidden;
}

body.menu-open .logo-container {
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-light);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}

.hamburger.active .hamburger-line:first-child {
  transform: rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(79, 82, 63, 0.98); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(-10px);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-links a {
  font-size: 1.85rem;
  font-family: var(--font-serif);
  color: var(--color-text-light);
  transition: opacity 0.3s ease;
}

.mobile-nav-links a:hover {
  opacity: 0.7;
}

.mobile-btn {
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
}

/* =======================================
   Component Styles
   ======================================= */

/* Top Section Wrapper (Navbar & Hero share background) */
.hero-wrapper {
	background-color: var(--color-primary);
	color: var(--color-text-light);
	overflow: hidden;
}

/* Navbar */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	padding-bottom: 2rem;
	position: relative;
	z-index: 1002;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: opacity 0.3s ease;
}

.logo-icon {
	width: 24px;
	height: 24px;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	font-size: 0.9rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
}

.nav-links a:hover {
	color: var(--color-text-light);
}

/* Hero */
.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding-top: 0.5rem;
	padding-bottom: 6rem;
}

.hero-content h1 {
	font-size: 4.5rem;
	margin-bottom: 1.5rem;
	letter-spacing: -1px;
}

.hero-content p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	max-width: 90%;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	margin-bottom: 4rem;
}

.hero-tags {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-tag {
	font-size: 0.8rem;
	padding: 0.4rem 1rem;
	border-radius: var(--radius-pill);
	/* border: 1px solid var(--color-border-light); */
	color: rgba(255, 255, 255, 0.9);
	/* background-color: rgba(255, 255, 255, 0.03); */
	background-color: var(--color-primary-dark);
}

.hero-image {
	border-radius: var(--radius-image);
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	height: 600px;
}

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

/* Features Range */
.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.feature-icon-wrapper {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f4efe6;
	border-radius: 12px;
	color: var(--color-accent);
}

.feature-icon-wrapper svg {
	width: 24px;
	height: 24px;
}

.feature-title {
	font-family: var(--font-serif);
	font-size: 1.8rem;
	color: var(--color-text-dark);
}

.feature-desc {
	font-size: 1.1rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

/* Menu Highlights Section */
.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 3rem;
}

.section-header p {
	font-size: 0.9rem;
	color: var(--color-text-muted);
}

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

.highlight-card {
	position: relative;
	border-radius: var(--radius-card);
	overflow: hidden;
	height: 420px;
	cursor: pointer;
}

.highlight-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

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

.highlight-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 3rem 2rem 2rem 2rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
	color: var(--color-text-light);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.highlight-title {
	font-family: var(--font-serif);
	font-size: 1.8rem;
}

.highlight-desc {
	font-size: 0.85rem;
	opacity: 0.9;
}

/* Menu List Section */
.menu-detail-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: stretch;
	margin-bottom: 6rem;
}

.menu-list-wrapper h2 {
	font-size: 2.4rem;
	margin-bottom: 2.5rem;
}

.menu-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.menu-item {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.menu-item-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	width: 100%;
}

.menu-item-name {
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 1rem;
	color: var(--color-text-dark);
}

.menu-item-dots {
	flex-grow: 1;
	border-bottom: 2px dotted #e0d9ce;
	margin: 0 1rem;
	opacity: 0.6;
}

.menu-item-price {
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 1rem;
	color: var(--color-accent);
}

.menu-item-desc {
	font-size: 0.85rem;
	color: var(--color-text-muted);
}

.menu-detail-image {
	border-radius: var(--radius-image);
	overflow: hidden;
	height: 100%;
	min-height: 400px;
}

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

/* =======================================
   Reservation Section
   ======================================= */
.reservation-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

/* =======================================
   Footer
   ======================================= */
.footer {
	background-color: var(--color-primary);
	color: var(--color-text-light);
	padding: 5rem 0 2rem 0;
	margin-top: 4rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 3rem;
	align-items: flex-start;
	margin-bottom: 4rem;
}

.footer-logo {
	max-width: 90px;
	height: auto;
	margin-bottom: 1.5rem;
}

.brand-name {
	font-family: var(--font-serif);
	font-size: 1.4rem;
	color: var(--color-text-light);
	margin-bottom: 0.5rem;
}

.nav-logo {
	max-width: 145px;
	height: auto;
	display: block;
}

.footer-col h3 {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: var(--color-text-light);
}

.footer-col p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9rem;
	line-height: 1.8;
}

.footer-col a {
	transition: color 0.2s ease;
}

.footer-col a:hover {
	color: var(--color-text-light);
	text-decoration: underline;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
}

/* Responsiveness */
@media (max-width: 992px) {
	.hero,
	.menu-detail-section {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hero-content {
		order: 2;
	}

	.hero-image {
		order: 1;
		height: 400px;
	}

	.hero-content h1 {
		font-size: 3.5rem;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.navbar {
		flex-wrap: wrap;
		gap: 1.5rem;
	}

	.desktop-nav, .desktop-btn {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.features-grid,
	.highlights-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

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

	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.hero-content h1 {
		font-size: 2.8rem;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

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

/* =======================================
   Scroll & Load Animations
   ======================================= */
.js-enabled .fade-element {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.js-enabled .fade-element.fade-long {
	transition-duration: 2.5s;
}

.js-enabled .fade-in {
	opacity: 1;
	transform: translateY(0);
}

/* Staggered delays for child components */
.stagger-1 {
	transition-delay: 0.2s;
}
.stagger-2 {
	transition-delay: 0.4s;
}
.stagger-3 {
	transition-delay: 0.6s;
}
