:root {
	--primary: #132f8b;
	--primary-dark: #213965;
	--secondary: #301ed2;
	--accent: #3300ff;
	--light: #fff8dc;
	--dark: #1b142f;
	--text: #20142f;
	--text-light: #8b7355;
	--white: #ffffff;
	--gradient: linear-gradient(135deg, #13758b 0%, #1e66d2 50%, #00eaff 100%);
	--gradient-dark: linear-gradient(135deg, #3b2165 0%, #41138b 100%);
	--gradient-warm: linear-gradient(135deg, #1e45d2 0%, #0088ff 100%);
	--shadow: 0 20px 25px -5px rgba(49, 19, 139, 0.2);
	--shadow-lg: 0 25px 50px -12px rgba(51, 19, 139, 0.3);
	--shadow-warm: 0 20px 25px -5px rgba(78, 30, 210, 0.2);
}

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

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: var(--text);
	background: linear-gradient(135deg, #dcfaff 0%, #dcedf5 100%);
	overflow-x: hidden;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.4s ease;
	border-bottom: 3px solid var(--primary);
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--shadow);
	padding: 0.5rem 0;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
}

.logo i {
	font-size: 2rem;
	color: var(--secondary);
	animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

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

.nav-menu a {
	text-decoration: none;
	color: var(--text);
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 1rem;
	border-radius: 25px;
}

.nav-menu a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: var(--gradient);
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-menu a:hover::before {
	width: 80%;
}

.nav-menu a:hover {
	color: var(--primary);
	background: rgba(139, 69, 19, 0.1);
	transform: translateY(-2px);
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-align: center;
}

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

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

.btn-primary {
	background: var(--gradient);
	color: var(--white);
	box-shadow: var(--shadow);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

.btn-outline {
	background: transparent;
	color: var(--primary);
	border: 3px solid var(--primary);
	position: relative;
}

.btn-outline::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--gradient);
	transition: width 0.3s ease;
	z-index: -1;
}

.btn-outline:hover::after {
	width: 100%;
}

.btn-outline:hover {
	color: var(--white);
	border-color: transparent;
}

/* Section Styles */
.section {
	padding: 8rem 0;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 6rem;
}

.section-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--primary);
	position: relative;
}

.section-header h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--gradient);
	border-radius: 2px;
}

.section-header p {
	font-size: 1.3rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	background: linear-gradient(
		135deg,
		rgba(20, 32, 47, 0.9),
		rgba(125, 164, 171, 0.9)
	);
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/bg.jpg');
	background-size: cover;
	background-position: center;
	opacity: 0.2;
	z-index: -1;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	color: var(--white);
	z-index: 2;
}

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	margin-bottom: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	animation: slideInLeft 1.2s ease 0.1s both;
}

.hero-badge span {
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
}

.hero-content h1 {
	font-family: 'Playfair Display', serif;
	font-size: 4.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	animation: slideInLeft 1.2s ease 0.2s both;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.1;
}

.hero-content p {
	font-size: 1.5rem;
	margin-bottom: 3rem;
	animation: slideInLeft 1.2s ease 0.4s both;
	font-weight: 300;
	opacity: 0.9;
}

.hero-features {
	display: flex;
	gap: 2rem;
	margin-bottom: 3rem;
	animation: slideInLeft 1.2s ease 0.5s both;
}

.feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.8rem 1.2rem;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature i {
	color: var(--accent);
	font-size: 1.2rem;
}

.feature span {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--white);
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	animation: slideInLeft 1.2s ease 0.6s both;
}

.hero-image {
	position: relative;
	animation: slideInRight 1.2s ease 0.3s both;
}

.image-stack {
	position: relative;
	height: 500px;
}

.main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
	transition: all 0.4s ease;
}

.floating-image {
	position: absolute;
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
}

.floating-image:nth-child(2) {
	top: -30px;
	right: -30px;
	animation: float 3s ease-in-out infinite;
}

