/* PRT Funding Funnel - Global Styles */

:root {
  /* Brand Colors */
  --color-primary: #000000;
  --color-accent: #D4A84B;
  --color-cta: #04AC47;
  --color-cta-hover: #039b3f;
  --color-white: #FFFFFF;
  --color-gray-light: #F5F5F5;
  --color-gray: #888888;
  --color-text: #FFFFFF;
  --color-text-dark: #1A1A1A;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 20px rgba(212, 168, 75, 0.3);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-cta);
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.text-gold { color: var(--color-accent); }
.text-green { color: var(--color-cta); }

.section {
  padding: var(--spacing-xxl) 0;
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-light {
  background-color: var(--color-gray-light);
  color: var(--color-text-dark);
}

/* Gold Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFD700 50%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-gold {
  background: linear-gradient(135deg, var(--color-accent), #FFD700);
  color: var(--color-primary);
}

.badge-outline {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}
