/* ============================================
   3mpwr App Design System
   Professional, Accessible, User-Friendly
   ============================================ */

/* ============================================
   CSS Variables - Design Tokens
   ============================================ */

:root {
  /* Primary Brand Colors */
  --brand-primary: #4f8cff;
  --brand-primary-hover: #3a7ae8;
  --brand-secondary: #1e7e34;
  --brand-secondary-hover: #155728;
  
  /* Semantic Colors */
  --success: #28a745;
  --warning: #ffc107;
  --error: #dc3545;
  --info: #17a2b8;
  
  /* Background Colors */
  --bg-primary: #0B1423;
  --bg-secondary: #11141b;
  --bg-tertiary: #1a1d26;
  --bg-elevated: #23262f;
  
  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #a6adbb;
  --text-muted: #6c757d;
  --text-inverse: #111111;
  
  /* Border Colors */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-strong: rgba(255, 255, 255, 0.2);
  
  /* Focus & Interactive */
  --focus-color: #FFD54F;
  --focus-width: 3px;
  --focus-offset: 3px;
  
  /* Link Colors - Dark Mode */
  --link-primary: #66B2FF;
  --link-hover: #99D0FF;
  --link-underline-thickness: 2px;
  --link-hover-underline: 2px;
  
  /* Spacing Scale (based on 8px) */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 6rem;      /* 96px */
  
  /* Typography Scale */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 2rem;      /* 32px */
  --font-size-4xl: 2.5rem;    /* 40px */
  
  /* Line Heights */
  --line-height-tight: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  
  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ============================================
   Typography System
   ============================================ */

h1, .h1 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-top: 0;
  margin-bottom: var(--space-lg);
}

h2, .h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}

h3, .h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

h4, .h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

h5, .h5 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

h6, .h6 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.text-large {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.text-small {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
}

/* ============================================
   Collapsible Accessibility Toolbar
   ============================================ */

.accessibility-toolbar {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.toolbar-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-tertiary);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}

.toolbar-toggle:hover {
  background: var(--bg-elevated);
  border-color: var(--brand-primary-hover);
  transform: translateY(-1px);
}

.toolbar-toggle:focus,
.toolbar-toggle:focus-visible {
  outline: 3px solid var(--focus-color); /* Increased from 2px */
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
}

.toolbar-toggle .toggle-icon {
  font-size: var(--font-size-2xl);
}

.toolbar-toggle .toggle-text {
  flex: 1;
  text-align: left;
}

.toolbar-toggle .badge {
  background: var(--brand-primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
}

.toolbar-toggle .toggle-arrow {
  font-size: var(--font-size-sm);
  transition: transform var(--transition-base);
}

.toolbar-toggle[aria-expanded="true"] .toggle-arrow {
  transform: rotate(180deg);
}

.toolbar-content {
  margin-top: var(--space-lg);
}

.accessibility-toolbar.collapsed .toolbar-content {
  display: none;
}

/* Toolbar Groups */
.toolbar-group {
  margin-bottom: var(--space-xl);
}

.toolbar-group:last-child {
  margin-bottom: 0;
}

.toolbar-group-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-color);
}

.toolbar-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.toolbar-btn {
  flex: 1 1 auto;
  min-width: 150px;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}

.toolbar-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--brand-primary);
  transform: translateY(-1px);
}

.toolbar-btn:focus,
.toolbar-btn:focus-visible {
  outline: 3px solid var(--focus-color); /* Increased from 2px */
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
}

.toolbar-btn:active {
  transform: translateY(0);
}

/* Toolbar Settings */
.toolbar-settings {
  display: grid;
  gap: var(--space-md);
}

.toolbar-setting {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.toolbar-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  min-width: 100px;
}

.toolbar-select {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  cursor: pointer;
  min-height: 44px;
}

.toolbar-select:focus {
  outline: var(--focus-width) solid var(--focus-color);
  outline-offset: var(--focus-offset);
  border-color: var(--brand-primary);
}

/* Toolbar Tracking */
.toolbar-tracking {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.spoon-counter {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
}

.spoon-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.spoon-count {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--brand-primary);
}

