  html, body{
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .Header {
    height: 100px;
    border-style: solid;
    border-width: .5px;
    background-color: white;
    border-color: grey;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
  }

   .left-section {
     background-color: white;
     width: 200px;
     margin-left: 10px;
     display: felx;

    }

    .COg-Logo {
     width: 100px;
    }

    .center-section {
     background-color: white;
     flex: 1;
     display: flex;
     justify-content: end;

    }

    .create-button {
     position: relative;
     background-color:white;
     color: rgba(0, 0, 0, 0.50);
     font-family: Arial, Helvetica, sans-serif;
     font-size: 20px;
     border: none;
     height: 36px;
     width: 100px;
     border-radius: 5px;
     padding: 0 10px;
     margin: 0 30px;
     cursor: pointer;

    }

    .create-button::after {
     content: '';
     position: absolute;
     width:110px;
     height: 0.175rem;
     left:0;
     bottom: 0;
     background: red;
     transform: scale(0, 1);

    }

   .create-button:hover {
      color: rgba(0, 0, 0, 0.97);
     font-size: 22px;
     font-weight: bold;
    
   }
   .create-button:hover::after {
     transform: scale(1, 1);
     transition: transform 0.5s ease;

   }

    .create-button:active {
     background-color: none;
     font-size: 15px;
    }


    .volunteer-button {
     position: relative;
     background-color: white;
     color: rgba(0, 0, 0, 0.50);
     font-family: Arial, Helvetica, sans-serif;
     font-size: 20px;
     border: none;
     height: 36px;
     width: 155px;
     border-radius: 5px;
     padding: 0 10px;
     margin: 0 30px;
     cursor: pointer;

    }

    .volunteer-button::after {
     content: '';
     position: absolute;
     width:100%;
     height: 0.175rem;
     left:0;
     bottom: 0;
     background: #45bc7a;
     transform: scale(0, 1);

    }

    .volunteer-button:hover {
     color: rgba(0, 0, 0, 0.97);
     font-size: 22px;
     font-weight: bold;
    
    }

    .volunteer-button:hover::after {
      transform: scale(1, 1);
      transition: transform 0.5s ease;
    }

    .volunteer-button:active {
     background-color: none;
     font-size: 15px;
    }


    .donate-button {
     position: relative;
     background-color: white;
     color: rgba(0, 0, 0, 0.50);
     font-family: Arial, Helvetica, sans-serif;
     font-size: 20px;
     border: none;
     height: 36px;
     width: 110px;
     border-radius: 5px;
     padding: 0 10px;
     margin: 0 30px;
     cursor: pointer;
    }

    .donate-button::after {
     content:'';
     position: absolute;
     width:100%;
     height: 0.175rem;
     left:0;
     bottom: 0;
     background: #29abe2;
     transform: scale(0, 1);

    }

    .donate-button:hover {
     color: rgba(0, 0, 0, 0.97);
     font-size: 22px;
     font-weight: bold;
    
    }

    .donate-button:hover::after {
     transform: scale(1, 1);
     transition: transform 0.5s ease;
   }

    .donate-button:active {
     background-color: none;
     font-size: 15px;
   }

    .right-section {
     background-color: white;
     width: 75px;
     display: flex;
     justify-content: center;

    }

    .Taco-Menu {
     position: relative;
     width: 25px;
     height:25px;
     overflow: hidden;
     cursor: pointer;
    }
    
    .Taco-Menu img {
      position: absolute;
      width: 25px;
      height: 25px;
      object-fit: cover;
      transition: opacity 0.5s ease-in-out;
    }

    .Taco-Menu img.transition {
     opacity: 1;
     z-index: 2;
    }

    .Taco-Menu:hover img.transition {
      opacity: 0;
    }

    .slide{
      height: 100%;
      width: 180px;
      position: absolute;
      background-color: #fff;
      transition: 0.5s ease;
    }
    input[type="checkbox"] {
      display: none;
    }


    .toggle {
      position: absolute;
      height: 30px;
      width: 30px;
      top: 20px;
      right: 20px;
      z-index: 1;
      cursor: pointer;
      border-radius: 2px;
      background-color: white;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
    }
    .toggle .common{
      position: absolute;
      height: 2px;
      width: 20px;
      background-color: red;
      border-radius: 50px;
      transition: 0.3s ease;

    }
    .toggle .top_line {
      top: 30%;
      left: 50%;
      transform: translate(-50%,-50%)
    }
    .toggle .mid_line {
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%)
    }
    .toggle .bot_line {
      top: 70%;
      left: 50%;
      transform: translate(-50%,-50%)
    }
    input:checked ~ .toggle .top_line {
      left: 2px;
      top: 14px;
      width: 25px;
      transform: rotate(45deg) translate(2px, 1px);
    }

    input:checked ~ .toggle .bot_line {
      left: 2px;
      top: 14px;
      width: 25px;
      transform: rotate(-45deg) translate(2px, -1px);
    }
    input:checked ~ .toggle .mid_line {
      opacity: 0;
    }

    .sidebar{
      position:fixed;
      top: 35;
      right: 0;
      height: 100vh;
      width: 200px;
      z-index: 999;
      background-color: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(10px);
      box-shadow: -10px 0 10px rgba(0, 0, 0, 0.50);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      transition: .3s ease;
      transform: translatex(250px);
  
    }

      input:checked ~ .sidebar{
      transform: translatex(0px);
      opacity: 1;
      }

    .sidebar li{
      height: 50px;
      list-style: none;
      padding-top: 30px;
    }

    .sidebar a{
     position: relative;
     background-color: none;
     color: rgba(0, 0, 0, 0.50);
     font-family: Arial, Helvetica, sans-serif;
     font-size: 20px;
     border: none;
     height: 36px;
     width: 110px;
     border-radius: 5px;
     padding: 0 10px;
     margin: 0 30px;
     cursor: pointer;
     text-decoration: none;
     align-items: center;
     align-content: center;
     justify-content: center;
    }

    .sidebar a::after {
     content:'';
     position: absolute;
     width:100%;
     height: 0.175rem;
     left:0;
     bottom: 0;
     background: #fff568;
     transform: scale(0, 1);

    }

    .sidebar a:hover {
     color: rgba(0, 0, 0, 0.97);
     font-size: 22px;
     font-weight: bold;
    
    }

    .sidebar a:hover::after {
     transform: scale(1, 1);
     transition: transform 0.5s ease;
   }

    .sidebar a:active {
     background-color: none;
     font-size: 15px;
   }


    /* text*/

    h1 {
      display: flex;
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 50px;
      color:  rgba(0, 0, 0, 0.50);

    }
    h2 {
      display: flex;
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 50px;
      color: whitesmoke;
    }

    h3 {
      display: flex;
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 30px;
      color: rgba(0, 0, 0, 0.50);
    }


    P1 {
      display: flex;
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 30px;
      color:  rgba(0, 0, 0, 0.50);
    }

    P2 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      color:  rgba(0, 0, 0, 0.50);
    }

    p3{
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      text-align: justify;
      color:  rgba(0, 0, 0, 0.50);
    }

    p4{
      font-family: Arial, Helvetica, sans-serif;
      font-size: 15px;
      text-align: justify;
      color:  rgba(0, 0, 0, 0.50);
    }

    p5{
      display: flex;
      text-align: justify;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 30px;
      color:  rgba(0, 0, 0, 0.50);
    }

    /* Start of the Body*/

    body {
      display: flex;
      flex-direction: column;
      gap: 5px;
      flex-wrap: nowrap;
      min-height: 100vh;
      margin: 0;
      justify-content: flex-start;
      background-color: whitesmoke;
    
    }
    .main-content {
      flex: 1;
    }

