
/* Zmienne CSS z index.css */
:root {
  --background: 40 33% 97%;
  --foreground: 200 22% 18%;
  --border: 37 24% 87%;
  --input: 37 24% 87%;
  --ring: 161 24% 44%;
  
  --card: 0 0% 100%;
  --card-foreground: 200 22% 18%;
  
  --primary: 161 24% 44%;
  --primary-foreground: 0 0% 100%;
  
  --secondary: 161 20% 90%;
  --secondary-foreground: 161 24% 20%;
  
  --muted: 40 20% 94%;
  --muted-foreground: 200 10% 46%;
  
  --accent: 37 74% 67%;
  --accent-foreground: 200 22% 18%;
}

/* Scroll Reveal Utilities */
.scroll-reveal {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: none;
}
.fade-up {
    transform: translateY(30px);
}
.fade-right {
    transform: translateX(-30px);
}
.fade-left {
    transform: translateX(30px);
}
.zoom-in {
    transform: scale(0.95);
}

/* Base resets & utilities */
html { scroll-behavior: smooth; }
