/* main.css */
/* Core styles, variables, typography, and premium visual components */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;800&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #050505;
    --card-bg: rgba(10, 10, 12, 0.9);
    --border-color: rgba(255, 255, 255, 0.08);
    --amber-premium: #f59e0b;
    --amber-soft: rgba(245, 158, 11, 0.15);
    --text-primary: #f3f4f6;
    --text-muted: #9ca3af;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.luxury-title {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.08em;
}

/* Ambient Background Lights */
.ambient-glow-top {
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(245, 158, 11, 0.06);
    border-radius: 9999px;
    filter: blur(64px);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-bottom {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(217, 119, 6, 0.03);
    border-radius: 9999px;
    filter: blur(64px);
    pointer-events: none;
    z-index: 0;
}

/* Custom Premium Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.25);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(245, 158, 11, 0.5);
}

/* Utility Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
}
