/* Forge and Flight Academy - Main Stylesheet */
/* Color Palette: Deep Navy (#1A2E4C), Steel Gray (#5A6978), Vibrant Orange (#E85C0D), Clean White (#FFFFFF) */

/* CSS Variables */
:root {
  --primary: #1A2E4C;
  --secondary: #5A6978;
  --accent: #E85C0D;
  --background: #FFFFFF;
  --text: #2C3E50;
  --text-light: #7F8C8D;
  --border: #E0E0E0;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --container-width: 1200px;
  --spacing-unit: 1rem;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #d14d00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 92, 13, 0.3);
}

.btn-secondary {
  background: var(--primary);
  color: white;
}

.btn-secondary:hover {
  background: #0f1d2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 46, 76, 0.3);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Header & Navigation */
.site-header {
  background: white;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
  padding: 1rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--text-light);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-item.active .nav-link {
  color: var(--accent);
}

.nav-item.cta {
  margin-left: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: 0.3s;
}

/* Trust Bar */
.trust-bar {
  background: var(--primary);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  font-size: 1.25rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f1d2f 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 2rem;
  color: var(--accent);
}

.stat span {
  font-size: 0.875rem;
  opacity: 0.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: var(--text-light);
}

/* Audience Preview Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.audience-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.audience-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.audience-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.audience-card h3 {
  margin-bottom: 1rem;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
}

/* Value Props Grid */
.value-props {
  background: #f8f9fa;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.prop-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.prop-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.prop-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Featured Programs */
.program-spotlight {
  background: linear-gradient(135deg, var(--primary) 0%, #0f1d2f 100%);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.program-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.program-spotlight h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.program-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.program-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.program-outcomes {
  margin: 2rem 0;
}

.program-outcomes ul {
  margin-top: 1rem;
  margin-left: 1.5rem;
}

.program-outcomes li {
  margin-bottom: 0.5rem;
}

/* Programs Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.program-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.program-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.program-card h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.program-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-light);
}

.programs-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.pillar-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.pillars-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Trust Section */
.trust-section {
  background: #f8f9fa;
}

.trust-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.credentials-display {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.cred-item {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.cred-item strong {
  color: var(--primary);
  font-size: 1.125rem;
}

.capabilities-highlight h3 {
  margin-bottom: 1rem;
}

.capabilities-highlight ul {
  margin-left: 1.5rem;
}

.capabilities-highlight li {
  margin-bottom: 0.75rem;
}

/* Resources CTA */
.resources-cta {
  background: var(--accent);
  color: white;
}

.resources-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.resources-box h2 {
  color: white;
  margin-bottom: 1rem;
}

.resources-box p {
  margin-bottom: 2rem;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0f1d2f 100%);
  color: white;
  text-align: center;
}

.final-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-phone {
  font-size: 1.25rem;
}

.cta-phone strong {
  color: var(--accent);
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-parent a {
  color: var(--accent);
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential-badge {
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-legal {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-links-inline a {
  color: rgba(255,255,255,0.8);
  margin: 0 0.5rem;
}

.footer-tagline {
  text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--border);
    padding: 1rem;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .trust-items {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-tagline {
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .program-spotlight {
    padding: 2rem;
  }
  
  .program-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .audience-grid,
  .props-grid,
  .programs-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}
