/* =============================================================================
   tokens.css — Design tokens (paleta bronz/auriu, tipografie, spațiere)
   ============================================================================= */

:root {
  /* --- Backgrounds ---------------------------------------------------------- */
  --bg-primary: #FAF8F3;
  --bg-secondary: #F2EDE2;
  --bg-card: #FFFFFF;
  --bg-dark: #2A2520;

  /* --- Text ---------------------------------------------------------------- */
  --text-primary: #111111;
  --text-secondary: #2E2E2E;
  --text-muted: #6B6B6B;
  --text-on-dark: #FFFFFF;

  /* --- Accent — bronz auriu antichizat ------------------------------------ */
  --accent: #A87A3D;
  --accent-hover: #8E6530;
  --accent-soft: #D4B57E;
  --accent-soft-bg: rgba(212, 181, 126, 0.12);

  /* --- Borduri ------------------------------------------------------------- */
  --border: #E5DCC8;
  --border-strong: #C9BC9F;

  /* --- WhatsApp ------------------------------------------------------------ */
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  /* --- Umbre --------------------------------------------------------------- */
  --shadow-sm: 0 1px 3px rgba(85, 65, 35, 0.06);
  --shadow-md: 0 4px 12px rgba(85, 65, 35, 0.10);
  --shadow-lg: 0 12px 32px rgba(85, 65, 35, 0.14);
  --shadow-xl: 0 24px 64px rgba(85, 65, 35, 0.18);

  /* --- Tipografie ---------------------------------------------------------- */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* --- Spațiere ------------------------------------------------------------ */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* --- Layout -------------------------------------------------------------- */
  --container-max: 1200px;
  --container-padding: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3rem, 8vw, 6rem);
  --header-height: 72px;
  --bottom-bar-height: 64px;

  /* --- Border radius ------------------------------------------------------- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* --- Tranziții ----------------------------------------------------------- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration: 250ms;
  --duration-slow: 400ms;

  /* --- Z-index ------------------------------------------------------------- */
  --z-header: 50;
  --z-bottom-bar: 90;
  --z-overlay: 100;
  --z-modal: 1000;
}

@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;
  }
}
