/**
 * Abraskdabras Evenements - Design Tokens
 * Theme: Nuit Champagne - Luxueux, festif, or clair dominant
 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* ==========================================================================
     COULEURS - PALETTE NUIT CHAMPAGNE
     ========================================================================== */

  /* Fonds */
  --bg: #FAFAF5;
  --bg-alt: #F4F1EA;
  --surface: #ffffff;
  --surface-dark: #1A1610;
  --surface-dark-alt: #241F18;

  /* Or - Palette principale */
  --gold: #C9A55A;
  --gold-light: #E8C97A;
  --gold-pale: #F5E8C0;
  --gold-dark: #A07830;
  --gold-gradient: linear-gradient(135deg, #C9A55A 0%, #F0D070 45%, #C9A55A 100%);
  --gold-gradient-hover: linear-gradient(135deg, #D4B06A 0%, #F5D880 45%, #D4B06A 100%);

  /* Texte */
  --text: #1A1208;
  --text-secondary: #4A3F28;
  --text-muted: #6B5D45;
  --text-on-dark: #FAF6ED;
  --text-on-dark-muted: rgba(250, 246, 237, 0.7);

  /* Bordures */
  --border: #E8E0D0;
  --border-light: #F0EBE0;
  --border-gold: rgba(201, 165, 90, 0.35);
  --border-gold-strong: rgba(201, 165, 90, 0.6);

  /* Overlays */
  --overlay: rgba(18, 16, 10, 0.5);
  --overlay-dark: rgba(18, 16, 10, 0.7);
  --overlay-light: rgba(18, 16, 10, 0.3);

  /* Effets */
  --glow-gold: 0 0 20px rgba(201, 165, 90, 0.15);
  --glow-gold-strong: 0 0 30px rgba(201, 165, 90, 0.25);

  /* Couleurs utilitaires */
  --whatsapp: #25D366;
  --whatsapp-hover: #20BD5A;
  --danger: #C45C5C;
  --success: #5CAC7D;

  /* ==========================================================================
     TYPOGRAPHIE
     ========================================================================== */

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', Arial, sans-serif;

  /* Tailles de police - Mobile first */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Line heights */
  --leading-none: 1;
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* Letter spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;

  /* ==========================================================================
     ESPACEMENTS
     ========================================================================== */

  --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-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ==========================================================================
     BORDURES ET ARRONDIS
     ========================================================================== */

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* ==========================================================================
     OMBRES
     ========================================================================== */

  --shadow-sm: 0 1px 2px rgba(26, 18, 8, 0.05);
  --shadow: 0 4px 6px -1px rgba(26, 18, 8, 0.08), 0 2px 4px -2px rgba(26, 18, 8, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(26, 18, 8, 0.08), 0 4px 6px -4px rgba(26, 18, 8, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(26, 18, 8, 0.1), 0 8px 10px -6px rgba(26, 18, 8, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(26, 18, 8, 0.15);
  --shadow-gold: 0 4px 14px -2px rgba(201, 165, 90, 0.25);
  --shadow-gold-lg: 0 10px 30px -5px rgba(201, 165, 90, 0.3);

  /* ==========================================================================
     TRANSITIONS ET ANIMATIONS
     ========================================================================== */

  --transition-fast: 150ms ease;
  --transition: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-slower: 500ms ease;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shimmer-duration: 2s;
  --reveal-duration: 0.6s;

  /* ==========================================================================
     Z-INDEX
     ========================================================================== */

  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-whatsapp: 450;

  /* ==========================================================================
     LAYOUT
     ========================================================================== */

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --header-height: 72px;
}

/* ==========================================================================
   AJUSTEMENTS DESKTOP
   ========================================================================== */

@media (min-width: 768px) {
  :root {
    --header-height: 80px;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 88px;
  }
}

/* ==========================================================================
   PREFERENCES UTILISATEUR
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition: 0ms;
    --transition-slow: 0ms;
    --transition-slower: 0ms;
    --shimmer-duration: 0ms;
    --reveal-duration: 0ms;
  }
}

/* Mode sombre automatique - optionnel, commenté par défaut */
/*
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12100A;
    --bg-alt: #1E1910;
    --surface: #252015;
    --text: #FAF6ED;
    --text-secondary: #C9B896;
    --border: #3D3425;
  }
}
*/
