/* Arizona Desert Theme Variables
 * Shared color palette and design tokens for consistent theming across admin and public site
 * Based on admin/styles.css Arizona desert color scheme
 */

:root {
  /* Arizona Desert Color Palette */
  --az-sky: #87CEEB;           /* Desert sky blue */
  --az-sand: #E6D5B8;          /* Sandy beige */
  --az-adobe: #D2691E;         /* Adobe/terracotta */
  --az-cactus: #6B8E23;        /* Sage/cactus green */
  --az-sunset: #FF6B35;        /* Desert sunset orange */
  --az-stone: #8B7355;         /* Desert stone/brown */
  --az-cream: #FFF8DC;         /* Cream/cornsilk */
  --az-rust: #B7410E;          /* Rust red */
  
  /* Semantic colors based on AZ palette */
  --bg: #ffffff;
  --bg-page: var(--az-cream);
  --text: #2d1810;             /* Dark brown text for readability */
  --muted: #6b7280;
  --accent: var(--az-adobe);
  --accent-hover: var(--az-rust);
  --card: #fffef9;
  --border: #e4d5c4;
  --tile-bg: var(--card);
  
  /* Status colors */
  --ok: var(--az-cactus);
  --success: var(--az-cactus);
  --warn: #ea580c;
  --bad: #dc2626;
  --danger: #dc2626;
  --danger-hover: #b91c1c;
  
  /* Shadows with warm undertones */
  --shadow: 0 1px 3px rgba(139, 115, 85, 0.1);
  --shadow-lg: 0 10px 25px rgba(139, 115, 85, 0.15);
  
  /* Brand colors (for compatibility with existing code) */
  --brand: var(--az-adobe);
  --brand-2: var(--az-stone);
  
  /* Layout */
  --radius: 8px;
}

/* Glass effect for overlays */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