/* Start of the What we are Section*/
    .whatWeAreTextSection {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1000px;
      margin: 80px auto; 
      padding: 20px;
      line-height: 1.6;
      
    }

/* Start of the Concept Section*/
    .conceptSection{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 5px;
      
    }
    .conceptSection h1 {
      margin:10px 0 5px 10px;
    }

    .conceptImage {
      display: flex;
      flex-grow: 1;
      width: 100%;
      max-width: 1000px;
      justify-content: center;
      align-items: center;
      align-content: center;
      margin-bottom: 20px;
    }
/* Start of the Concept Breakdown Section*/

.breakdownConcpets {
  display: flex;
  flex-direction: column; /* stack rows vertically */
  align-items: center;
  gap: 100px; /* space between rows */
  margin-top: 40px;
}

/* Each row (Idea, Validate, Pair, etc.) */
.ideaRow,
.validateRow,
.pairRow,
.planRow,
.implementRow,
.empowerRow,
.elavRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 80%;
  max-width: 1200px;
}

/* Each image should take about half width */
.ideaSection,
.validateSection,
.pairSection,
.planSection,
.ImplementSection,
.empowerSection,
.evalSection {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ideaImage,
.validateImage,
.pairImage,
.planImage,
.implementImage,
.empowerImage,
.evalImage {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Text area beside each image */
.ideaText,
.validateText,
.pairText,
.planText,
.implementText,
.empowerText,
.evalText {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive behavior: stack vertically on small screens */
@media (max-width: 800px) {
  .ideaRow,
  .validateRow,
  .pairRow,
  .planRow,
  .implementRow,
  .empowerRow,
  .elavRow {
    flex-direction: column;
    text-align: center;
  }

  .ideaSection,
  .validateSection,
  .pairSection,
  .planSection,
  .ImplementSection,
  .empowerSection,
  .evalSection,
  .ideaText,
  .validateText,
  .pairText,
  .planText,
  .implementText,
  .empowerText,
  .evalText {
    width: 100%;
  }

  .ideaImage,
  .validateImage,
  .pairImage,
  .planImage,
  .implementImage,
  .empowerImage,
  .evalImage {
    max-width: 300px;
  }
}



  /* Start of Meet the Team Section*/
    .meetTeamSection{
      display:flex;
      flex-direction: column;
      gap: 50px;
      margin-top: 30px;
      flex-wrap: wrap;
      justify-content: center; 
      align-items: center;
    }

    .teamLogosSection{
      display: flex;
      flex-direction: row;
    }
 /* Start of Scott Section*/
.FounderSection {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 10px 20px;
  margin-bottom: 80px;
}

.ScottImageframe {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid black;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
  transition: box-shadow 0.4s ease, transform 0.4s ease; /* smooth animation */
  
}

.scottgImage,
.scottHoverImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
  
}

.scottHoverImage {
  opacity: 0; /* hidden initially */
}

.ScottImageframe:hover {
  box-shadow: 0 0 25px 5px #45bc7a; /* green glow */
  transform: scale(1.02); /* optional: gentle zoom on hover */
}

.ScottImageframe:hover .scottHoverImage {
  opacity: 1; /* fade in secondary image */

}

.ScottImageframe:hover .scottgImage {
  opacity: 0; /* fade out primary image */
 
}

.FounderText {
  max-width: 600px; /* limits the width of the entire text block */
  text-align: justify;
  margin-left: 40px;
}

/* Hover text outside the image */
.scottTransitionText {
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: justify;
  text-justify: inter-word;
  max-width: 400px;
  line-height: 1.5;
  min-height: 100px;

}

.ScottImageframe:hover ~ .FounderText .scottTransitionText {
  opacity: 1; /* show text on hover of the image */
}

/* Optional responsive */
@media (max-width: 768px) {
  .FounderSection {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ScottImageframe {
    width: 200px;
  }

  .scottTransitionText {
    max-width: 90%;
    text-align: center;
  }
}

 /* Start of Amanda Section*/
.dirOfMarketingSection {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 10px 20px;
  margin-bottom: 80px;
}

.amandaImageframe {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid black;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
  transition: box-shadow 0.4s ease, transform 0.4s ease; /* smooth animation */
  
}

.amandaImage,
.amandaHoverImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
  
}

.amandaHoverImage {
  opacity: 0; /* hidden initially */
}

.amandaImageframe:hover {
  box-shadow: 0 0 25px 5px red; /* red glow */
  transform: scale(1.02); /* gentle zoom on hover */
}

.amandaImageframe:hover .amandaHoverImage {
  opacity: 1; /* fade in secondary image */

}

.amandaImageframe:hover .amandaImage {
  opacity: 0; /* fade out primary image */
 
}

.dirOfMarkText {
  max-width: 600px; /* limits the width of the entire text block */
  text-align: justify;
  margin-left: 40px;
}


/* Hover text outside the image */
.amandaTransitionText {
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: justify;
  text-justify: inter-word;
  max-width: 400px;
  line-height: 1.5;
  min-height: 100px;
}

.amandaImageframe:hover ~ .dirOfMarkText .amandaTransitionText {
  opacity: 1; /* show text on hover of the image */
}

/* Optional responsive */
@media (max-width: 768px) {
  .dirOfMarketingSection {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .amandaImageframe {
    width: 200px;
  }
}

 /* Start of Catherine Section*/
.dirOfAMESection {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 10px 20px;
  margin-bottom: 80px;
}

.catherineImageframe {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid black;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
  transition: box-shadow 0.4s ease, transform 0.4s ease; /* smooth animation */
  
}

.catherineImage,
.catherineHoverImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
  
}

.catherineHoverImage {
  opacity: 0; /* hidden initially */
}

.catherineImageframe:hover {
  box-shadow: 0 0 25px 5px #29abe2; /* blue glow */
  transform: scale(1.02); /* gentle zoom on hover */
}

.catherineImageframe:hover .catherineHoverImage {
  opacity: 1; /* fade in secondary image */

}

.catherineImageframe:hover .catherineImage {
  opacity: 0; /* fade out primary image */
 
}
.dirAMEText {
  max-width: 600px; /* limits the width of the entire text block */
  text-align: justify;
  margin-left: 40px;
}

/* Hover text outside the image */
.catherineTransitionText {
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: justify;
  text-justify: inter-word;
  max-width: 400px;
  line-height: 1.5;
  min-height: 100px;
}

.catherineImageframe:hover ~ .dirAMEText .catherineTransitionText {
  opacity: 1; /* show text on hover of the image */
}

/* Optional responsive */
@media (max-width: 768px) {
  .dirOfAMESection {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .catherineImageframe {
    width: 200px;
  }
}



/* Start of Footer*/

    .footer-container {
      width: 100%;
      top: auto;
      background-color: black;
      padding: 0.5rem 0 1rem 0;
      flex-shrink: 0;
      margin-top: auto;
 
    }

    .footer {
      width: 100%;
      background-color: black;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin: 0 auto;

    }

    .footer-title {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 30px;
      color: whitesmoke;
      margin-bottom: 1rem;
      
    }

    .footer-heading {
      display: flex;
      flex-direction: column;
      margin-right: 4rem;
      margin-bottom: 4rem;

    }

    .footer-heading p1 {
      margin-bottom: 2rem;
      padding-bottom: 2rem;
    }

    .footer-heading a {
      color: white;
      font-family: Arial, Helvetica, sans-serif;
      text-decoration: none;
      margin-bottom: 0.5rem;
      align-items: center;
      align-content: center;
    }

    .footer-heading a:hover {
      color: red;
      transition: 0.3s ease-out;

    }

    .footer-email-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 15px;
      padding: 40px;
     
    }

    .footer-email-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;

    }

    #footer-email{
      width: 250px;
      height: 50px;
      border-radius: 100px;
      outline: none;
      border: none;
      padding-left: 0.5rem;
      font-size: 0.6rem;
      font-family: Arial, Helvetica, sans-serif;
      text-align: center;

    }

    #footer-email::placeholder {
      color: red;
      font-family: Arial, Helvetica, sans-serif;
    }

    #footer-email-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: red;
      outline: none;
      border: none;
      color: whitesmoke;
      font-size: 0.6rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    #footer-email-btn:hover {
      cursor: pointer;
      background-color: #29abe2;
      transition: all 0.4s ease-out;
    }

    #footer-email-btn:active {
      transform:scale(-1.02);
      background-color: #45bc7a;
    }
