/**
 * Design Tokens - Uchenna × Eniola Wedding
 * Gold & White Elegant Theme
 */

:root {
  /* Color Palette - Gold & White */
  --color-white: #ffffff;
  --color-white-soft: #fdfbf7;
  --color-cream: #f8f5f0;
  --color-ivory: #fffef9;
  
  /* Gold Tones */
  --color-gold-light: #e8d5a3;
  --color-gold: #c9a227;
  --color-gold-rich: #b8860b;
  --color-gold-dark: #8b6914;
  
  /* Accents */
  --color-champagne: #f7e7ce;
  --color-bronze: #8c7853;
  
  /* Text Colors */
  --color-text-primary: #2c2417;
  --color-text-secondary: #5c4d3c;
  --color-text-muted: #8a7a68;
  --color-text-light: #ffffff;
  --color-text-gold: var(--color-gold-rich);
  
  /* Background Colors - Liquid Glass Effect */
  --color-bg-primary: var(--color-white);
  --color-bg-soft: var(--color-cream);
  --color-bg-card: rgba(255, 255, 255, 0.45);
  --color-bg-card-solid: var(--color-white);
  --color-bg-overlay: rgba(255, 255, 255, 0.35);
  --color-bg-glass: rgba(255, 255, 255, 0.25);
  
  /* Borders */
  --color-border-light: rgba(201, 162, 39, 0.2);
  --color-border-medium: rgba(201, 162, 39, 0.35);
  --color-border-gold: var(--color-gold);
  --color-border-soft: rgba(44, 36, 23, 0.08);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-rich));
  --gradient-gold-soft: linear-gradient(135deg, var(--color-champagne), var(--color-gold-light));
  --gradient-white-fade: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  --gradient-header: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  
  /* Overlay for slideshow - very subtle */
  --overlay-slideshow: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 255, 255, 0.2) 100%
  );
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(44, 36, 23, 0.08);
  --shadow-medium: 0 8px 32px rgba(44, 36, 23, 0.12);
  --shadow-strong: 0 12px 48px rgba(44, 36, 23, 0.16);
  --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.25);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Typography - Elegant Fonts */
  --font-display: "Cormorant Garamond", "Playfair Display", "Didot", "Times New Roman", serif;
  --font-primary: "Lora", "Georgia", serif;
  --font-accent: "Cinzel", "Trajan Pro", serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-md: 1.1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-hero: clamp(2.8rem, 5vw, 4rem);
  
  /* Letter Spacing */
  --tracking-tight: 0.02em;
  --tracking-normal: 0.04em;
  --tracking-wide: 0.12em;
  --tracking-wider: 0.2em;
  --tracking-widest: 0.3em;
  
  /* Line Heights */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --leading-loose: 1.9;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --container-max: 1100px;
  --header-height: 70px;
  
  /* Z-Index Scale */
  --z-background: -2;
  --z-slideshow: -1;
  --z-content: 1;
  --z-dropdown: 10;
  --z-header: 20;
  --z-modal: 50;
}
