/* ==========================================================================
   BEDS24 CHANNEL MANAGER & ORIGINAL STAY - DESIGN SYSTEM TOKENS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Brand Luxury Palette */
  --primary-teal: #007f80;
  --primary-teal-dark: #005a5b;
  --primary-teal-light: #e6f3f3;
  --primary-teal-glow: rgba(0, 127, 128, 0.18);

  --accent-ochre: #d97706;
  --accent-gold: #f59e0b;
  --accent-ochre-light: #fef3c7;

  /* Surface & Background (Light Mode) */
  --bg-main: #f8f7f4;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-surface-muted: #f1f0eb;
  
  /* Text & Contrast */
  --text-primary: #121826;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --text-light: #ffffff;

  /* Borders & Dividers */
  --border-subtle: #e5e7eb;
  --border-strong: #d1d5db;

  /* Channel Colors */
  --channel-airbnb: #ff385c;
  --channel-booking: #003580;
  --channel-expedia: #00256c;
  --channel-direct: #007f80;
  --channel-vrbo: #1b3d6c;

  /* Status Colors */
  --status-success: #10b981;
  --status-warning: #f59e0b;
  --status-danger: #ef4444;
  --status-info: #3b82f6;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(0, 127, 128, 0.25);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg-main: #070d14;
  --bg-surface: #0e1622;
  --bg-surface-elevated: #141f2e;
  --bg-surface-muted: #1c2a3d;

  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;

  --border-subtle: #1e293b;
  --border-strong: #334155;

  --primary-teal-light: rgba(0, 127, 128, 0.15);
  --accent-ochre-light: rgba(217, 119, 6, 0.15);

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

h1, h2, h3, .serif-font {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

code, pre, .mono-font {
  font-family: 'JetBrains Mono', monospace;
}
