/* Claude Aesthetic & Custom Styling for OurPetsLog */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400..700;1,6..72,400..700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-cream: #FAF8F5;
  --bg-card: #FFFFFF;
  --bg-subtle: #F3EFE6;
  --text-main: #2D2B28;
  --text-muted: #6B665F;
  --border-warm: #E6E1D7;
  --accent-amber: #D97706;
  --accent-amber-light: #FEF3C7;
  --accent-terracotta: #C25E00;
  --accent-green: #059669;
  --accent-blue: #2563EB;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.font-serif-heading {
  font-family: 'Newsreader', Georgia, serif;
}

/* Claude Card & Container Aesthetics */
.claude-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: 1rem;
  box-shadow: 0 4px 20px -2px rgba(45, 43, 40, 0.04), 0 2px 6px -1px rgba(45, 43, 40, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.claude-card:hover {
  box-shadow: 0 8px 30px -4px rgba(45, 43, 40, 0.07), 0 4px 10px -2px rgba(45, 43, 40, 0.03);
}

.claude-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: #D6D1C7;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B8B2A6;
}

/* Bottom Navigation Bar for Mobile */
.bottom-nav {
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-warm);
}

/* Animation utilities */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Custom Pulse Badge for Active Pet Status */
.status-pulse {
  position: relative;
}
.status-pulse::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 8px; height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--bg-card);
}