.floating-image:nth-child(3) {
	bottom: -30px;
	left: -30px;
	animation: float 3s ease-in-out infinite reverse;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.hero-image:hover .main-image {
	transform: scale(1.05);
}

.hero-image:hover .floating-image {
	transform: scale(1.1);
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Specialties Section */
.specialties-section {
	background: linear-gradient(135deg, #141d2f 0%, #69a2c0 50%, #637077 100%);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.specialties-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.5;
}

.specialties-section .section-header h2 {
	color: var(--white);
}

.specialties-section .section-header p {
	color: rgba(255, 255, 255, 0.9);
}

.header-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	margin-bottom: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-badge span {
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
}

.specialties-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 2.5rem;
	position: relative;
	z-index: 2;
}

.specialty-card {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 25px;
	padding: 0;
	text-align: left;
	backdrop-filter: blur(15px);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.specialty-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.6s;
}

.specialty-card:hover::before {
	left: 100%;
}

.specialty-card:hover {
	transform: translateY(-15px) scale(1.02);
	border-color: var(--accent);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	padding: 2rem;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.specialty-icon {
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: var(--white);
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.specialty-card:hover .specialty-icon {
	transform: scale(1.1) rotate(360deg);
	background: rgba(255, 255, 255, 0.3);
}

.card-badge {
	background: var(--accent);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.card-content {
	padding: 2rem;
}

.card-content h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--white);
	font-family: 'Playfair Display', serif;
}

.card-content p {
	margin-bottom: 1.5rem;
	opacity: 0.9;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.features-list {
	list-style: none;
	margin-bottom: 2rem;
}

.features-list li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
	color: rgba(255, 255, 255, 0.9);
}

.features-list i {
	color: var(--accent);
	font-size: 0.9rem;
}

/* About Section */
.about-section {
	background: linear-gradient(135deg, #afa8b4 0%, #89868c 100%);

	overflow: hidden;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.text-badge {
	display: inline-block;
	background: var(--gradient);
	color: var(--white);
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	margin-bottom: 1.5rem;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.about-text h2 {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--primary);
}

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

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

.stat {
	text-align: center;
	padding: 2rem 1.5rem;
	background: var(--white);
	border-radius: 20px;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
}

.stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gradient);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.stat:hover::before {
	transform: scaleX(1);
}

.stat:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--secondary);
}

.stat-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
	color: var(--white);
	transition: all 0.3s ease;
}

.stat:hover .stat-icon {
	transform: scale(1.1) rotate(360deg);
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--secondary);
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--text-light);
	font-weight: 500;
}

.about-image {
	position: relative;
}

.image-container {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.image-container img {
	width: 100%;
	transition: all 0.4s ease;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(139, 69, 19, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s ease;
	cursor: pointer;
}

.image-container:hover .image-overlay {
	opacity: 1;
}

.image-container:hover img {
	transform: scale(1.1);
}

.overlay-content {
	text-align: center;
	color: var(--white);
}

.overlay-content i {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

.overlay-content span {
	font-size: 1.1rem;
	font-weight: 600;
}

/* Menu Section */
.menu-section {
	background: linear-gradient(135deg, #e7e3eb 0%, #908d92 100%);
	position: relative;
	overflow: hidden;
}

.menu-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="food" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(139,69,19,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23food)"/></svg>');
	opacity: 0.3;
}

.menu-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 4rem;
	position: relative;
	z-index: 2;
}

.tab-btn {
	background: var(--white);
	border: 2px solid var(--primary);
	color: var(--primary);
	padding: 1rem 2rem;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.tab-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--gradient);
	transition: left 0.3s ease;
	z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
	left: 0;
}

.tab-btn:hover,
.tab-btn.active {
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 3rem;
	position: relative;
	z-index: 2;
}

.menu-item {
	background: var(--white);
	border-radius: 25px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
	border: 2px solid transparent;
	position: relative;
}

.menu-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(139, 69, 19, 0.05),
		transparent
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.menu-item:hover::before {
	opacity: 1;
}

.menu-item:hover {
	transform: translateY(-15px);
	box-shadow: var(--shadow-lg);
	border-color: var(--secondary);
}

.menu-image {
	height: 250px;
	overflow: hidden;
	position: relative;
}

.menu-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--accent);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
}

.menu-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.menu-item:hover .menu-image::after {
	opacity: 1;
}

.menu-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
}

.menu-item:hover .menu-image img {
	transform: scale(1.1);
}

.menu-content {
	padding: 2rem;
}

.menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.menu-header h3 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0;
}

.price {
	background: var(--gradient);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: 15px;
	font-weight: 600;
	font-size: 0.9rem;
}

.menu-content p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.menu-list {
	list-style: none;
}

.menu-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(139, 69, 19, 0.1);
	transition: all 0.3s ease;
}

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

.menu-list li:hover {
	background: rgba(139, 69, 19, 0.05);
	padding-left: 1rem;
	border-radius: 8px;
}

.dish-name {
	font-weight: 500;
	color: var(--text);
}

.dish-price {
	font-weight: 600;
	color: var(--primary);
	font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
	background: linear-gradient(135deg, #c1bcc3 0%, #d5cedc 100%);
	position: relative;
	overflow: hidden;
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,215,0,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
	opacity: 0.3;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 2.5rem;
	position: relative;
	z-index: 2;
}

.testimonial-card {
	background: var(--white);
	border-radius: 25px;
	padding: 2.5rem;
	text-align: left;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 1rem;
	left: 2rem;
	font-size: 4rem;
	color: var(--primary);
	opacity: 0.1;
	font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
	transform: translateY(-15px);
	box-shadow: var(--shadow-lg);
	border-color: var(--secondary);
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.testimonial-stars {
	font-size: 1.5rem;
	color: #ffd700;
	animation: twinkle 2s infinite;
}

.testimonial-date {
	font-size: 0.9rem;
	color: var(--text-light);
	font-style: italic;
}

@keyframes twinkle {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.testimonial-card p {
	font-style: italic;
	margin-bottom: 2rem;
	line-height: 1.6;
	color: var(--text);
	font-size: 1.1rem;
	position: relative;
	z-index: 2;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.2rem;
	flex-shrink: 0;
}

.author-info strong {
	display: block;
	font-size: 1.1rem;
	color: var(--primary);
	margin-bottom: 0.3rem;
	font-weight: 600;
}

.author-info span {
	color: var(--text-light);
	font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
	background: linear-gradient(135deg, #f5f5dc 0%, #fff8dc 100%);
	position: relative;
	overflow: hidden;
}

.gallery-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="camera" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="3" fill="rgba(139,69,19,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23camera)"/></svg>');
	opacity: 0.3;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	position: relative;
	z-index: 2;
}

.gallery-item {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
	position: relative;
	cursor: pointer;
}

.gallery-item.large {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(139, 69, 19, 0.3), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.gallery-item:hover::before {
	opacity: 1;
}

.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-lg);
}

.gallery-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: all 0.4s ease;
}

.gallery-item.large img {
	height: 400px;
}

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

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(139, 69, 19, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s ease;
	z-index: 2;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.overlay-content {
	text-align: center;
	color: var(--white);
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
	transform: translateY(0);
}

.overlay-content i {
	font-size: 2rem;
	margin-bottom: 1rem;
	display: block;
}

.overlay-content span {
	font-size: 1rem;
	font-weight: 600;
}

/* Contact Section */
.contact-section {
	background: linear-gradient(135deg, #142a2f 0%, #5a92ba 50%, #1e6fd2 100%);
	color: var(--white);
	padding: 150px 0 !important;
	overflow: hidden;
}

.contact-section .section-header h2 {
	color: var(--white);
}

.contact-section .section-header p {
	color: rgba(255, 255, 255, 0.9);
}

.info-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.info-badge span {
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	position: relative;
	z-index: 2;
}

.contact-info h2 {
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--white);
}

.contact-info p {
	font-size: 1.2rem;
	margin-bottom: 3rem;
	opacity: 0.9;
	line-height: 1.8;
}

.contact-details {
	display: grid;
	gap: 2rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(15px);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.3s ease;
}

.contact-item:hover::before {
	left: 100%;
}

.contact-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateX(10px);
	border-color: var(--accent);
}

.contact-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--white);
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
	transform: scale(1.1) rotate(360deg);
}

.contact-text h4 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--white);
}

.contact-text p {
	margin: 0;
	opacity: 0.9;
	font-size: 1rem;
}

.contact-form {
	background: rgba(255, 255, 255, 0.1);
	padding: 3rem;
	border-radius: 25px;
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.form-header h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--white);
	font-family: 'Playfair Display', serif;
}

.form-header p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--white);
	font-weight: 600;
	font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1.2rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	font-family: 'Poppins', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
	outline: none;
	background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Footer */
.footer {
	background: var(--dark);
	color: var(--white);
	padding: 4rem 0 2rem;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer)"/></svg>');
	opacity: 0.3;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
	position: relative;
	z-index: 2;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 1.5rem;
}

.footer-logo i {
	font-size: 2rem;
	color: var(--accent);
}

.footer-section h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--accent);
}

.footer-section p {
	margin-bottom: 1.5rem;
	opacity: 0.9;
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 1rem;
}

.footer-section a {
	color: var(--white);
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
	position: relative;
}

.footer-section a::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

.footer-section a:hover::before {
	width: 100%;
}

.footer-section a:hover {
	opacity: 1;
	color: var(--accent);
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.social-links a {
	width: 45px;
	height: 45px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.social-links a:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: var(--shadow);
	border-color: var(--accent);
}

.input-group {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.input-group input {
	flex: 1;
	padding: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 25px;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	transition: all 0.3s ease;
}

.input-group input:focus {
	border-color: var(--accent);
	outline: none;
}

.input-group input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.input-group .btn {
	padding: 1rem;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0.8;
	position: relative;
	z-index: 2;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	max-width: 500px;
	background: var(--white);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
	z-index: 1000;
	border: 2px solid var(--primary);
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.cookie-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--white);
	flex-shrink: 0;
}

.cookie-text {
	flex: 1;
}

.cookie-text h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary);
}

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

.cookie-actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
	align-items: center;
}

