@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Refined Gold & Amber Palette (60% Brand Colors) */
    --primary-gradient: linear-gradient(135deg, #FF8C00 0%, #FFB900 100%);
    --brand-orange: #FF8C00;
    --brand-yellow: #FFB900;
    --brand-gold: #D97706;

    /* Supporting Palette (40% Professional Neutrals) */
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --text-dark: #111827;
    /* Near Black */
    --text-gray: #4B5563;
    /* Medium Gray */
    --text-muted: #9CA3AF;
    /* Light Gray */

    --border-soft: rgba(255, 140, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-gray);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 800;
}

/* 60% Brand Presence Utilities */
.text-brand {
    color: var(--brand-orange) !important;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-brand-soft {
    background-color: rgba(255, 140, 0, 0.05);
}

/* Premium Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}

.border-glass {
    border: 1px solid var(--border-soft) !important;
}

.glass-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -20px rgba(255, 140, 0, 0.2);
    border-color: var(--brand-orange);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--brand-orange) !important;
}

.nav-link {
    font-weight: 600;
    color: var(--text-gray) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-orange) !important;
}

/* Hero */
.hero-section {
    padding: 15vw 0 10vw;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(255, 140, 0, 0.05), transparent);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Buttons */
.btn-premium {
    background: var(--primary-gradient);
    color: white !important;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 14px;
    border: none;
    box-shadow: 0 10px 20px -10px rgba(255, 140, 0, 0.5);
    transition: var(--transition);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(255, 140, 0, 0.6);
}

/* Cards */
.category-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 140, 0, 0.1);
    color: var(--brand-orange);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

i {
    color: var(--brand-orange);
}

/* Dashboard Specifics */
.dash-card {
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    padding: 2rem;
    transition: var(--transition);
}

.dash-card:hover {
    border-color: var(--brand-orange);
}

/* Forms */
.form-control {
    border: 2px solid #F3F4F6;
    border-radius: 14px;
    padding: 0.8rem 1rem;
}

.form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

/* Search Suggestions */
.search-container {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    margin-top: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: none;
}

.suggestion-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
}

.suggestion-item:hover {
    background: rgba(255, 140, 0, 0.08);
    color: var(--brand-orange);
}

.suggestion-item i {
    font-size: 1.1rem;
    color: var(--brand-orange);
}

.suggestion-item .title {
    font-weight: 600;
    font-size: 0.9rem;
    flex-grow: 1;
}

.suggestion-item .badge {
    font-size: 0.7rem;
    background: rgba(255, 140, 0, 0.1);
    color: var(--brand-orange);
}

/* Enforce the 60% brand vs 40% neutral feel */
section:nth-child(even) {
    background-color: var(--bg-white);
}

section:nth-child(odd) {
    background-color: #FFFDF5;
    /* Very subtle yellow tint */
}