/* ===== Farbvariablen – Teal-Palette ====

   Primary #177167 | Primary Light #219e91 | Primary Dark #155e75
   Accent #cce8e5 | Copper #c27a3e | Copper Dark #a3612a
   Abgeleitet: Mid Teal #16655d | Deep Teal #0e4252
   Hintergründe: Light #f8fafc | Soft #f1f6f5 | Muted #e6efed | Subtle #dbe8e6
*/
:root {
  --orm-primary: #177167;
  --orm-primary-light: #219e91;
  --orm-primary-mid: #16655d;
  --orm-primary-dark: #155e75;
  --orm-primary-deeper: #0e4252;
  --orm-accent: #a8d5cf;
  --orm-accent-light: #cce8e5;
  --orm-copper: #c27a3e;
  --orm-copper-dark: #a3612a;
  --orm-bg-light: #f8fafc;
  --orm-bg-soft: #f1f6f5;
  --orm-bg-muted: #e6efed;
  --orm-bg-subtle: #dbe8e6;
  --orm-white: #fff;
  --orm-gray: #ddd;
  --orm-gray-dark: #555;
  --orm-black: #1f2937;
  --orm-error: #dc3545;
  --orm-warning: #ffc107;
  --orm-success: #28a745;
  --orm-primary-rgb: 23, 113, 103;
  --orm-primary-dark-rgb: 21, 94, 117;
  --orm-white-rgb: 255, 255, 255;
  --orm-bg: var(--orm-bg-light);
  --orm-section-about: var(--orm-bg-light);
  --orm-section-about-text: var(--orm-black);
  --orm-section-about-heading: var(--orm-primary);
  --orm-section-steps: var(--orm-bg-light);
  --orm-section-steps-text: var(--orm-black);
  --orm-section-steps-heading: var(--orm-primary);
  --orm-section-events: var(--orm-bg-light);
  --orm-section-events-text: var(--orm-black);
  --orm-section-events-heading: var(--orm-primary);
  --orm-section-faq: var(--orm-bg-light);
  --orm-section-faq-text: var(--orm-black);
  --orm-section-faq-heading: var(--orm-primary);
  --orm-card: var(--orm-white);
  --orm-text: var(--orm-primary-dark);
  --orm-text-on-dark: var(--orm-bg-light);
}