/*
Theme Name: Angel Investment Network
Theme URI: https://angelinvestment.ca
Author: Bespoke Venture Architect
Author URI: https://angelinvestment.ca
Description: High-performance institutional Angel Investor and Entrepreneur capital syndication marketplace built with semantic HTML5, modern Tailwind CSS, and bespoke WordPress architecture.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: angel-network
Tags: two-columns, custom-menu, custom-logo, featured-images, full-width-template, theme-options

--------------------------------------------------------------
Angel Investment Network - Core Stylesheet
--------------------------------------------------------------
All utility styles are compiled into assets/css/tailwind.css.
*/

/* Core CSS variables & root enhancements */
:root {
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --color-primary: #0A2540;
  --color-primary-light: #153A62;
  --color-primary-dark: #061828;
  --color-accent: #00875A;
  --color-accent-hover: #006B47;
  --color-gold: #D97706;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
}

body {
  font-family: var(--font-body);
  color: #334155;
  background-color: #F8FAFC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}
