/* LuxeFashion Design System 
    Theme: Deep Forest & Antique Copper (Heritage Luxury)
    Font: Bodoni Moda (Headings), Montserrat (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;500;600;700;800&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    /* --- NEW COLOR PALETTE (Heritage Edition) --- */
    
    /* Primary: Deep, Rich Green (Replaces Black) */
    --primary-dark: #0D261F;      /* British Racing Green / Deep Forest */
    
    /* Secondary: Clean White */
    --pure-white: #FFFFFF;
    
    /* Accent: Antique Copper (Replaces Gold) */
    --accent-copper: #C29B61;     /* Muted Bronze/Copper tone */
    
    /* Backgrounds */
    --bg-light: #F4F7F6;          /* Very subtle cool grey/green tint */
    --bg-dark: #15332B;           /* Slightly lighter green for sections */
    
    /* Typography Colors */
    --text-main: #0D261F;         /* Dark Green text */
    --text-muted: #5C706A;        /* Muted Green-Grey */
    --border-subtle: #D8E0DD;     /* Soft borders */

    /* --- TYPOGRAPHY (Unchanged) --- */
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Montserrat', sans-serif;

    /* --- SPACING & LAYOUT --- */
    --container-width: 1320px;
    --header-height: 90px;
    
    /* --- PHYSICS --- */
    --transition-lux: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
}

/* Base Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }