:root { 
	color-scheme: dark; 
	--primary: #e91e63;
	--primary-dark: #c2185b;
	--gold: #ffd700;
	--silver: #c0c0c0;
	--dark: #0a0a0a;
	--darker: #000;
	--text: #fff;
	--text-muted: rgba(255,255,255,0.7);
	--gradient: linear-gradient(135deg, #e91e63, #ff6b9d, #e91e63);
	--gradient-gold: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
	--shadow: 0 8px 32px rgba(233, 30, 99, 0.3);
	--shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.3);
}

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

html { 
	scroll-behavior: smooth;
	background: var(--darker);
}

body { 
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji"; 
	background: var(--darker); 
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

.container { 
	width: min(1200px, 92vw); 
	margin: 0 auto; 
	padding: 0 20px;
}

/* Header */
.site-header { 
	position: fixed; 
	top: 0; 
	left: 0; 
	right: 0;
	z-index: 1000; 
	background: rgba(0,0,0,0.95); 
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(233, 30, 99, 0.2);
	transition: all 0.3s ease;
}

.site-header.scrolled {
	background: rgba(0,0,0,0.98);
	box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.site-header .container { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	padding: 15px 0; 
}

.brand { 
	font-weight: 900; 
	font-size: 1.5rem;
	letter-spacing: 0.1em; 
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(233, 30, 99, 0.5);
}

.nav { 
	display: flex; 
	gap: 20px; 
	align-items: center;
}

.nav a { 
	color: var(--text); 
	text-decoration: none; 
	opacity: 0.9;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav a:hover {
	opacity: 1;
	color: var(--primary);
}

.nav a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient);
	transition: width 0.3s ease;
}

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

.nav a.cta { 
	padding: 12px 24px; 
	border-radius: 50px; 
	background: var(--gradient);
	color: var(--text); 
	font-weight: 600;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	border: none;
}

.nav a.cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(233, 30, 99, 0.4);
}

/* Hero Section */
.hero { 
	position: relative; 
	min-height: 100vh; 
	display: grid; 
	place-items: center; 
	text-align: center;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(233, 30, 99, 0.3), rgba(0,0,0,0.7));
	z-index: 1;
}

.hero-media { 
	position: absolute; 
	inset: 0; 
	background: var(--darker) url('/WhatsApp Image 2025-09-02 at 6.53.08 PM.jpeg') center/cover no-repeat; 
	filter: brightness(0.6) saturate(1.3) contrast(1.1);
	animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
	0% { transform: scale(1); }
	100% { transform: scale(1.05); }
}

.hero-content { 
	position: relative; 
	z-index: 2;
	padding: 120px 0 80px; 
	max-width: 800px;
}

.hero h1 { 
	font-size: clamp(2.5rem, 8vw, 4.5rem); 
	margin: 0 0 20px; 
	font-weight: 900;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 50px rgba(233, 30, 99, 0.5);
	animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
	0% { filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.5)); }
	100% { filter: drop-shadow(0 0 40px rgba(233, 30, 99, 0.8)); }
}

.hero p { 
	margin: 0 0 30px; 
	opacity: 0.9; 
	font-size: 1.2rem;
	font-weight: 300;
}

.hero-actions { 
	display: flex; 
	gap: 20px; 
	justify-content: center; 
	flex-wrap: wrap; 
}

.button { 
	display: inline-block; 
	text-decoration: none; 
	color: var(--text); 
	border-radius: 50px; 
	padding: 16px 32px; 
	border: 2px solid transparent;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

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

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

.button.primary { 
	background: var(--gradient);
	border-color: var(--primary);
	box-shadow: var(--shadow);
}

.button.primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 50px rgba(233, 30, 99, 0.4);
}

.button.ghost { 
	background: transparent; 
	border-color: rgba(255,255,255,0.3);
	backdrop-filter: blur(10px);
}

.button.ghost:hover {
	background: rgba(255,255,255,0.1);
	border-color: var(--primary);
	transform: translateY(-2px);
}

/* Sections */
.section { 
	padding: 80px 0; 
	position: relative;
}

.section h2 { 
	font-size: clamp(2rem, 5vw, 3.5rem); 
	margin: 0 0 20px; 
	font-weight: 800;
	text-align: center;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section p { 
	opacity: 0.9; 
	font-size: 1.1rem;
	text-align: center;
	max-width: 600px;
	margin: 0 auto 40px;
}

/* Menu Section */
.menu-section {
	background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(233, 30, 99, 0.1), rgba(0,0,0,0.9));
	position: relative;
}

.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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(233,30,99,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
	pointer-events: none;
}

.menu-intro {
	font-size: 1.2rem !important;
	margin-bottom: 60px !important;
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.menu-category {
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 30px;
	border: 1px solid rgba(233, 30, 99, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.menu-category::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient);
}

.menu-category:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(233, 30, 99, 0.2);
	border-color: var(--primary);
}

.menu-category h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--gold);
	text-align: center;
}

.menu-items {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.menu-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	transition: all 0.3s ease;
}

.menu-item:hover {
	background: rgba(233, 30, 99, 0.1);
	margin: 0 -15px;
	padding: 12px 15px;
	border-radius: 10px;
}

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

.item-name {
	font-weight: 500;
	flex: 1;
}

.item-price {
	font-weight: 700;
	color: var(--gold);
	font-size: 1.1rem;
}

/* Gallery */
.gallery-grid { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	gap: 20px; 
	margin-top: 40px;
}

.gallery-grid figure { 
	margin: 0; 
	border-radius: 15px; 
	overflow: hidden; 
	background: var(--dark);
	transition: all 0.3s ease;
	position: relative;
}

.gallery-grid figure:hover {
	transform: scale(1.05);
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gallery-grid img { 
	display: block; 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
	aspect-ratio: 4 / 5; 
	filter: saturate(1.1) contrast(1.02);
	transition: all 0.3s ease;
}

.gallery-grid figure:hover img {
	filter: saturate(1.3) contrast(1.1) brightness(1.1);
}

.gallery-grid figcaption { 
	display: none; 
}

/* Footer */
.site-footer { 
	border-top: 1px solid rgba(233, 30, 99, 0.2); 
	padding: 60px 0 40px; 
	background: var(--darker);
	position: relative;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--gradient);
}

.footer-grid { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	gap: 40px; 
}

.footer-grid h3 {
	color: var(--gold);
	font-size: 1.3rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.footer-grid p {
	margin-bottom: 10px;
	opacity: 0.8;
}

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

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

.socials { 
	display: flex; 
	gap: 15px; 
	flex-wrap: wrap;
}

.socials a {
	padding: 10px 15px;
	background: rgba(233, 30, 99, 0.1);
	border-radius: 10px;
	border: 1px solid rgba(233, 30, 99, 0.2);
	transition: all 0.3s ease;
}

.socials a:hover {
	background: var(--primary);
	transform: translateY(-2px);
}

.tiny { 
	opacity: 0.7; 
	font-size: 0.9rem; 
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav {
		gap: 15px;
	}
	
	.nav a {
		font-size: 0.9rem;
	}
	
	.nav a.cta {
		padding: 10px 20px;
	}
	
	.hero-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.button {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}
	
	.menu-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}
	
	.brand {
		font-size: 1.2rem;
	}
	
	.nav {
		gap: 10px;
	}
	
	.nav a {
		font-size: 0.8rem;
	}
	
	.nav a.cta {
		padding: 8px 16px;
		font-size: 0.8rem;
	}
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
	* { 
		scroll-behavior: auto !important; 
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}


