/* HUT Brand Colors - Real-Time Market Radar */
/* Generated: January 29, 2026 */

/* Inter Font - SaaS Standard */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Primary Colors */
  --hut-teal: #23C6B8;
  --hut-blue: #0B5ED7;
  --hut-orange: #F7931E;
  --hut-navy: #0A1F33;
  --hut-light-gray: #F5F7FA;
  
  /* Gradient */
  --hut-gradient: linear-gradient(135deg, #23C6B8 0%, #0B5ED7 100%);
  --hut-gradient-horizontal: linear-gradient(90deg, #23C6B8 0%, #0B5ED7 100%);
  
  /* Semantic Colors */
  --hut-primary: var(--hut-blue);
  --hut-secondary: var(--hut-teal);
  --hut-accent: var(--hut-orange);
  --hut-background: var(--hut-light-gray);
  --hut-text: var(--hut-navy);
  
  /* Alert Colors (real estate specific) */
  --hut-price-drop: #22C55E;      /* Green - opportunity */
  --hut-price-increase: #EF4444;  /* Red - caution */
  --hut-foreclosure: #F7931E;     /* Orange - distress signal */
  --hut-new-listing: #0B5ED7;     /* Blue - fresh */
  
  /* Typography - Inter (SaaS Standard) */
  --hut-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hut-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --hut-radius-sm: 4px;
  --hut-radius-md: 8px;
  --hut-radius-lg: 16px;
  --hut-radius-xl: 40px;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --hut-background: var(--hut-navy);
    --hut-text: #FFFFFF;
  }
}

/* Utility Classes */
.hut-gradient-bg {
  background: var(--hut-gradient);
}

.hut-gradient-text {
  background: var(--hut-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hut-card {
  background: white;
  border-radius: var(--hut-radius-lg);
  box-shadow: 0 4px 6px -1px rgba(10, 31, 51, 0.1);
}

.hut-badge-price-drop {
  background: var(--hut-price-drop);
  color: white;
  padding: 2px 8px;
  border-radius: var(--hut-radius-sm);
  font-size: 12px;
  font-weight: 600;
}

.hut-badge-foreclosure {
  background: var(--hut-foreclosure);
  color: white;
  padding: 2px 8px;
  border-radius: var(--hut-radius-sm);
  font-size: 12px;
  font-weight: 600;
}

.hut-btn-primary {
  background: var(--hut-gradient);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--hut-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hut-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 94, 215, 0.4);
}

/* Typography Classes */
body {
  font-family: var(--hut-font-body);
  color: var(--hut-text);
  background: var(--hut-background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hut-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--hut-navy);
}

h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

.hut-text-sm { font-size: 0.875rem; }
.hut-text-lg { font-size: 1.125rem; }
.hut-text-xl { font-size: 1.25rem; }

.hut-font-medium { font-weight: 500; }
.hut-font-semibold { font-weight: 600; }
.hut-font-bold { font-weight: 700; }

/* Layout Helpers */
.hut-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hut-flex { display: flex; }
.hut-flex-center { display: flex; align-items: center; justify-content: center; }
.hut-flex-between { display: flex; align-items: center; justify-content: space-between; }
.hut-gap-sm { gap: 0.5rem; }
.hut-gap-md { gap: 1rem; }
.hut-gap-lg { gap: 1.5rem; }

/* Header Component */
.hut-header {
  background: white;
  border-bottom: 1px solid #E5E7EB;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.hut-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hut-logo {
  height: 52px;
  width: auto;
}

/* Badge Variants */
.hut-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--hut-radius-sm);
  font-size: 12px;
  font-weight: 600;
  gap: 4px;
}

.hut-badge-new {
  background: var(--hut-new-listing);
  color: white;
}

.hut-badge-increase {
  background: var(--hut-price-increase);
  color: white;
}

/* Stat Cards */
.hut-stat-card {
  background: white;
  border-radius: var(--hut-radius-lg);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(10, 31, 51, 0.08);
}

.hut-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--hut-navy);
}

.hut-stat-label {
  font-size: 0.875rem;
  color: #6B7280;
  margin-top: 0.25rem;
}
