/* RMV Management Co. - Master Stylesheet */
@import url('tailwind.min.css');
@import url('luxury.css');

/* Root Variables */
:root {
    --color-gold: #d4af37;
    --color-gold-light: #f59e0b;
    --color-obsidian: #0a0a0a;
    --color-slate: #a8a29e;
}

/* Global Overrides */
html, body {
    background-color: #0a0a0a !important;
    color: #f3f4f6 !important;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
    overflow-x: hidden;
}

/* Gradient Text Effect */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* Base Performance Tweaks (Safe for all scripts) */
#cinema-canvas {
    pointer-events: none !important;
}

/* Fix Lag for Vhembe Cinematic Section */
.vhembe-cinematic-section {
    transform: translateZ(0);
}
