/* 
* VARIABLES CSS
* Portfolio Cécilia Remark - SEO Manager
*/

:root {
    /* Palette de couleurs */
    --rose-doux: #d5b1c8;
    --vert-eau: #d7e9e6;
    --vert-tendre: #638262;
    --vert-profond: #416f5d;
    --vert-amande: #9cbb89;

    /* Couleurs secondaires et nuances */
    --rose-doux-light: #e7d5e2;
    --rose-doux-dark: #b0869f;
    --vert-eau-light: #e9f5f2;
    --vert-eau-dark: #a8c3bd;
    --vert-tendre-light: #91b290;
    --vert-tendre-dark: #4a6149;
    --vert-profond-light: #6b9889;
    --vert-profond-dark: #2d4e41;
    --vert-amande-light: #bcd9ad;
    --vert-amande-dark: #7a9267;

    /* Couleurs neutres */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f0f0f0;
    --medium-gray: #cccccc;
    --gray: #888888;
    --dark-gray: #444444;
    --black: #222222;

    /* Couleurs d'état */
    --success: var(--vert-amande);
    --info: var(--vert-eau);
    --warning: #f0c05a;
    --danger: #d35f5f;

    /* Typographie */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Tailles de police */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 3.75rem;    /* 60px */

    /* Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Espacements */
    --spacing-0: 0;
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-12: 3rem;     /* 48px */
    --spacing-16: 4rem;     /* 64px */
    --spacing-20: 5rem;     /* 80px */
    --spacing-24: 6rem;     /* 96px */
    --spacing-32: 8rem;     /* 128px */

    /* Border radius */
    --radius-none: 0;
    --radius-sm: 0.125rem;  /* 2px */
    --radius-md: 0.25rem;   /* 4px */
    --radius-lg: 0.5rem;    /* 8px */
    --radius-xl: 0.75rem;   /* 12px */
    --radius-2xl: 1rem;     /* 16px */
    --radius-full: 9999px;  /* Cercle parfait */

    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Z-index */
    --z-0: 0;
    --z-10: 10;
    --z-20: 20;
    --z-30: 30;
    --z-40: 40;
    --z-50: 50;
    --z-auto: auto;

    /* Layout */
    --header-height: 4rem;
    --footer-height: 15rem;
    --container-max-width: 1200px;
    --container-padding: 1.5rem;

    /* Breakpoints (en pixels) */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
}