@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 240 10% 3.9%;
    --card: 0 0% 100%;
    --card-foreground: 240 10% 3.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 240 10% 3.9%;
    --primary: 221.2 83.2% 53.3%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96%;
    --secondary-foreground: 222.2 84% 4.9%;
    --muted: 210 40% 96%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 210 40% 96%;
    --accent-foreground: 222.2 84% 4.9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 221.2 83.2% 53.3%;
    --radius: 0.5rem;
  }

  .dark {
    --background: 240 10% 3.9%;
    --foreground: 0 0% 98%;
    --card: 240 10% 3.9%;
    --card-foreground: 0 0% 98%;
    --popover: 240 10% 3.9%;
    --popover-foreground: 0 0% 98%;
    --primary: 210 40% 98%;
    --primary-foreground: 222.2 84% 4.9%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 212.7 26.8% 83.9%;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
  }
}

/* Custom NBRP Brand Colors */
@layer base {
  :root {
    /* Nordic Blue Theme */
    --nbrp-primary: 217 91% 60%;
    --nbrp-primary-hover: 217 91% 55%;
    --nbrp-secondary: 213 27% 84%;
    --nbrp-accent: 47 96% 53%;
    
    /* Status Colors */
    --nbrp-success: 142 76% 36%;
    --nbrp-warning: 38 92% 50%;
    --nbrp-error: 0 84% 60%;
    --nbrp-info: 199 89% 48%;
    
    /* Gray Scale */
    --nbrp-gray-50: 210 20% 98%;
    --nbrp-gray-100: 220 14% 96%;
    --nbrp-gray-200: 220 13% 91%;
    --nbrp-gray-300: 216 12% 84%;
    --nbrp-gray-400: 218 11% 65%;
    --nbrp-gray-500: 220 9% 46%;
    --nbrp-gray-600: 215 14% 34%;
    --nbrp-gray-700: 217 19% 27%;
    --nbrp-gray-800: 215 28% 17%;
    --nbrp-gray-900: 221 39% 11%;
  }
}

/* Custom components */
@layer components {
  .btn-nbrp {
    @apply inline-flex items-center justify-center rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50;
  }
  
  .btn-nbrp-primary {
    @apply bg-blue-600 text-white hover:bg-blue-700;
  }
  
  .card-nbrp {
    @apply rounded-lg border bg-card text-card-foreground shadow-sm;
  }
}
