/* css/variables.css */

/* Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Base Fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Floristería Escobar - Light Mode (Default) */
  --bg-primary: hsl(35, 40%, 98%);       /* Crema suave / Blanco loto */
  --bg-secondary: hsl(35, 30%, 94%);     /* Crema intermedio */
  --bg-tertiary: hsl(35, 20%, 88%);      /* Crema oscuro */
  --text-primary: hsl(150, 30%, 10%);     /* Verde bosque profundo */
  --text-secondary: hsl(150, 20%, 25%);   /* Verde bosque apagado */
  --text-muted: hsl(150, 10%, 45%);       /* Sage/Gris apagado */
  
  --color-accent: hsl(340, 60%, 55%);     /* Rosa orquídea / rubor elegante */
  --color-accent-hover: hsl(340, 70%, 47%);
  --color-accent-light: hsla(340, 60%, 55%, 0.12);
  
  --color-secondary: hsl(110, 20%, 45%);  /* Verde salvia */
  --color-secondary-hover: hsl(110, 25%, 38%);
  --color-secondary-light: hsla(110, 20%, 45%, 0.12);

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;

  /* Global variables (Radii, Transitions, Spacing) */
  --color-success: hsl(120, 35%, 40%);
  --color-error: hsl(0, 75%, 55%);
  --border-color: hsl(35, 20%, 84%);
  --shadow-color: hsla(150, 30%, 10%, 0.08);

  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-round: 50%;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width-content: 1200px;
  --header-height: 80px;
}

/* Floristería Escobar - Dark Mode */
[data-theme="dark"] {
  --bg-primary: hsl(150, 30%, 8%);       /* Verde bosque profundo oscuro */
  --bg-secondary: hsl(150, 25%, 12%);     /* Verde bosque intermedio */
  --bg-tertiary: hsl(150, 20%, 16%);      /* Verde bosque claro */
  --text-primary: hsl(35, 40%, 92%);      /* Crema suave */
  --text-secondary: hsl(35, 25%, 78%);    /* Crema apagado */
  --text-muted: hsl(35, 15%, 58%);       /* Crema muy apagado */
  
  --color-accent: hsl(340, 75%, 65%);     /* Rosa rubor brillante */
  --color-accent-hover: hsl(340, 85%, 72%);
  --color-accent-light: hsla(340, 75%, 65%, 0.18);
  
  --color-secondary: hsl(110, 25%, 65%);  /* Verde salvia claro */
  --color-secondary-hover: hsl(110, 30%, 72%);
  --color-secondary-light: hsla(110, 25%, 65%, 0.18);

  --border-color: hsl(150, 20%, 18%);
  --shadow-color: hsla(0, 0%, 0%, 0.6);
}

/* Focus States for Accessibility (WCAG 2.1 AA) */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

/* Accessibility: Reduce Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
