@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Primary - Teal/Green for trust and growth */
  --primary: 168 80% 35%;
  --primary-foreground: 0 0% 100%;
  --primary-light: 168 70% 45%;
  --primary-dark: 168 85% 25%;
  
  /* Background tones */
  --background: 210 20% 98%;
  --foreground: 220 25% 15%;
  
  /* Cards and surfaces */
  --card: 0 0% 100%;
  --card-foreground: 220 25% 15%;
  --card-hover: 168 30% 97%;
  
  --popover: 0 0% 100%;
  --popover-foreground: 220 25% 15%;
  
  /* Secondary - Warm neutral */
  --secondary: 35 30% 95%;
  --secondary-foreground: 220 25% 20%;
  
  /* Muted */
  --muted: 210 15% 93%;
  --muted-foreground: 220 10% 45%;
  
  /* Accent - Amber for highlights */
  --accent: 38 95% 55%;
  --accent-foreground: 220 25% 15%;
  --accent-light: 38 95% 65%;
  
  /* Semantic */
  --destructive: 0 75% 55%;
  --destructive-foreground: 0 0% 100%;
  
  --success: 145 65% 42%;
  --success-foreground: 0 0% 100%;
  
  /* Borders and inputs */
  --border: 210 20% 88%;
  --input: 210 20% 88%;
  --ring: 168 80% 35%;
  
  --radius: 0.75rem;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(168 80% 35%), hsl(168 70% 45%));
  --gradient-hero: linear-gradient(180deg, hsl(168 30% 97%) 0%, hsl(210 20% 98%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(168 20% 98%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(38 95% 55%), hsl(38 95% 65%));
  
  /* Shadows */
  --shadow-sm: 0 1px 3px hsl(220 25% 15% / 0.06);
  --shadow-md: 0 4px 12px hsl(220 25% 15% / 0.08);
  --shadow-lg: 0 8px 30px hsl(220 25% 15% / 0.12);
  --shadow-glow: 0 0 40px hsl(168 80% 35% / 0.15);
}

* {
  border-color: hsl(var(--border));
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.text-balance {
  text-wrap: balance;
}

.gradient-primary {
  background: var(--gradient-primary);
}

.gradient-hero {
  background: var(--gradient-hero);
}

.gradient-accent {
  background: var(--gradient-accent);
}

.shadow-card {
  box-shadow: var(--shadow-md);
}

.shadow-card-hover {
  box-shadow: var(--shadow-lg);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-in-bottom {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-soft {
  animation: pulse-soft 2s ease-in-out infinite;
}

.animate-slide-up {
  animation: slide-up 0.5s ease-out forwards;
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out forwards;
}

.animate-slide-in-bottom {
  animation: slide-in-bottom 0.4s ease-out forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Utility classes */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

