@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #f97316; /* Orange 500 */
  --primary-dark: #ea580c; /* Orange 600 */
  --success: #22c55e; /* Green 500 */
  --danger: #ef4444; /* Red 500 */
  --bg-color: #f8fafc; /* Slate 50 */
  --card-bg: #ffffff;
  --text-main: #0f172a; /* Slate 900 */
  --text-muted: #64748b; /* Slate 500 */
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  -webkit-tap-highlight-color: transparent;
}

/* Glassmorphism utilities */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Micro-animations */
.btn-press {
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-press:active {
  transform: scale(0.96);
}

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

.slide-up {
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar for hidden overflows if needed */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* Floating Action Button (Camera) Pulse */
@keyframes pulse-ring {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
  100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
.fab-pulse {
  animation: pulse-ring 2s infinite;
}

/* Image preview container */
#previewContainer {
  transition: all 0.3s ease;
}
