/* ==========================================================================
   Dida Tattoo - CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Colores Principales */
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-accent: #D4A574;

  /* Colores de Fondo */
  --bg-light: #F5F5F5;
  --bg-dark: #000000;

  /* Grises */
  --gray-light: #CCCCCC;
  --gray-medium: #666666;
  --gray-dark: #333333;

  /* Estados */
  --color-success: #28A745;
  --color-error: #DC3545;

  /* WhatsApp */
  --color-whatsapp: #25D366;

  /* Overlay */
  --overlay-dark: rgba(0, 0, 0, 0.4);

  /* Tipografia */
  --font-family: 'Roboto', sans-serif;
  --font-base: 18px;
  --font-h1: 50px;
  --font-h2: 40px;
  --font-h3: 30px;
  --font-small: 14px;
  --font-regular: 400;
  --font-semibold: 600;
  --font-black: 900;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;

  /* Espaciados */
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 40px;
  --spacing-lg: 80px;
  --spacing-xl: 120px;

  /* Breakpoints (solo referencia, no usables en media queries) */
  --breakpoint-mobile: 480px;
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1024px;
  --breakpoint-wide: 1440px;

  /* Container */
  --container-max: 1200px;
  --container-padding: 20px;

  /* Transiciones */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;

  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-header: 0 2px 10px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --radius-circle: 50%;

  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-mobile-menu: 500;
  --z-whatsapp: 9998;
  --z-top: 9999;
}
