@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --deep-charcoal: #1A1A1A;
    --warm-gold: #D4AF37;
    --champagne-gold: #C8A96A;
    --ivory-white: #F8F6F2;
    --forest-green: #2E4A3D;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--deep-charcoal);
    color: var(--ivory-white);
    overflow-x: hidden;
}

.luxury-app {
    min-height: 100vh;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body {
    scroll-snap-type: y proximity;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #D4A24C;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F4D03F;
}
