/*
Theme Name: Finjoat WP Theme
Author: Roo
Description: A custom theme for Finjoat's WordPress blog.
Version: 1.0
*/

:root {
  /* Purple Primary Color Palette (#653397) */
  --primary: 258 52% 40%; /* #653397 */
  --primary-foreground: 0 0% 100%; /* White */
  --primary-light: 258 52% 50%; /* Lighter purple */
  --primary-dark: 258 52% 30%; /* Darker purple */
  
  /* Orange Accent Color (#f9a526) */
  --accent: 32 93% 56%; /* #f9a526 */
  --accent-foreground: 0 0% 0%; /* Black */
  --accent-light: 32 93% 66%; /* Lighter orange */
  
  /* Neutral Colors */
  --background: 0 0% 100%; /* White */
  --foreground: 0 0% 0%; /* Black */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(258 52% 40%), hsl(258 52% 50%));
  --gradient-accent: linear-gradient(135deg, hsl(32 93% 56%), hsl(32 93% 66%));
  --gradient-hero: linear-gradient(135deg, hsl(258 52% 40%), hsl(258 52% 30%));
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}

.bg-gradient-hero {
    background: var(--gradient-hero);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

.text-accent-foreground {
    color: hsl(var(--accent-foreground));
}

.font-oswald {
    font-family: 'Oswald', sans-serif;
}