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

/* Definition of the design system. All colors, gradients, fonts, etc should be defined here. 
All colors MUST be HSL.
*/

@layer base {
  :root {
    --background: 250 50% 5%;
    --foreground: 0 0% 98%;

    --card: 250 40% 10%;
    --card-foreground: 0 0% 98%;

    --popover: 250 40% 10%;
    --popover-foreground: 0 0% 98%;

    --primary: 270 70% 60%;
    --primary-foreground: 0 0% 100%;

    --secondary: 250 30% 15%;
    --secondary-foreground: 0 0% 98%;

    --muted: 250 30% 20%;
    --muted-foreground: 240 5% 65%;

    --accent: 270 70% 50%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;

    --border: 250 30% 20%;
    --input: 250 30% 20%;
    --ring: 270 70% 60%;

    --radius: 0.75rem;
    
    --fly: 200 90% 55%;
    --fly-foreground: 0 0% 100%;
    
    --premium: 45 90% 55%;
    --premium-foreground: 0 0% 10%;
    
    --vip: 280 80% 60%;
    --vip-foreground: 0 0% 100%;
    
    --custom: 150 70% 50%;
    --custom-foreground: 0 0% 100%;
    
    --gradient-hero: linear-gradient(135deg, hsl(270 70% 40%), hsl(250 60% 20%));
    --gradient-fly: linear-gradient(135deg, hsl(200 90% 55%), hsl(220 85% 45%));
    --gradient-premium: linear-gradient(135deg, hsl(45 90% 55%), hsl(35 85% 50%));
    --gradient-vip: linear-gradient(135deg, hsl(280 80% 60%), hsl(300 75% 50%));
    --gradient-custom: linear-gradient(135deg, hsl(150 70% 50%), hsl(170 65% 45%));
    
    --shadow-glow: 0 0 40px hsl(var(--primary) / 0.3);
    --shadow-card: 0 10px 30px -5px hsl(0 0% 0% / 0.5);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --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%;
  }

  .dark {
    --background: 250 50% 5%;
    --foreground: 0 0% 98%;
  }
}

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

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