/*
Theme Name: Murrays Direct Pallet Services
Author: Deepmind Agent
Version: 1.0.0
Description: Custom premium theme for Murrays DPS.
*/

:root {
    /* Premium Industrial Palette */
    --color-bg: #121214;
    /* Dark charcoal */
    --color-text: #e0e0e0;
    /* Off-white */
    --color-accent: #c0a062;
    /* Muted Gold/Bronze for premium feel */
    --color-bar-bg: #2a2a2c;
    --font-primary: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    overflow-x: hidden;
    /* Prevent scroll/jump during load */
    -webkit-font-smoothing: antialiased;
}

/* Typography map */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}