/* Main Stylesheet for Inciting Incident Website Refresh */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');

/* Color Variables */
:root {
  --navy: #0A2342;
  --hunter-green: #2F4F4F;
  --gold: #B8860B;
  --copper: #B87333;
  --cream: #F5F5F0;
  --off-white: #F8F8F8;
  --charcoal: #333333;
  --light-gray: #E0E0E0;
  --mindcraft-color: #8a4fff;
  --gamecraft-color: #ff7e4f;
  --storycraft-color: #4fc1ff;
  --culturecraft-color: #4fff91;
  --signalcraft-color: #ff4f8a;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mt-5 {
  margin-top: 5rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--gold);
  color: white;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--gold);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

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

.btn-text {
  background: none;
  border: none;
  color: var(--navy);
  padding: 0;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-text:hover {
  color: var(--gold);
}

/* Header & Navigation */
header {
  padding: 20px 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--hunter-green);
}

.logo span {
  color: var(--gold);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.contact-btn {
  background-color: var(--navy);
  color: white;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.contact-btn:hover {
  background-color: var(--gold);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--hunter-green) 100%);
  color: white;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(10, 35, 66, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 66, 0.8) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--cream);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Methodology Section */
.methodology {
  padding: 100px 0;
  background-color: var(--cream);
  position: relative;
}

.methodology::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  opacity: 0.3;
}

.methodology-header {
  text-align: center;
  margin-bottom: 60px;
}

.methodology-header h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.methodology-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--charcoal);
}

.pillars-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.pillar {
  flex: 1;
  min-width: 200px;
  background-color: white;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
}

.pillar:nth-child(1)::before {
  background-color: var(--mindcraft-color);
}

.pillar:nth-child(2)::before {
  background-color: var(--gamecraft-color);
}

.pillar:nth-child(3)::before {
  background-color: var(--storycraft-color);
}

.pillar:nth-child(4)::before {
  background-color: var(--culturecraft-color);
}

.pillar:nth-child(5)::before {
  background-color: var(--signalcraft-color);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background-color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar:nth-child(1) .pillar-icon i {
  color: var(--mindcraft-color);
}

.pillar:nth-child(2) .pillar-icon i {
  color: var(--gamecraft-color);
}

.pillar:nth-child(3) .pillar-icon i {
  color: var(--storycraft-color);
}

.pillar:nth-child(4) .pillar-icon i {
  color: var(--culturecraft-color);
}

.pillar:nth-child(5) .pillar-icon i {
  color: var(--signalcraft-color);
}

.pillar-icon i {
  font-size: 24px;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--navy);
}

.pillar p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.methodology-cta {
  text-align: center;
  margin-top: 50px;
}

/* MasterCraft Section */
.mastercraft {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.mastercraft::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(184, 134, 11, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 11, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.mastercraft-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.mastercraft-header h2 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.mastercraft-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--charcoal);
}

.mastercraft-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.mastercraft-diagram {
  flex: 1;
}

.diagram-placeholder {
  width: 100%;
  height: 300px;
  background-color: rgba(184, 134, 11, 0.1);
  border: 2px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  text-align: center;
  padding: 20px;
}

.mastercraft-text {
  flex: 1;
}

.mastercraft-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Case Studies Section */
.case-studies {
  padding: 100px 0;
  background-color: var(--cream);
}

.case-studies-header {
  text-align: center;
  margin-bottom: 60px;
}

.case-studies-header h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.case-studies-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--charcoal);
}

.case-studies-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.case-study {
  flex: 1;
  background-color: white;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.case-study:hover {
  transform: translateY(-5px);
}

.case-study-image {
  margin-bottom: 20px;
}

.image-placeholder {
  width: 100%;
  height: 180px;
  background-color: rgba(10, 35, 66, 0.1);
  border: 2px dashed var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  text-align: center;
}

.case-study h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.case-study p {
  margin-bottom: 20px;
}

.case-study-results {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

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

.result-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.result-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Partners Section */
.partners {
  padding: 100px 0;
  background-color: white;
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-header h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.partners-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--charcoal);
}

.partners-content {
  max-width: 900px;
  margin: 0 auto;
}

.partners-text {
  text-align: center;
  margin-bottom: 40px;
}

.partners-logos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.logo-placeholder {
  width: 180px;
  height: 100px;
  background-color: rgba(10, 35, 66, 0.05);
  border: 2px dashed var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  text-align: center;
}

.partners-cta {
  text-align: center;
}

/* Thought Leadership Section */
.thought-leadership {
  padding: 100px 0;
  background-color: var(--off-white);
}

.thought-leadership-header {
  text-align: center;
  margin-bottom: 60px;
}

.thought-leadership-header h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.featured-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: white;
  border: 1px solid var(--light-gray);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-article::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.2;
}

.article-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--navy);
}

.article-excerpt {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--charcoal);
}

.article-author {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin-right: 15px;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  color: #666;
}

.article-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Results Section */
.results {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--hunter-green) 100%);
  color: white;
  position: relative;
}

.results::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.results-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.results-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.metrics-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial {
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--cream);
}

/* Lead Magnet Section */
.lead-magnet {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--hunter-green) 100%);
  color: white;
  text-align: center;
}

.lead-magnet-container {
  max-width: 600px;
}

.lead-magnet h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.lead-magnet p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 15px 30px;
  background-color: var(--gold);
  color: white;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--copper);
}

.privacy-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background-color: var(--cream);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Footer */
footer {
  background-color: var(--navy);
  color: white;
  padding: 80px 0 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .pillars-container {
    gap: 20px;
  }
  
  .mastercraft-content {
    flex-direction: column;
  }
  
  .case-studies-container {
    flex-wrap: wrap;
  }
  
  .case-study {
    flex: 0 0 calc(50% - 15px);
    margin-bottom: 30px;
  }
  
  .partners-logos {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .methodology-header h2,
  .mastercraft-header h2,
  .case-studies-header h2,
  .thought-leadership-header h2,
  .partners-header h2,
  .lead-magnet h2,
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .pillar {
    flex: 0 0 calc(50% - 15px);
    margin-bottom: 30px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .case-study {
    flex: 0 0 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  
  .logo {
    margin-bottom: 20px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .pillar {
    flex: 0 0 100%;
  }
  
  .footer-column {
    flex: 0 0 100%;
    text-align: center;
  }
}
