.goal-description {
    margin: 60px auto;
}
.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax();
    gap: 40px;
    margin: 30px auto 60px;
    align-items: start;
}

.highlight {
    background-color: #dc4543;
}

.section-container img {
    max-height: 400px;
}

.first-p {
    font-family: var(--text-font);
    font-size: var(--font-size-t1);
    color: var(--light-color);
    line-height: 1.5;
    text-align: justify;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    margin: 0 20px;
}

.section-text{
    font-family: var(--text-font);
    font-size: var(--font-size-t2);
    color: var(--light-color);
    line-height: 1.5;
    text-align: justify;
    margin: 0 20px;
}

.second-p {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.third-p {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.goal-image {
    grid-column: span 2;
    grid-row: 3 / 4;
    justify-self: center;
}

.fourth-p {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
}

.fifth-p {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
}


 @media screen and (max-width:700px) {
.section-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    align-items: center;
}

.first-p {
    text-align: left;
}

.section-container img {
    display: none;
}

.section-text{
    grid-column: 1 / 2;
    text-align: left;
}

.second-p {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.third-p {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}
 }
.title-board {
        margin: 40px auto;
    }

    .board-members {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 1fr 1fr;
        gap: 30px;
        margin-bottom: 80px;
    }
    .board-member-card-container {
        display: flex;
        justify-content: center;
    }

    .board-member-card {
        width: 300px;
        height: 100px;
        background-color: var(--light-color);
        border-radius: 8px;
        display: grid;
        grid-template-columns: 1fr 5fr;
        grid-template-rows: min-content;
        padding: 10px;
        gap: 2px;
        margin-bottom: 10px;
    }

    .board-member-photo {
        width: 70px;
        height: 70px;
        background-color: lightgrey;
        border-radius: 50%;
        grid-row: span 2;
    }

    .board-member-photo img {
        width: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .board-member-name {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 800;
        color: var(--dark-color);
        font-size: var(--font-size-sm);
        line-height: 1.2;
        align-self: self-end;
        margin-left: 10px;
    }

    .board-member-title {
        font-family: var(--text-font);
        font-size: var(--font-size-t2);
        color: var(--dark-color);
        line-height: 1.5;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        margin-left: 10px;
    }

    .board-member-email {
        font-family: var(--text-font);
        font-size: var(--font-size-t2);
        color: var(--dark-color);
        text-decoration: none;
        grid-column: 2 / 3;
        margin-left: 10px;
        transition: 0.5s;
    }

    .board-member-email:hover {
        color: var(--red-accent);
    }

    .socials-link {
        background-color: lightgrey;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        justify-self: center;
        margin-top: 10px;
        transition: 0.5s;
    }

    .socials-link a svg {
        margin-top: 2px;
        transition: 0.5s;
    }

    .socials-link:hover {
        background-color: var(--red-accent);
    }

    .socials-link:hover a svg {
        fill: var(--light-color);
    }

    @media screen and (max-width:700px) {
    .board-members {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
        gap: 30px;
    }
     }

    @media screen and (max-width:500px) {
        .board-member-card {
            width: 245px;
            height: 75px;
        }

        .socials-link {
            margin-top: 0px;
        }

        .board-member-photo {
            width: 55px;
            height: 55px;
        }

        .board-member-name {
            margin-left: 10px;
        }
    }
.title-documents {
        margin: 40px auto;
    }

    .documents-container {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin-bottom: 80px;
    }

    .document-box {
        width: 260px;
        height: 120px;
        background-color: var(--light-color);
        border-radius: 8px;
        padding: 10px;
        gap: 2px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .financial-plans {
        height: 210px;
    }

    .document-name {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 600;
        color: var(--dark-color);
        font-size: var(--font-size-sm);
        line-height: 1.2;
        text-align: center;
    }

    .download-button {
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .download-button:hover {
        transform: scale(1.05);
    }

    @media screen and (max-width:900px) {
        .documents-container {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
    }
/* Hero styles */
  .image-banner img {
    width: 100%;
    height: 562px;
    padding: 0%;
    margin: 0 auto;
    opacity: 0.6;
  }

  .slogan-text {
    font-family: var(--title-font);
    font-size: var(--font-size-xl);
    line-height: 1.2;
    position: absolute;
    z-index: 1;
    color: var(--light-color);
    width: 100%;
    top: 45%;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    text-transform: uppercase;
  }

  .image-banner {
    position: relative;
  }

  .image-banner img {
    z-index: 0;
    position: relative;
    object-fit: cover;
  }

  @media screen and (max-width: 650px) {
    .image-banner {
      aspect-ratio: 4/3;
      overflow: hidden;
    }

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

    .slogan-text {
      top: 35%;
    }
  }
.main-header {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(20, 14, 12);
  box-shadow: 0px 15px 10px -15px #111;
  z-index: 12;
}

.logo-top {
  max-width: 150px;
  padding: 10px 5px 10px 20px;
  z-index: 12;
}

.nav-desktop {
  font-family: var(--text-font);
  font-size: var(--font-size-t2);
  line-height: 150%;
  text-align: center;
  padding: 10px 20px 10px 5px;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  z-index: 12;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--light-color);
  transition: color 0.5s;
}

.nav-desktop a:hover {
  color: var(--red-accent);
}

#donate-button {
  padding: 10px 15px;
  transition: 0.5s;
}

#donate-button:hover {
  transform: scale(1.1);
  color: var(--light-color);
}

/* mobile  */
.nav-mobile {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background-color: rgba(20, 14, 12, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding-top: 100px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 11;
}

.nav-mobile a {
  font-family: var(--text-font);
  font-size: var(--font-size-t2);
  color: var(--light-color);
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.burger-icon {
  display: none;
}

.bar1, .bar2, .bar3 {
  transition: ease-in-out 0.4s;
}

.open .bar1 {
  transform: rotate(45deg) translate(6px, -7px);
}

.open .bar2 {
  opacity: 0;   
}

.open .bar3 {
  transform: rotate(-45deg) translate(-12px, 1px);
}

@media screen and (max-width:900px){
  .hide-on-mobile{
    display: none;
  }

  .burger-icon {
    display: block;
  }

  .nav-mobile {
    display: none;
  }

  .nav-mobile.open {
    display: flex;
        height: 100vh;
    width: 200px;
    padding-left: 40px;
  }

  .nav-mobile a {
    text-align: left;
    display: none;
  }

  .nav-mobile.open a {
    display: block;
  }
}


@media screen and (max-width:500px){
  .logo-top{
    max-width: 115px;
  }

  .nav-desktop{
    gap: 15px;
  }
  
  .nav-mobile {
    display: none;
  }

  .nav-mobile.open {
    display: flex;
    height: 100vh;
    width: 100%;
  }

  .nav-mobile a {
    display: none;
    opacity: 0;
    text-align: center;
    padding: 0%;
  }

  .nav-mobile.open a {
    display: block;
    opacity: 1;
  }

  #donate-button {
    padding: 5px 10px;
  }
}
footer {
        max-width: 1200px;
        margin: 30px 20px 10px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 3fr 1fr;
        gap: 30px;
        }

        .logo-bottom {
          max-width: 200px;
          justify-self: center;
        }
        .footer-section-1,
        .footer-section-2,
        .footer-section-3,
        .footer-section-4 {
          max-width: 250px;
          display: flex;
          flex-direction: column;
          gap: 20px;
        }

        .footer-section-2 a {
          text-decoration: none;
          color: var(--light-color);
          font-weight: 600;
          transition: 0.5s;
        }

        .footer-section-2 a:hover {
          color: var(--red-accent);
        }

        .social-media-icons {
          display: flex;
          align-items: center;
          gap: 10px;
        }

        .social-media-icons a svg{
          transition: 0.5s;
        }

        .social-media-icons a:hover svg{
          fill: var(--red-accent);
        }

        #rights,  #author {
          grid-column: span 2;
          justify-self: center;
          align-self: flex-end;
        }

      @media screen and (max-width:800px){
        footer {
          grid-template-columns: repeat(2, 1fr);
          grid-template-rows: 2fr 2fr 2fr 20px 20px;
        }

        .footer-section-1 {
          grid-column: 1;
        }

        .footer-section-2,
        .footer-section-3,
        .footer-section-4 {
          grid-column: 2;
        }
      }

       @media screen and (max-width:500px){
        .logo-bottom {
          max-width: 115px;
        }
      }

        @media screen and (max-width:380px){
        footer {
          grid-template-columns: 1fr;
          grid-template-rows: 0.5fr 2fr 2fr 1fr 20px 20px;
          margin-left: 40px;
        }

        .footer-section-1,
        .footer-section-2,
        .footer-section-3,
        .footer-section-4 {
          grid-column: 1;
        }
       }