.toolbar-btn-small {
  padding: var(--space-xs) var(--space-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: var(--font-size-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 32px;
  min-width: 60px;
}

.toolbar-btn-small:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.toolbar-btn-small:focus {
  outline: var(--focus-width) solid var(--focus-color);
  outline-offset: var(--focus-offset);
}

.toolbar-indicators {
  display: flex;
  gap: var(--space-sm);
}

.toolbar-btn-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  cursor: pointer;
  min-height: 44px;
}

.toolbar-btn-indicator:hover {
  background: var(--bg-elevated);
}

.toolbar-btn-indicator:focus {
  outline: var(--focus-width) solid var(--focus-color);
  outline-offset: var(--focus-offset);
}

/* ============================================
   Responsive Toolbar
   ============================================ */

@media (max-width: 768px) {
  .toolbar-buttons {
    flex-direction: column;
  }
  
  .toolbar-btn {
    min-width: 100%;
  }
  
  .toolbar-tracking {
    flex-direction: column;
    align-items: stretch;
  }
  
  .toolbar-indicators {
    flex-direction: column;
  }
}

/* ============================================
   Button System
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
  line-height: 1.5;
}

.btn:focus,
.btn:focus-visible {
  outline: 3px solid var(--focus-color); /* Enhanced for visibility */
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
}

.btn-secondary {
  background: var(--brand-secondary);
  color: white;
  border-color: var(--brand-secondary);
}

.btn-secondary:hover {
  background: var(--brand-secondary-hover);
  border-color: var(--brand-secondary-hover);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: white;
}

.btn-text {
  background: transparent;
  color: var(--brand-primary);
  border-color: transparent;
  padding: var(--space-sm) var(--space-md);
}

.btn-text:hover {
  background: var(--bg-tertiary);
  transform: none;
  box-shadow: none;
}

.btn-danger {
  background: var(--error);
  color: white;
  border-color: var(--error);
}

.btn-danger:hover {
  background: #c82333;
  border-color: #c82333;
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
  min-height: 36px;
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--font-size-lg);
  min-height: 52px;
}

/* Button Group */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
}

/* ============================================
   Card Component
   ============================================ */

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-color-strong);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
  margin: 0;
}

.card-body {
  margin-bottom: var(--space-lg);
}

.card-body:last-child {
  margin-bottom: 0;
}

.card-footer {
  display: flex;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-color);
}

/* ============================================
   Alert Component
   ============================================ */

.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid;
  margin-bottom: var(--space-lg);
}

.alert-info {
  background: rgba(23, 162, 184, 0.1);
  border-color: var(--info);
  color: var(--text-primary);
}

.alert-success {
  background: rgba(40, 167, 69, 0.1);
  border-color: var(--success);
  color: var(--text-primary);
}

.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  border-color: var(--warning);
  color: var(--text-primary);
}

.alert-error {
  background: rgba(220, 53, 69, 0.1);
  border-color: var(--error);
  color: var(--text-primary);
}

/* ============================================
   Badge Component
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  background: var(--brand-primary);
  color: white;
}

.badge--new {
  background: var(--success);
}

.badge--warning {
  background: var(--warning);
  color: var(--text-inverse);
}

/* ============================================
   Section Spacing
   ============================================ */

section {
  margin-bottom: var(--space-4xl);
}

section:last-child {
  margin-bottom: 0;
}

/* ============================================
   Accessibility Utilities
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
  z-index: var(--z-tooltip);
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   Responsive Utilities
   ============================================ */

@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2rem;      /* 32px on mobile */
    --font-size-3xl: 1.75rem;   /* 28px on mobile */
  }
  
  .toolbar-buttons {
    flex-direction: column;
  }
  
  .toolbar-btn {
    min-width: 100%;
  }
  
  .button-group {
    flex-direction: column;
    width: 100%;
  }
  
  .button-group .btn {
    width: 100%;
  }
  
  section {
    margin-bottom: var(--space-3xl);
  }
}

/* ============================================
   Enhanced Form & Link Accessibility
   ============================================ */

/* Form Controls - WCAG compliant */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="date"],
textarea,
select {
  font-size: 16px; /* Prevent zoom on iOS */
  line-height: 1.5;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color, #d1d5db);
  border-radius: var(--radius-md, 8px);
  background: var(--main-bg, #ffffff);
  color: var(--text-color, #222222);
  min-height: 44px; /* Touch target */
  transition: all 0.2s ease;
  width: 100%;
}

input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
  outline: 3px solid var(--focus-color, #0066CC);
  outline-offset: 2px;
  border-color: var(--focus-color, #0066CC);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color, #222222);
  font-size: 1rem;
}

/* Checkbox and radio enhancements */
input[type="checkbox"],
input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: var(--focus-color, #0066CC);
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: 3px solid var(--focus-color, #0066CC);
  outline-offset: 2px;
}

/* ============================================
   Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
  .accessibility-toolbar,
  .skip-link,
  .toolbar-toggle {
    display: none;
  }
}
