@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
  font-family: 'Abygaer';
  src: url('./fonts/Abygaer-Abygaer.otf') format('opentype'), url('./fonts/Abygaer-Regular.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 94 20% 15%;

    --card: 90 10% 97%;
    --card-foreground: 94 20% 15%;

    --popover: 0 0% 100%;
    --popover-foreground: 94 20% 15%;

    --primary: 94 45% 31%;
    --primary-foreground: 0 0% 100%;

    --secondary: 90 12% 92%;
    --secondary-foreground: 94 20% 25%;

    --muted: 90 8% 94%;
    --muted-foreground: 94 8% 45%;

    --accent: 94 30% 40%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;

    --border: 90 10% 88%;
    --input: 90 10% 88%;
    --ring: 94 45% 31%;

    --radius: 0.75rem;

    --sidebar-background: 90 10% 97%;
    --sidebar-foreground: 94 20% 15%;
    --sidebar-primary: 94 45% 31%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 90 12% 92%;
    --sidebar-accent-foreground: 94 20% 15%;
    --sidebar-border: 90 10% 88%;
    --sidebar-ring: 94 45% 31%;

    --font-display: "Abygaer",Sans-serif;
    --font-body: 'Poppins', sans-serif;

    --gradient-glow: radial-gradient(ellipse at 50% 0%, hsl(94 45% 31% / 0.08) 0%, transparent 60%);
    --gradient-accent: linear-gradient(135deg, hsl(94 45% 31%), hsl(94 30% 40%));
  }

  .dark {
    --background: 94 15% 8%;
    --foreground: 90 10% 95%;
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground;
    font-family: var(--font-body);
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
  }
}

