/* ----------------------------------------------------
Heading Section
---------------------------------------------------- */
section.heading {
    width: 75rem;
    margin: auto;
    padding: 6rem 0 7rem 0;
}

section.heading h1 {
    font-size: 6rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
}

section.heading p {
    margin-top: -1rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;

}

/* ----------------------------------------------------
Mission Section
---------------------------------------------------- */
section.mission {
    background-color: black;
}

section.mission .container {
    display: flex;
    width: 75rem;
    margin: auto;
    height: max-content;
    padding: 4rem 0;
}

section.mission .container .txt-cont {
    flex: 1;
}

section.mission .container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 120%;
    color: var(--primary-color);
    /* text-shadow: 0 0 100px var(--primary-color); */
}

section.mission .container pre {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0;


}

section.mission .container pre span {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 170%;
}

section.mission .container .img-cont {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: right;
}

section.mission .container .img-cont img {
    height: 30rem;
    border-radius: 1rem;
    box-shadow: 0 0 5px var(--primary-color), 0 0 100px var(--primary-stroke);

}

/* ----------------------------------------------------
Outcome Section
---------------------------------------------------- */


section.outcome .container {
    width: 75rem;
    margin: auto;
    padding: 4rem 0;
}

section.outcome .container h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 120%;
    color: var(--primary-color);
    text-shadow: 0 0 100px var(--primary-color);
}

section.outcome .container pre {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0;


}

section.outcome .container pre span {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 250%;
}

/* ----------------------------------------------------
Results and Impacts Section
---------------------------------------------------- */


section.results-and-impacts .container {
    width: 75rem;
    margin: auto;
    margin-bottom: 5rem;
}

section.results-and-impacts h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    line-height: 120%;
    color: var(--primary-color);
    text-shadow: 0 0 100px var(--primary-color);
}

section.results-and-impacts .container .boxes {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 3rem;
}

section.results-and-impacts .container .boxes .box {
    border: 2px solid var(--primary-stroke);
    border-radius: .5rem;
    background-color: var(--secondary-bg);
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.results-and-impacts .container .boxes .box p {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

/* ----------------------------------------------------
Proof Reels Section
---------------------------------------------------- */


section.proof-reels .reel-boxes {
    width: 75rem;
    margin: auto;
    margin-bottom: 5rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}


section.proof-reels .reel-boxes .reel-box {
    flex: 1;
    display: flex;
}
section.proof-reels .reel-boxes .reel-box img{
    width: 100%;
}

/* ----------------------------------------------------
Responsive Styles
---------------------------------------------------- */
@media screen and (max-width: 1200px) {
    section.heading,
    section.mission .container,
    section.outcome .container,
    section.results-and-impacts .container,
    section.proof-reels .reel-boxes {
      width: 90%;
    }
  }
  
  @media screen and (max-width: 992px) {
    section.heading h1 {
      font-size: 4.5rem;
    }
    
    section.heading p {
      font-size: 1.3rem;
    }
    
    section.mission .container h2,
    section.outcome .container h2,
    section.results-and-impacts h2 {
      font-size: 2.5rem;
    }
    
    section.mission .container .img-cont img {
      height: 25rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    section.heading h1 {
      font-size: 3.5rem;
    }
    
    section.mission .container {
      flex-direction: column;
      gap: 2rem;
    }
    
    section.mission .container .img-cont {
      justify-content: center;
    }
    
    section.mission .container .img-cont img {
      height: auto;
      max-width: 100%;
    }
    
    section.results-and-impacts .container .boxes {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  
  @media screen and (max-width: 576px) {
    section.heading {
      padding: 3rem 0 4rem 0;
    }
    
    section.heading h1 {
      font-size: 2.5rem;
    }
    
    section.heading p {
      font-size: 1rem;
    }
    
    section.mission .container h2,
    section.outcome .container h2,
    section.results-and-impacts h2 {
      font-size: 2rem;
    }
    
    section.mission .container pre,
    section.outcome .container pre {
      font-size: 1rem;
    }
    
    section.mission .container pre span,
    section.outcome .container pre span {
      font-size: 1.2rem;
    }
    
    section.proof-reels .reel-boxes {
      flex-direction: column;
      gap: 1.5rem;
    }
  }