/* Premium Theme Overrides */
:root {
    /* Primary - Deep Royal Navy (Premium Corporate look) */
    --primary: 222 47% 11%;
    /* #0f172a */
    --primary-foreground: 210 40% 98%;

    /* Secondary - Soft Platinum/Silver */
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222 47% 11%;

    /* Accent - Luxury Gold */
    --accent: 45 93% 47%;
    /* #eab308 */
    --accent-foreground: 222 47% 11%;

    /* Background - Crisp White for cleanliness, or very subtle off-white */
    --background: 0 0% 100%;
    --foreground: 222 47% 11%;

    /* Muted - Cool grays */
    --muted: 210 40% 96.1%;
    --muted-foreground: 215 16% 47%;

    /* Borders - Subtle Slate */
    --border: 214 32% 91%;
    --input: 214 32% 91%;
    --ring: 222 47% 11%;
}

/* Add a subtle premium gradient to the Hero Overlay if possible */
.bg-primary\/70 {
    background-color: rgba(15, 23, 42, 0.85) !important;
    /* Deeper opacity for premium feel */
}

/* Enhance typography readability */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add premium shadow to cards */
.card-hover:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}