.cookie-link {
	color: var(--primary);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cookie-link:hover {
	color: var(--secondary);
}

/* Mobile Menu Styles */
.mobile-menu {
	display: none;
}

.mobile-menu button {
	background: var(--primary);
	border: 2px solid var(--primary);
	color: var(--white);
	cursor: pointer;
	padding: 0.75rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	min-height: 48px;
	box-shadow: 0 2px 10px rgba(139, 69, 19, 0.3);
}

.mobile-menu button:hover {
	background: var(--secondary);
	border-color: var(--secondary);
	transform: scale(1.05);
}

.mobile-menu button i {
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.mobile-menu button.active i {
	transform: rotate(90deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
	/* Hide desktop menu */
	.nav-menu {
		display: none;
	}

	/* Show mobile menu button */
	.mobile-menu {
		display: block;
	}

	/* Mobile menu overlay */
	.nav-menu.mobile-active {
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: linear-gradient(
			135deg,
			rgba(139, 69, 19, 0.98),
			rgba(210, 105, 30, 0.98)
		);
		backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		z-index: 999;
		animation: slideInFromTop 0.4s ease;
	}

	.nav-menu.mobile-active li {
		opacity: 0;
		transform: translateY(30px);
		animation: fadeInUp 0.5s ease forwards;
	}

	.nav-menu.mobile-active li:nth-child(1) {
		animation-delay: 0.1s;
	}
	.nav-menu.mobile-active li:nth-child(2) {
		animation-delay: 0.2s;
	}
	.nav-menu.mobile-active li:nth-child(3) {
		animation-delay: 0.3s;
	}
	.nav-menu.mobile-active li:nth-child(4) {
		animation-delay: 0.4s;
	}
	.nav-menu.mobile-active li:nth-child(5) {
		animation-delay: 0.5s;
	}

	.nav-menu.mobile-active a {
		font-size: 1.8rem;
		font-weight: 600;
		color: var(--white);
		text-decoration: none;
		padding: 1.5rem 3rem;
		border-radius: 50px;
		transition: all 0.3s ease;
		display: block;
		text-align: center;
		position: relative;
		overflow: hidden;
		background: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

	.nav-menu.mobile-active a:hover {
		background: rgba(255, 255, 255, 0.2);
		transform: translateY(-3px);
		box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
	}

	/* Prevent body scroll when menu is open */
	body.menu-open {
		overflow: hidden;
	}

	/* Close button for mobile menu */
	.nav-menu.mobile-active::before {
		content: '×';
		position: absolute;
		top: 2rem;
		right: 2rem;
		font-size: 2.5rem;
		color: var(--white);
		cursor: pointer;
		z-index: 1002;
		transition: all 0.3s ease;
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
	}

	.nav-menu.mobile-active::before:hover {
		background: rgba(255, 255, 255, 0.2);
		transform: scale(1.1);
	}
}

/* Hero Section Responsive Design */
@media (max-width: 768px) {
	.hero {
		min-height: 100vh;
		padding: 2rem 0;
	}

	.hero .container {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero-content h1 {
		font-size: 3rem;
		line-height: 1.2;
		margin-bottom: 1rem;
	}

	.hero-content p {
		font-size: 1.2rem;
		margin-bottom: 2rem;
	}

	.hero-features {
		flex-direction: column;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.feature {
		justify-content: center;
		padding: 1rem 1.5rem;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}

	.hero-buttons .btn {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}

	.hero-image {
		order: -1;
		margin-bottom: 2rem;
	}

	.image-stack {
		max-width: 300px;
		margin: 0 auto;
	}

	.main-image {
		width: 100%;
		height: 250px;
	}

	.floating-image {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1.1rem;
	}

	.hero-badge {
		padding: 0.4rem 1rem;
	}

	.hero-badge span {
		font-size: 0.9rem;
	}

	.feature {
		padding: 0.8rem 1rem;
	}

	.feature span {
		font-size: 0.8rem;
	}

	.nav-menu.mobile-active a {
		font-size: 1.5rem;
		padding: 1.2rem 2rem;
	}
}

/* Animations */
@keyframes slideInFromTop {
	from {
		opacity: 0;
		transform: translateY(-100%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

/* Additional responsive improvements */
@media (max-width: 768px) {
	.container {
		padding: 0 1rem;
	}

	.section {
		padding: 3rem 0;
	}

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

	.about-content {
		grid-template-columns: 1fr;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}

	.cookie-banner {
		bottom: 1rem;
		right: 1rem;
		left: 1rem;
		max-width: none;
	}

	.menu-grid,
	.specialties-grid,
	.testimonials-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 1rem 0;
	}

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

	.hero-content p {
		font-size: 1rem;
	}

	.hero-badge {
		padding: 0.3rem 0.8rem;
	}

	.hero-badge span {
		font-size: 0.8rem;
	}

	.feature {
		padding: 0.6rem 0.8rem;
	}

	.feature span {
		font-size: 0.75rem;
	}

	.hero-buttons .btn {
		font-size: 0.9rem;
		padding: 0.8rem 1.5rem;
	}

	.nav-menu.mobile-active a {
		font-size: 1.3rem;
		padding: 1rem 1.5rem;
	}

	.nav-menu.mobile-active::before {
		top: 1rem;
		right: 1rem;
		font-size: 2rem;
		width: 40px;
		height: 40px;
	}
}
