/* ── MAIN STYLESHEET — AURELIS JEWELRY HOUSE ────────── */

/* Component Imports */
@import url('./components/header.css');
@import url('./components/hero.css');
@import url('./components/legacy.css');
@import url('./components/world.css');
@import url('./components/house.css');
@import url('./components/footer.css');
@import url('./components/modal.css');
@import url('./components/toast.css');

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Color Palette */
    --color-dark-bg: #0c0b0a;
    --color-darker-bg: #070706;
    --color-light-bg: #f4ede4;
    --color-card-bg: #ebe3d8;

    --color-cream-light: #f8f5f0;
    --color-text-muted: #a39b91;
    
    --color-dark-text: #1c1a17;
    --color-dark-muted: #5e574f;

    --color-gold-accent: #c5a059;
    --color-gold-dark: #8c713b;
    --color-gold-light: #e0c896;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-fast: 250ms ease-in-out;
    --transition-smooth: 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    background-color: var(--color-dark-bg);
    color: var(--color-cream-light);
    font-family: var(--font-serif);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Common Global Utilities */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}
