/* ==========================================
   GISTEX DESIGN SYSTEM - CSS VARIABLES
   Easy switching between Concept 2 & 4
   ========================================== */

:root {
    /* CONCEPT 4 (FLUID ELEGANCE) - PURE VERSION */
    /* Primary Colors */
    --color-primary: #2c3e50;      /* Navy */
    --color-secondary: #b76e79;     /* Rose Gold */
    --color-accent: #7b68ee;        /* Purple */
    --color-light: #ffffff;
    --color-cream: #faf9f6;         /* Cream background */
    --color-dark: #1a1a1a;
    --color-gray: #666666;
    --color-gray-light: #faf9f6;    /* Cream instead of gray */

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

    /* Font Sizes */
    --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: 2rem;        /* 32px */
    --text-4xl: 2.5rem;      /* 40px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 4rem;        /* 64px */

    /* Spacing */
    --space-1: 0.25rem;      /* 4px */
    --space-2: 0.5rem;       /* 8px */
    --space-3: 0.75rem;      /* 12px */
    --space-4: 1rem;         /* 16px */
    --space-5: 1.5rem;       /* 24px */
    --space-6: 2rem;         /* 32px */
    --space-8: 3rem;         /* 48px */
    --space-10: 4rem;        /* 64px */
    --space-12: 5rem;        /* 80px */
    --space-16: 6rem;        /* 96px */

    /* Border Radius (Concept 4 - Fluid & Organic) */
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --radius-pill: 50px;        /* Pill-shaped buttons */
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Layout */
    --container-max: 1400px;
    --container-padding: 5%;

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal: 2000;
    --z-tooltip: 3000;
}

/* ==========================================
   CONCEPT 2 (MINIMALIST LUXURY) THEME
   Uncomment to switch themes
   ========================================== */
/*
:root {
    --color-primary: #ffffff;
    --color-secondary: #008080;
    --color-accent: #008080;
    --color-light: #ffffff;
    --color-dark: #2d2d2d;
    --color-gray: #666666;
    --color-gray-light: #f9f9f9;

    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Minimal borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Softer shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.08);
}
*/

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */
/*
Usage in media queries:
@media (max-width: 768px) { mobile }
@media (min-width: 769px) and (max-width: 1024px) { tablet }
@media (min-width: 1025px) { desktop }
*/
