/* Custom Styling & Theme for Anirudha Agrox (Light & Dark Theme Compatible) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --deutz-green: #00a651;
  --deutz-green-dark: #007a3b;
  --deutz-green-light: #2ee079;
  --deutz-accent: #f59e0b;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #00a651;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #007a3b;
}

/* Glassmorphism Light vs Dark */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}
.dark .glass-panel {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.glass-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}
.dark .glass-card {
  background: #0f172a;
  border-color: #1e293b;
}

/* Deutz Green Gradient Text */
.text-deutz-gradient {
  background: linear-gradient(135deg, #00a651 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dark .text-deutz-gradient {
  background: linear-gradient(135deg, #00a651 0%, #2ee079 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pulse animation for WhatsApp callout */
@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-pulse {
  animation: pulse-ring 2s infinite;
}

/* Hover Lift Effect */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(0, 166, 81, 0.2);
}

/* Hero Badge Glow */
.hero-badge {
  background: linear-gradient(90deg, rgba(0,166,81,0.1) 0%, rgba(46,224,121,0.15) 100%);
  border: 1px solid rgba(0,166,81,0.3);
}

/* Hide scrollbar for category pills */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
