@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    font-size: 18px;
    --background: 0 0% 100%;
    --foreground: 215 25% 15%;

    --card: 0 0% 100%;
    --card-foreground: 215 25% 15%;

    --popover: 0 0% 100%;
    --popover-foreground: 215 25% 15%;

    --primary: 215 90% 42%;
    --primary-foreground: 0 0% 100%;

    --secondary: 210 20% 95%;
    --secondary-foreground: 215 25% 15%;

    --muted: 210 15% 93%;
    --muted-foreground: 0 0% 0%;

    --accent: 25 95% 53%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;

    --border: 214 20% 90%;
    --input: 214 20% 90%;
    --ring: 215 90% 42%;

    --radius: 0.75rem;

    --hero-bg: 215 35% 12%;
    --hero-foreground: 210 20% 95%;
    --hero-muted: 210 15% 70%;

    --success: 152 60% 42%;
    --success-foreground: 0 0% 100%;

    --teal: 175 70% 40%;
    --teal-foreground: 0 0% 100%;

    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;

    font-family: 'Inter', system-ui, sans-serif;
  }

  .dark {
    --background: 215 35% 8%;
    --foreground: 210 20% 95%;
    --card: 215 30% 12%;
    --card-foreground: 210 20% 95%;
    --popover: 215 30% 12%;
    --popover-foreground: 210 20% 95%;
    --primary: 215 90% 55%;
    --primary-foreground: 0 0% 100%;
    --secondary: 215 25% 18%;
    --secondary-foreground: 210 20% 95%;
    --muted: 215 25% 18%;
    --muted-foreground: 0 0% 0%;
    --accent: 25 95% 53%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 215 25% 20%;
    --input: 215 25% 20%;
    --ring: 215 90% 55%;
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground antialiased;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  }
}

@layer components {
  .section-container {
    @apply mx-auto max-w-7xl px-4 sm:px-6 lg:px-8;
  }

  .hero-gradient {
    background: linear-gradient(135deg, hsl(215 35% 12%) 0%, hsl(215 40% 18%) 50%, hsl(200 30% 15%) 100%);
  }

  .card-hover {
    @apply transition-all duration-300 hover:shadow-lg hover:-translate-y-1;
  }

  .accent-gradient {
    background: linear-gradient(135deg, hsl(25 95% 53%) 0%, hsl(15 90% 50%) 100%);
  }

  .primary-gradient {
    background: linear-gradient(135deg, hsl(215 90% 42%) 0%, hsl(225 85% 50%) 100%);
  }
}


.bg-background-gradient {
  background: linear-gradient(180deg, #f0f7ff 0%, #e6f1ff 50%, #f0f7ff 100%);
}