/*
Theme Name: WRAPOS Detailing Theme
Theme URI: https://wrapos.by
Author: Vladislav
Author URI: https://github.com/VladislavBeluaev
Description: Премиальная темная тема для студии оклейки и детейлинга WRAPOS в Гродно. Разработана на базе Tailwind CSS, Google Fonts и Lucide Icons.
Version: 1.0.0
License: GNU GPLv2 or later
Text Domain: wrapos
*/

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --font-size: 16px;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --background: #080808;
  --foreground: #e8e8e8;
  --card: #0f0f0f;
  --card-foreground: #e8e8e8;
  --popover: #111111;
  --popover-foreground: #e8e8e8;
  --primary: #dc2626;
  --primary-foreground: #ffffff;
  --secondary: #1a1a1a;
  --secondary-foreground: #e8e8e8;
  --muted: #141414;
  --muted-foreground: #888888;
  --accent: #1e1e1e;
  --accent-foreground: #e8e8e8;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --input: transparent;
  --input-background: #111111;
  --switch-background: #333333;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: rgba(220, 38, 38, 0.4);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
}

html {
  font-size: var(--font-size);
}