@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');
@import "tailwindcss";

@theme inline {
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;

  --color-background: hsl(var(--background));
  --color-foreground: hsl(var(--foreground));
  
  --color-primary: hsl(var(--primary));
  --color-primary-foreground: hsl(var(--primary-foreground));
  
  --color-secondary: hsl(var(--secondary));
  --color-secondary-foreground: hsl(var(--secondary-foreground));
  
  --color-muted: hsl(var(--muted));
  --color-muted-foreground: hsl(var(--muted-foreground));
  
  --color-accent: hsl(var(--accent));
  --color-accent-foreground: hsl(var(--accent-foreground));
  
  --color-destructive: hsl(var(--destructive));
  --color-destructive-foreground: hsl(var(--destructive-foreground));
  
  --color-border: hsl(var(--border));
  --color-ring: hsl(var(--ring));
  
  --color-card: hsl(var(--card));
  --color-card-foreground: hsl(var(--card-foreground));
}

:root {
  /* Teal & Green Professional Theme */
  --background: 160 20% 98%;
  --foreground: 165 40% 10%;
  
  /* Primary: Rich Teal */
  --primary: 173 80% 32%;
  --primary-foreground: 0 0% 100%;
  
  /* Secondary: Soft Sage Green */
  --secondary: 152 40% 85%;
  --secondary-foreground: 165 40% 15%;
  
  /* Muted */
  --muted: 160 20% 92%;
  --muted-foreground: 165 15% 45%;
  
  /* Accent: Vibrant Emerald */
  --accent: 142 71% 45%;
  --accent-foreground: 0 0% 100%;
  
  /* Destructive: Refined Red */
  --destructive: 350 80% 55%;
  --destructive-foreground: 0 0% 100%;
  
  --border: 160 30% 88%;
  --ring: 173 80% 32%;
  
  --card: 0 0% 100%;
  --card-foreground: 165 40% 10%;
}

@layer base {
  body {
    @apply bg-background text-foreground antialiased font-sans selection:bg-primary/20 selection:text-primary;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    @apply font-bold tracking-tight text-foreground;
  }
}

/* Custom Utilities for glass effects */
.glass-panel {
  @apply bg-white/80 backdrop-blur-xl border border-white/40 shadow-xl shadow-teal-900/5;
}

.admin-glass {
  @apply bg-white/95 backdrop-blur-md border border-border/50 shadow-lg shadow-teal-900/5;
}
