/*
Theme Name: Listing Ecosystem by Atul Ingale
Theme URI: https://crminfo.in/
Author: Atul Ingale
Author URI: https://crminfo.in/
Description: A premium, mobile-first custom booking theme for Listing Ecosystem by Atul Ingale. Acts as an independent Master Theme.
Version: 1.0.0
Text Domain: listing-by-atul-ingale
*/

/* Core Global Reset */
:root {
    --bg-color: #f6f2ff;
    --card-bg: #ffffff;
    --surface-color: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --primary-color: #6C3BFF;
    --secondary-color: #3b82f6;
    --border-color: #f1f5f9;
    /* Global Typography Scale */
    --font-h1: 32px;
    --font-h2: 24px;
    --font-h3: 20px;
    --font-h4: 18px;
    --font-body: 15px;
    --font-small: 13px;
    --font-tiny: 11px;
    --font-button: 15px;

    /* Global Spacing System */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(180deg, #f6f2ff 0%, #fdfcff 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}