/* Custom Styles for Lisa's Tierbetreuung */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --primary-warm: #E67E22;
  --primary-hover: #D35400;
  --secondary-emerald: #10B981;
  --bg-cream: #FAF8F5;
  --card-bg: #FFFFFF;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-cream);
  color: #2D3748;
  scroll-behavior: smooth;
}

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

/* Glassmorphism utility */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Soft drop shadow */
.shadow-soft {
  box-shadow: 0 10px 30px -5px rgba(224, 132, 66, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
}

.shadow-soft-lg {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.07);
}

/* Image placeholder styling */
.img-placeholder {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px dashed #cbd5e1;
  transition: all 0.3s ease;
}

.img-placeholder:hover {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-subtle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-pulse-subtle {
  animation: pulse-subtle 2.5s ease-in-out infinite;
}
