body {
	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background-color: #f8f9fa;
	margin: 0;
	padding: 0;
}

/* HEADER STYLES */
.main-header {
	background-color: rgba(0, 0, 0, 0.85);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.main-header .uk-navbar-container {
	background: transparent !important;
}

.main-header .uk-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff !important;
	letter-spacing: -0.5px;
}

.main-header .uk-navbar-nav>li>a {
	color: #d4af37 !important;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 0 15px;
	transition: color 0.3s ease;
}

.main-header .uk-navbar-nav>li>a:hover {
	color: #ffffff !important;
}

.main-header .divider-vertical {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	height: 20px;
	margin: 0 10px;
	align-self: center;
}

/* HERO SECTION */
.hero-section {
	background-image: url('../img/Lumii_fondo.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 600px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: 60px 40px;
	margin-left: 8%;
}

.hero-title {
	font-size: 4.5rem;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.1;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	letter-spacing: -1px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.2rem;
	color: #ffffff;
	margin: 0 0 15px 0;
	font-weight: 400;
}

.hero-description {
	font-size: 1rem;
	color: #f0f0f0;
	line-height: 1.6;
	margin: 0 0 30px 0;
	max-width: 600px;
}

.reserva-btn {
	display: inline-block;
	background-color: #ffffff;
	color: #000000 !important;
	padding: 12px 35px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reserva-btn:hover {
	background-color: #d4af37;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive para hero */
@media (max-width: 960px) {
	.hero-title {
		font-size: 3rem;
	}

	.hero-content {
		margin-left: 5%;
		padding: 40px 20px;
	}
}

@media (max-width: 640px) {
	.hero-section {
		min-height: 500px;
	}

	.hero-title {
		font-size: 2.2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-description {
		font-size: 0.9rem;
	}

	.hero-content {
		margin-left: 0;
		padding: 30px 20px;
	}

	.main-header .uk-navbar-nav {
		display: none;
	}
}

.uk-text-primary {
	color: var(--primary-color) !important;
}

.menu-category {
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.uk-subnav-pill>.uk-active>a {
	background-color: var(--primary-color);
}

.order-by-whatsapp {
	background-color: #25D366;
}

.order-by-whatsapp:hover {
	background-color: #128C7E;
}

/* Estilos mejorados para las tarjetas del menú */
.menu-item-card {
	display: flex;
	align-items: stretch;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
}

.menu-item-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.menu-item-image {
	width: 140px;
	min-height: 140px;
	height: 100%;
	object-fit: contain;
	flex-shrink: 0;
	background-color: #1a1a1a;
	border-radius: 12px;
	padding: 10px;
}

.menu-item-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.menu-item-name {
	font-size: 1.25rem;
	font-weight: 600;
	color: #212529;
	margin: 0 0 8px 0;
}

.menu-item-description {
	font-size: 0.95rem;
	color: #6c757d;
	margin: 0 0 12px 0;
	line-height: 1.5;
}

.menu-item-price {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
}

/* Responsive para móviles */
@media (max-width: 640px) {
	.menu-item-card {
		flex-direction: column;
	}

	.menu-item-image {
		width: 100%;
		height: 200px;
	}

	.menu-item-content {
		padding: 15px;
	}
}