/**
 * Design Tokens & Aesthetic Variables
 * Luxury Indian Wedding Editorial Palette
 */

:root {
  /* Editorial Palette */
  --ivory: #faf7f2;
  --paper: #f6f1e8;
  --paper-card: #fdfbf7;
  --champagne: #eee3d3;
  --blush: #ebdcd5;
  --terracotta: #a45643;
  --burgundy: #45171e;
  --burgundy-deep: #2d0e14;
  --warm-brown: #241a15;
  --ink: #19120f;
  --muted: #7d7065;
  --muted-light: #9e9185;
  --line: #dfd4c5;
  --line-subtle: #ede6dc;

  /* Alternating Section Palette */
  --section-bg-odd: #fff8f3;
  --section-bg-even: #fdf0e8;

  /* Accent Gold (Used with restraint) */
  --gold: #be9358;
  --gold-light: #e6c58f;
  --gold-glow: rgba(230, 197, 143, 0.45);
  --gold-foil: linear-gradient(135deg, #c79a5b 0%, #ecd09e 45%, #b28547 100%);
  --gold-border: rgba(190, 147, 88, 0.28);

  /* Dark Cinematic Sections */
  --dark-bg: #120e0c;
  --dark-surface: #1b1512;
  --dark-border: rgba(218, 184, 137, 0.18);
  --dark-cream: #f4ecdf;
  --dark-muted: #9e8f80;

  /* Typography */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script: "Great Vibes", cursive;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows & Transitions */
  --shadow-soft: 0 12px 35px rgba(28, 21, 18, 0.05);
  --shadow-card: 0 20px 40px -15px rgba(36, 26, 21, 0.09);
  --shadow-modal: 0 30px 70px -10px rgba(0, 0, 0, 0.7);
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}
