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

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

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 0 0% 0%;

    --card: 0 0% 100%;
    --card-foreground: 0 0% 0%;

    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 0%;

    --primary: 45 100% 51%;
    --primary-foreground: 0 0% 0%;

    --secondary: 0 0% 96%;
    --secondary-foreground: 0 0% 0%;

    --muted: 0 0% 96%;
    --muted-foreground: 0 0% 45%;

    --accent: 45 100% 51%;
    --accent-foreground: 0 0% 0%;

    --destructive: 0 84% 60%;
    --destructive-foreground: 210 40% 98%;

    --border: 0 0% 91%;
    --input: 0 0% 91%;
    --ring: 45 100% 51%;

    --radius: 0.5rem;

    --gold: 45 100% 51%;
    --gold-dark: 43 100% 46%;
    --black: 0 0% 0%;
    --dark-gray: 0 0% 13%;
  }

  .dark {
    --background: 0 0% 0%;
    --foreground: 0 0% 98%;

    --card: 0 0% 0%;
    --card-foreground: 0 0% 98%;

    --popover: 0 0% 0%;
    --popover-foreground: 0 0% 98%;

    --primary: 45 100% 51%;
    --primary-foreground: 0 0% 0%;

    --secondary: 0 0% 13%;
    --secondary-foreground: 0 0% 98%;

    --muted: 0 0% 13%;
    --muted-foreground: 0 0% 65%;

    --accent: 45 100% 51%;
    --accent-foreground: 0 0% 0%;

    --destructive: 0 62% 30%;
    --destructive-foreground: 210 40% 98%;

    --border: 0 0% 13%;
    --input: 0 0% 13%;
    --ring: 45 100% 51%;
  }
}

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

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

@layer utilities {
  .text-gold {
    color: hsl(var(--gold));
  }
  
  .bg-gold {
    background-color: hsl(var(--gold));
  }
  
  .border-gold {
    border-color: hsl(var(--gold));
  }
  
  .hover\:bg-gold:hover {
    background-color: hsl(var(--gold));
  }
  
  .hover\:text-gold:hover {
    color: hsl(var(--gold));
  }
}
