:root {
	/* Colors */
	--primary-color: #ff9800; /* vibrant orange for food appeal */
	--primary-hover: #e68a00;
	--secondary-color: #e91e63;
	--bg-dark: #121212;
	--bg-light: #f9f9f9;
	--text-dark: #333333;
	--text-light: #666666;
	--white: #ffffff;
	--navbar-bg: rgba(255, 255, 255, 0.95);
	
	/* Typography */
	--font-main: 'Montserrat', sans-serif;
	--font-heading: 'Outfit', sans-serif;
	
	/* Transitions */
	--transition: all 0.3s ease;
	
	/* Shadows */
	--shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
	--shadow-md: 0 10px 30px rgba(0,0,0,0.1);
	--shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	color: var(--text-dark);
	background-color: var(--bg-light);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Utilities */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 -15px;
}

.col-4, .col-6 {
	padding: 0 15px;
}

.col-4 { width: 33.333%; }
.col-6 { width: 50%; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.w-100 { width: 100%; }

.section {
	padding: 100px 0;
}

.section-subtitle {
	color: var(--primary-color);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.section-title {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	color: var(--text-dark);
	margin-bottom: 40px;
	font-weight: 800;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 30px;
	font-family: var(--font-main);
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	font-size: 1.1rem;
}

.btn-primary {
	background-color: var(--primary-color);
	color: var(--white);
	box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.btn-primary:hover {
	background-color: var(--primary-hover);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 152, 0, 0.6);
}

.btn-secondary {
	background-color: var(--white);
	color: var(--text-dark);
}

.btn-secondary:hover {
	background-color: #f0f0f0;
	transform: translateY(-3px);
}

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

.btn-outline:hover {
	background-color: var(--primary-color);
	color: var(--white);
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	padding: 20px 0;
	transition: var(--transition);
	z-index: 1000;
}

.navbar.scrolled {
	background: var(--navbar-bg);
	backdrop-filter: blur(10px);
	padding: 15px 0;
	box-shadow: var(--shadow-sm);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	margin-right: 10px;
}

.logo-text {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--white);
	transition: var(--transition);
}

.navbar.scrolled .logo-text {
	color: var(--text-dark);
}

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

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

.nav-link {
	text-decoration: none;
	color: var(--white);
	font-weight: 600;
	font-size: 1rem;
	transition: var(--transition);
	position: relative;
}

.navbar.scrolled .nav-link {
	color: var(--text-dark);
}

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

.nav-link:hover::after, .nav-link.active::after {
	width: 100%;
}

.nav-btn {
	background-color: var(--primary-color);
	color: var(--white) !important;
	padding: 10px 20px;
	border-radius: 20px;
}

.nav-btn::after {
	display: none;
}

.nav-btn:hover {
	background-color: var(--primary-hover);
}

.hamburger {
	display: none;
	color: var(--white);
	font-size: 1.8rem;
	cursor: pointer;
}

.navbar.scrolled .hamburger {
	color: var(--text-dark);
}

/* Hero Section */
.hero {
	height: 100vh;
	background-image: url('images/bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	padding: 0 20px;
}

.hero h1 {
	font-family: var(--font-heading);
	font-size: 5rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 20px;
	text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
	font-size: 1.8rem;
	color: var(--white);
	margin-bottom: 40px;
	font-weight: 500;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

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

/* About Section */
.about {
	background-color: var(--white);
}

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

.about-img {
	width: 100%;
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
}

.experience-badge {
	position: absolute;
	bottom: -20px;
	right: 0;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 20px;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: var(--shadow-md);
	border: 5px solid var(--white);
}

.experience-badge span {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
}

.experience-badge p {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
}

.about-text {
	padding-left: 50px;
}

.about-text p {
	margin-bottom: 20px;
	color: var(--text-light);
	font-size: 1.1rem;
}

.about-features {
	list-style: none;
	margin-top: 30px;
}

.about-features li {
	margin-bottom: 15px;
	font-size: 1.1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.about-features i {
	color: var(--primary-color);
	margin-right: 15px;
	font-size: 1.5rem;
}

/* Schedule Section */
.schedule {
	background-color: var(--bg-light);
}

.schedule-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.schedule-card {
	background-color: var(--white);
	padding: 40px 30px;
	border-radius: 20px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.schedule-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.highlight-card {
	background-color: var(--text-dark);
	color: var(--white);
}

.highlight-card h3, .highlight-card p {
	color: var(--white);
}

.card-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.schedule-card h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.schedule-card p {
	color: var(--text-light);
	margin-bottom: 10px;
}

.schedule-card p.highlight {
	font-weight: 700;
	color: var(--text-dark);
	font-size: 1.1rem;
}

/* Menu Section */
.menu {
	background-color: var(--white);
}

.menu-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 50px;
}

.filter-btn {
	background: transparent;
	border: 2px solid #e0e0e0;
	padding: 10px 25px;
	border-radius: 30px;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--transition);
	color: var(--text-light);
}

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

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

.menu-item {
	display: flex;
	background-color: var(--bg-light);
	border-radius: 15px;
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid #f0f0f0;
}

.menu-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.menu-item-img {
	position: relative;
	width: 150px;
	min-width: 150px;
}

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

.price {
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 5px 10px;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.9rem;
}

.badge-best, .badge-mild, .badge-medium, .badge-spicy {
	position: absolute;
	bottom: 10px;
	left: 10px;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.badge-best {
	background-color: var(--secondary-color);
	color: var(--white);
}

.badge-mild {
	background-color: #22c55e;
	color: var(--white);
}

.badge-medium {
	background-color: #f59e0b;
	color: var(--white);
}

.badge-spicy {
	background-color: #ef4444;
	color: var(--white);
}

.menu-item-info {
	padding: 20px;
	text-align: left;
}

.menu-item-info h3 {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.menu-item-info p {
	color: var(--text-light);
	font-size: 0.95rem;
}

/* Contact Section */
.contact {
	background-color: var(--bg-light);
}

.contact-info {
	margin-top: 40px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.info-item i {
	background-color: var(--white);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	color: var(--primary-color);
	box-shadow: var(--shadow-sm);
	margin-right: 20px;
}

.info-item h4 {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.info-item p {
	color: var(--text-light);
}

.contact-form {
	background-color: var(--white);
	padding: 40px;
	border-radius: 20px;
	box-shadow: var(--shadow-md);
}

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

.form-group input, .form-group select, .form-group textarea {
	width: 100%;
	padding: 15px 20px;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	font-family: var(--font-main);
	font-size: 1rem;
	transition: var(--transition);
	background-color: var(--bg-light);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	background-color: var(--white);
	box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

/* Footer */
.footer {
	background-color: var(--text-dark);
	color: var(--white);
	padding: 80px 0 0;
}

.footer-col h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	margin-bottom: 25px;
	color: var(--white);
}

.footer-col p {
	color: #bbb;
}

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

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

.footer-links a {
	color: #bbb;
	text-decoration: none;
	transition: var(--transition);
}

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

.social-links a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255,255,255,0.1);
	color: var(--white);
	border-radius: 50%;
	margin-left: 10px;
	transition: var(--transition);
	text-decoration: none;
}

.social-links a:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
}

.footer-bottom {
	margin-top: 60px;
	padding: 25px 0;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
	color: #888;
}

/* Back to Top */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: var(--primary-color);
	color: var(--white);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	text-decoration: none;
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: var(--text-dark);
	transform: translateY(-5px);
}

/* Animations */
.animate-up {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
	.col-4 { width: 50%; }
	.col-6 { width: 100%; }
	
	.about-text {
		padding-left: 0;
		margin-top: 50px;
	}
	
	.schedule-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.contact-form {
		margin-top: 50px;
	}
}

@media (max-width: 768px) {
	.hero h1 { font-size: 3.5rem; }
	.hero p { font-size: 1.3rem; }
	
	.hamburger { display: block; }
	
	.nav-menu {
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		background-color: var(--navbar-bg);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 80px 0 30px;
		transition: var(--transition);
		box-shadow: var(--shadow-md);
	}
	
	.nav-menu.active {
		top: 0;
	}
	
	.nav-menu li {
		margin: 15px 0;
	}
	
	.nav-link, .navbar.scrolled .nav-link {
		color: var(--text-dark);
		font-size: 1.2rem;
	}
	
	.schedule-grid {
		grid-template-columns: 1fr;
	}
	
	.menu-grid {
		grid-template-columns: 1fr;
	}
	
	.col-4 { width: 100%; text-align: center; margin-bottom: 30px; }
	.footer-col.text-right { text-align: center; }
	.social-links a { margin: 0 10px; }
}

@media (max-width: 576px) {
	.hero h1 { font-size: 2.5rem; }
	.section { padding: 60px 0; }
	
	.menu-item {
		flex-direction: column;
	}
	
	.menu-item-img {
		width: 100%;
		height: 200px;
	}
}
