/* Custom Trade & Contractor Theme Extensions */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --color-brand-slate: #0f172a;
  --color-brand-amber: #f59e0b;
  --color-brand-copper: #b45309;
  --color-brand-sky: #0284c7;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0f19;
  color: #f1f5f9;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Montserrat', sans-serif;
}

.trade-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.trade-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.5);
}

.contractor-badge {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.glass-nav {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-sidebar-box {
  background: #1e293b;
  border: 1px solid #334155;
}

/* Post markdown content styling */
.post-content h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #f8fafc;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #334155;
  padding-bottom: 0.5rem;
}

.post-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fbbf24;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.post-content p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #cbd5e1;
}

.post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.post-content blockquote {
  border-left: 4px solid #f59e0b;
  background: rgba(245, 158, 11, 0.05);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: #e2e8f0;
}
