/**
 * Main Standalone Theme CSS for Bengal Dumba Farm
 * Production-ready Vanilla CSS replacing Tailwind build pipeline
 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Serif+Bengali:wght@400;600;700;800&display=swap');

/* Global Font Class */
.font-bengali {
  font-family: 'Hind Siliguri', 'Noto Serif Bengali', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #022c22;
}
::-webkit-scrollbar-thumb {
  background: #065f46;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f59e0b;
}

/* Keyframe Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Tailwind Utility Mappings & Color System */
.bg-slate-950 { background-color: #020617; }
.bg-slate-900 { background-color: #0f172a; }
.bg-emerald-950 { background-color: #022c22; }
.bg-emerald-950\/98 { background-color: rgba(2, 44, 34, 0.98); }
.bg-emerald-950\/95 { background-color: rgba(2, 44, 34, 0.95); }
.bg-emerald-950\/90 { background-color: rgba(2, 44, 34, 0.90); }
.bg-emerald-950\/80 { background-color: rgba(2, 44, 34, 0.80); }
.bg-emerald-950\/70 { background-color: rgba(2, 44, 34, 0.70); }
.bg-emerald-950\/60 { background-color: rgba(2, 44, 34, 0.60); }
.bg-emerald-900 { background-color: #064e3b; }
.bg-emerald-900\/90 { background-color: rgba(6, 78, 59, 0.90); }
.bg-emerald-900\/80 { background-color: rgba(6, 78, 59, 0.80); }
.bg-emerald-900\/60 { background-color: rgba(6, 78, 59, 0.60); }
.bg-emerald-900\/50 { background-color: rgba(6, 78, 59, 0.50); }
.bg-emerald-900\/40 { background-color: rgba(6, 78, 59, 0.40); }
.bg-emerald-900\/30 { background-color: rgba(6, 78, 59, 0.30); }
.bg-emerald-900\/20 { background-color: rgba(6, 78, 59, 0.20); }
.bg-emerald-800 { background-color: #065f46; }
.bg-emerald-800\/80 { background-color: rgba(6, 95, 70, 0.80); }
.bg-emerald-700 { background-color: #047857; }
.bg-emerald-600 { background-color: #059669; }

.bg-amber-400 { background-color: #fbbf24; }
.bg-amber-400\/90 { background-color: rgba(251, 191, 36, 0.90); }
.bg-amber-400\/20 { background-color: rgba(251, 191, 36, 0.20); }
.bg-amber-400\/10 { background-color: rgba(251, 191, 36, 0.10); }
.bg-amber-500\/20 { background-color: rgba(245, 158, 11, 0.20); }
.bg-red-600 { background-color: #dc2626; }

/* Text Colors */
.text-white { color: #ffffff; }
.text-amber-200 { color: #fef08a; }
.text-amber-300 { color: #fcd34d; }
.text-amber-400 { color: #fbbf24; }
.text-emerald-100 { color: #d1fae5; }
.text-emerald-200 { color: #a7f3d0; }
.text-emerald-300 { color: #6ee7b7; }
.text-emerald-400 { color: #34d399; }
.text-emerald-500 { color: #10b981; }
.text-emerald-800 { color: #065f46; }
.text-emerald-950 { color: #022c22; }

/* Borders */
.border-emerald-800 { border-color: #064e3b; }
.border-emerald-800\/80 { border-color: rgba(6, 78, 59, 0.80); }
.border-emerald-800\/60 { border-color: rgba(6, 78, 59, 0.60); }
.border-emerald-800\/50 { border-color: rgba(6, 78, 59, 0.50); }
.border-emerald-800\/40 { border-color: rgba(6, 78, 59, 0.40); }
.border-emerald-700 { border-color: #065f46; }
.border-emerald-700\/60 { border-color: rgba(6, 95, 70, 0.60); }
.border-emerald-700\/50 { border-color: rgba(6, 95, 70, 0.50); }
.border-emerald-700\/40 { border-color: rgba(6, 95, 70, 0.40); }
.border-emerald-600\/50 { border-color: rgba(5, 150, 105, 0.50); }
.border-emerald-500\/50 { border-color: rgba(16, 185, 129, 0.50); }
.border-amber-400 { border-color: #fbbf24; }
.border-amber-400\/60 { border-color: rgba(251, 191, 36, 0.60); }
.border-amber-400\/50 { border-color: rgba(251, 191, 36, 0.50); }
.border-amber-400\/30 { border-color: rgba(251, 191, 36, 0.30); }
.border-amber-400\/20 { border-color: rgba(251, 191, 36, 0.20); }

/* Backdrop Blur */
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* Range Slider Styling */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: #064e3b;
  border-radius: 8px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fbbf24;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fbbf24;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Modal Overlay & Animations */
.modal-overlay {
  transition: opacity 0.2s ease-in-out;
}
