/**
 * CSS Custom Properties (Design Tokens)
 * Zentrale Variablen für das gesamte Design
 */

:root {
  /* Colors - Brand */
  --color-primary: #c2479f;
  --color-primary-light: #ff69b4;
  --color-primary-dark: #8b3a7f;
  
  /* Colors - Neutral */
  --color-dark: #2c1a3d;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #ffffff;
  --color-gold: #d4af37;
  
  /* Colors - Gradients */
  --gradient-hero: linear-gradient(180deg, 
    #e8b4d6 0%, 
    #d396bf 20%, 
    #b87ba8 40%, 
    #9d6191 60%, 
    #7a4975 80%, 
    #4a3250 100%);
  
  --gradient-hypnose: linear-gradient(to bottom, #f5e6f0 0%, #e8d9e8 100%);
  --gradient-mentalcoaching: linear-gradient(to bottom, #e8f5f8 0%, #d4e8ed 100%);
  --gradient-spirituelle: linear-gradient(to bottom, #e8f0f8 0%, #d4dfe8 100%);
  --gradient-trauer: linear-gradient(to bottom, #f0e8f5 0%, #e0d4e8 100%);
  --gradient-about: linear-gradient(to bottom, #fbeee8 0%, #f0ddd4 100%);
  --gradient-pricing: linear-gradient(to bottom, #e8f5f8 0%, #f5e6f0 100%);
  --gradient-contact: linear-gradient(to bottom, #f0e8f5 0%, #e8d9e8 100%);
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-signature: 'Brush Script MT', cursive;
  
  /* Font Sizes - Fluid Typography */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(2rem, 1.7rem + 1.5vw, 2.5rem);
  --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Layout */
  --container-max: 1200px;
  --container-padding: clamp(1rem, 5vw, 3rem);
  
  /* Borders */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 10px 30px rgba(194, 71, 159, 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
}

/* Dark Mode Support (optional, für zukünftige Erweiterung) */
@media (prefers-color-scheme: dark) {
  :root {
    /* Override colors for dark mode if needed */
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition-slow: 0ms;
  }
}
