:root {
  --primary-color: #e67e22; /* Appentizing Orange */
  --secondary-color: #c0392b; /* Deep Red */
  --accent-color: #27ae60; /* Fresh Green */
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: var(--dark-color);
  line-height: 1.6;
}

.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: 1.5rem;
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.card {
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

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

.price-badge {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
}

.category-pill {
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: rgba(230, 126, 34, 0.1);
  color: var(--primary-color);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

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

.hero-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.footer {
  background: var(--dark-color) !important;
  color: rgba(255,255,255,0.7);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Tabler overrides */
.page-wrapper {
  background: #f8f9fa;
}
