/*
Theme Name: Flow Platform Admin 2025
Theme URI: https://flow-platform.com
Author: Lelkes István
Author URI: https://whitecomp.hu/
Description: Modern WordPress téma a F.L.O.W. platform számára - Build YOUR Future: Longevity, Opportunity, Wealth (Admin verzió új frontenddel)
Version: 1.0.0
License: GPL v2 or later
Text Domain: flow-platform-admin-2025
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
*/

/* CSS Variables for theme colors */
:root {
  /* Primary colors */
  --primary-color: #0d0d0d;
  --primary-rgb: 13, 13, 13;
  --secondary-color: #2c5282;
  --secondary-rgb: 44, 82, 130;
  --theme-color: #1a365d;
  --theme-rgb: 26, 54, 93;
  
  /* Accent colors */
  --accent-gold: #d4af37;
  --accent-gold-rgb: 212, 175, 55;
  --accent-gold-light: #f4d03f;
  --accent-gold-light-rgb: 244, 212, 63;
  --accent-gold-dark: #b8860b;
  --accent-gold-dark-rgb: 184, 134, 11;
  
  /* Dark theme colors */
  --dark-bg: linear-gradient(111deg, #1a2b4a 19.42%, #0f1e35 73.08%);
  --dark-bg-solid: #1a2b4a;
  --dark-text: #ffffff;
  --dark-text-muted: #b8c5d8;
  
  /* Light/white colors */
  --bg-white: #ffffff;
  --bg-white-rgb: 255, 255, 255;
  --bg-white-alpha: rgba(255, 255, 255, 1);
  --bs-white: #ffffff;
  --text-muted: #b8c5d8;
  --text-muted-rgb: 184, 197, 216;
  
  /* Additional colors */
  --border-light: #e871c2;
  --preloader-bg-dark: #1a2b4a;
  --preloader-bg-darker: #0f1e35;
  --loader-gold: #f1c40f;
  --loader-gold-alpha: rgba(241, 196, 15, 0.5);
  --loader-gold-light: #f4d03f;
  --border-dark: #0d0d0d;
  
  /* Card colors */
  --card-start-bg: #ffffff;
  --card-start-bg-rgb: 255, 255, 255;
  --card-start-accent: #e8f4fd;
  --card-start-accent-rgb: 232, 244, 253;
  --card-premium-bg: #2c3e50;
  --card-premium-bg-rgb: 44, 62, 80;
  --card-vip-bg: #f39c12;
  --card-vip-bg-rgb: 243, 156, 18;
  --card-vip-dark: #e67e22;
  --card-vip-dark-rgb: 230, 126, 34;
  --card-disabled: #95a5a6;
  --card-disabled-rgb: 149, 165, 166;
  --card-success: #27ae60;
  --card-success-rgb: 39, 174, 96;
  
  /* Primary font */
  --primary-font: "Jura", sans-serif;
  --secondary-font: "Jura", sans-serif;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-light) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* Body classes for color themes */
body.theme-green-gold {
  --secondary-color: #047857;
  --theme-color: #065f46;
  --accent-gold: #fbbf24;
  --accent-gold-light: #fde047;
}

body.theme-purple-silver {
  --secondary-color: #7c3aed;
  --theme-color: #5b21b6;
  --accent-gold: #e5e7eb;
  --accent-gold-light: #f3f4f6;
}

body.theme-orange-red {
  --secondary-color: #ea580c;
  --theme-color: #dc2626;
  --accent-gold: #fb923c;
  --accent-gold-light: #fed7aa;
}

body.theme-black-gold {
  --secondary-color: #27272a;
  --theme-color: #18181b;
  --accent-gold: #fbbf24;
  --accent-gold-light: #fde047;
}

body.theme-deep-green {
  --secondary-color: #166534;
  --theme-color: #14532d;
  --accent-gold: #4ade80;
  --accent-gold-light: #86efac;
}

/* WordPress Core Alignment */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Screen Reader Text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
