/* Aroma-Sphere Provisions Custom Styles */
:root {
    --truffle-black: #1C1C1C;
    --aged-gold: #C19A6B;
    --cold-chain-blue: #E1F5FE;
    --tobacco-amber: #B5651D;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
}

body {
    background-color: var(--truffle-black);
    color: var(--text-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .serif-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.text-gold { color: var(--aged-gold); }
.bg-gold { background-color: var(--aged-gold); }
.border-gold { border-color: var(--aged-gold) !important; }

.navbar {
    background-color: rgba(28, 28, 28, 0.95);
    border-bottom: 1px solid rgba(193, 154, 107, 0.3);
    padding: 1.5rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--aged-gold) !important;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--text-light) !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--aged-gold) !important;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(193, 154, 107, 0.1) 0%, rgba(28, 28, 28, 1) 70%);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    filter: grayscale(0.5) contrast(1.2);
}

.section-padding {
    padding: 100px 0;
}

.card-luxury {
    background-color: #252525;
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 0;
    transition: all 0.4s ease;
    overflow: hidden;
}

.card-luxury:hover {
    border-color: var(--aged-gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-gold {
    background-color: transparent;
    border: 1px solid var(--aged-gold);
    color: var(--aged-gold);
    border-radius: 0;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--aged-gold);
    color: var(--truffle-black);
}

.footer {
    background-color: #121212;
    border-top: 1px solid rgba(193, 154, 107, 0.2);
    padding: 60px 0 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--aged-gold);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Specific page elements */
.radar-chart-container {
    max-width: 400px;
    margin: 0 auto;
}

.flavor-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(193, 154, 107, 0.4);
    font-size: 0.7rem;
    margin-right: 5px;
    margin-bottom: 5px;
    color: var(--aged-gold);
}

.dashboard-widget {
    background: rgba(37, 37, 37, 0.8);
    border-left: 3px solid var(--aged-gold);
    padding: 20px;
    margin-bottom: 20px;
}
