/* homepage.css - this contains the styling formats for the homepage */

/* Hero text styling on any page that has the rotating-word element (only the homepage) */
  .hero-text {
    color: #4d4d4f;
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: bold;
    line-height: 1;
    text-align: center;
    margin: 2rem 0;
  }
  /* Hero text colors for dark theme */
  [data-md-color-scheme="slate"] .hero-text {
    color: #fff;
  }
  /* Rotating word colors for light theme */
  [data-md-color-scheme="default"] #rotatingWord {
    color: #1c5ca7;
  }
  /* Rotating word colors for dark theme */
  [data-md-color-scheme="slate"] #rotatingWord {
    color: #cbdc3f;
  }


  /* This sets the styling for the headers of each section (What is EDU? Why EDU? etc) */
  .section-header{
    color: #4d4d4f;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: 6rem 0 1.25rem 0;
  }
  /* In Slate Mode, set the text color to white.  */
  [data-md-color-scheme="slate"] .section-header {
    color: #fff;
  }



  /* This is for any description text in the homepage */
  .description{
    color: #4d4d4f;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    margin: 1rem auto 3rem auto;
    max-width: 800px;
    max-height: auto;
  }
  /* In Slate Mode, set the text to white.  */
  [data-md-color-scheme="slate"] .description {
    color: #fff;
  }
  /* This is for any description text in the homepage that needs to be slightly smaller */
  .description-small {
    color: #4d4d4f;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
  }
  [data-md-color-scheme="slate"] #no-background-text {
    color:#fff;
  }


  /* This is for the blue full bleed sections */
  .full-bleed {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    min-height: 100vh;
    max-height: auto;
    background: #1c5ca7;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .full-bleed > * {
    width: 100%;
    max-width: 85%;
    max-height: auto;
  }



  .panel {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 0 5%; /* Add some padding so content isn't edge-to-edge */
    box-sizing: border-box;
  }

  /* Center the content within the full-width panel */
  .panel > * {
    width: 70%;
    max-width: 70%;
    max-height: auto;
    margin: 0 auto;
}



  /* Logo styling - only applies to pages with logo-container class */
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
  }
  .logo-container img {
    width: 185px;
    height: auto;
  }

  .md-content {
    width: 100vw;
    height: auto;
  }
  
  /* Default: show light ecosystem image, hide dark */
  .ecosystem-container .dark-ecosystem { display: none; }
  /* Dark theme: swap */
  [data-md-color-scheme="slate"] .ecosystem-container .light-ecosystem { display: none; }
  [data-md-color-scheme="slate"] .ecosystem-container .dark-ecosystem { display: inline; }