/* ========================================
   CSS Variables - Elan The Statement Sohna Road
   Design System: COPIED FROM WEBSITE 3 (OneArc)
   Domain: elansohnaroads.in
   ======================================== */

:root {
    /* ===== Website 3 Color Tokens (EXACT COPY) ===== */
    --color-background-light: #f5f5f5;
    --color-white: #ffffff;
    --color-text-secondary: #666666;
    --color-accent-gold: #b79b6f;
    --color-black: #000000;
    --color-border-light: #e6e6e6;
    --color-border: #d6d6d6;
    --color-dark-gray: #3b3b3b;
    --color-medium-gray: #a2a2a2;
    --color-dark-section: #383736;
    --color-light-gray: #d7d7d7;
    --color-dark-bg: #181d27;

    /* ===== Semantic Color Mapping ===== */
    --color-primary: var(--color-accent-gold);
    --color-bg-primary: var(--color-white);
    --color-bg-secondary: var(--color-background-light);
    --color-bg-dark: var(--color-dark-section);
    --color-text-primary: var(--color-black);
    --color-text-muted: var(--color-text-secondary);
    --color-border-primary: var(--color-border-light);
    --color-border-secondary: var(--color-border);

    /* ===== Accent Colors ===== */
    --color-success: #28A745;
    --color-error: #DC3545;
    --color-warning: #FFC107;
    --color-info: #17A2B8;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;

    /* ===== Typography - Inter (Website 3 Font) ===== */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-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: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;

    /* Letter Spacing */
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;

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

    /* ===== Border Radius (Website 3: 10px) ===== */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;

    /* ===== Shadows ===== */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(183, 155, 111, 0.25);

    /* ===== Transitions ===== */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* ===== Z-Index ===== */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal-backdrop: 9000;
    --z-modal: 9500;
    --z-tooltip: 9900;
    --z-max: 10000;

    /* ===== Container Widths ===== */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1360px;

    /* ===== Header Height ===== */
    --header-height: 80px;
    --header-height-scrolled: 70px;

    /* ===== Breakpoints (Website 3) ===== */
    /* Desktop: min-width 1360px */
    /* Tablet: 810px - 1359px */
    /* Mobile: max-width 809px */
}

/* ===== Light Mode (Website 3 Default) ===== */
body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
