/* MenuQR KALCER Theme - Eye-Catching Green-White! 🔥🌿 */

:root {
--green-primary: #10b981;
  --green-secondary: #34d399;
  --gradient-1: linear-gradient(135deg, #10b981, #34d399);
  --gradient-2: linear-gradient(135deg, #059669, #047857);
  --glow-green: 0 0 20px rgba(16, 185, 129, 0.6);
  --green-light: #dcfce7;
  --green-dark: #15803d;
  --white: #ffffff;
  --gray-light: #f8fafc;
  --gray-medium: #e2e8f0;
  --gray-dark: #475569;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Body & Background */
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(135deg, var(--green-light) 0%, #f0fdf4 50%, var(--gray-light) 100%);
  color: var(--gray-dark);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%), 
              radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
  z-index: -1;
}

/* Navbar - Clean Green */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 165, 115, 0.2);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-weight: 500;
  color: var(--gray-dark) !important;
  padding: 0.75rem 1rem !important;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--green-light);
  color: var(--green-primary) !important;
  transform: translateY(-1px);
}

/* Cards - White with Green accents */
.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.card-header, .card-title {
  color: var(--green-primary);
  font-weight: 600;
}

/* Buttons - Green primary */
.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  box-shadow: 0 4px 14px 0 rgba(22, 163, 74, 0.4);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px 0 rgba(22, 163, 74, 0.5);
}

.btn-success {
  background: linear-gradient(135deg, #10b981, #34d399);
  border: none;
}

.btn-outline-success {
  color: var(--green-primary);
  border-color: var(--green-light);
}

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

/* Status Badges - Fresh Green */
.status-badge {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pending { 
  background: linear-gradient(135deg, #f59e0b, #fbbf24); 
  color: white; 
}

.status-confirmed { 
  background: linear-gradient(135deg, var(--green-primary), var(--green-secondary)); 
  color: white; 
}

.status-processing { 
  background: linear-gradient(135deg, #06b6d4, #0891b2); 
  color: white; 
}

.status-completed { 
  background: linear-gradient(135deg, #10b981, #34d399); 
  color: white; 
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.status-cancelled { 
  background: linear-gradient(135deg, #ef4444, #dc2626); 
  color: white; 
}

/* Menu Cards */
.menu-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.menu-image {
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.menu-card:hover .menu-image {
  transform: scale(1.05);
}

.price-tag {
  color: var(--green-primary);
  font-weight: 700;
  font-size: 1.4rem;
}

/* Tables - Clean & Modern */
.table {
  background: var(--white);
  border-radius: var(--border-radius);
}

.table th {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
  border: none;
  padding: 1rem;
}

.table td {
  padding: 1rem;
  vertical-align: middle;
  border-color: var(--gray-medium);
}

.table-hover tbody tr:hover {
  background-color: var(--green-light);
}

/* Forms */
.form-control, .form-select {
  border-radius: var(--border-radius);
  border: 2px solid var(--gray-medium);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.15);
}

/* Alerts */
.alert-success {
  background: linear-gradient(135deg, var(--green-light), #bbf7d0);
  border: 1px solid var(--green-secondary);
  color: var(--green-dark);
  border-radius: var(--border-radius);
}

/* Sidebar Admin */
.sidebar {
  background: linear-gradient(180deg, var(--green-primary), var(--green-dark));
  min-height: 100vh;
}

.sidebar a {
  color: rgba(255,255,255,0.9);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  transition: var(--transition);
}

.sidebar a:hover, .sidebar a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Email Styles - Responsive */
@media only screen and (max-width: 600px) {
  .order-id {
    text-align: center;
  }
  
  table {
    font-size: 0.9rem;
  }
}

