
section {
  padding: 10px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100vw;
}


.btn {
  display: inline-block;
  padding: 13px 40px;
  background: var(--primary-bg);
  color: var(--text-color);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateX(10px);
  border: 2px solid var(--text-color);
  background: transparent;
  color: var(--text-color);
}

.donate-btn:hover {
  transform: translateX(10px);
  border: 2px solid var(--bg-color);
  background: transparent;
  color: var(--header-text-color);
}




#hero-section {
  background-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.769),
      rgba(0, 0, 0, 0.61)
    ),
    url("../img/gallery/IMG_6749.png");
}

.recent-activities {
  display: flex;
  flex-direction: column;
    position: relative;
    width: 100%;
    padding: 45px 10% 15px;
    /* background-color: var(--bg-color-faint); */
  }

  #activities-container {
    display: flex;
    flex-direction: column;
  }
  
  .recent-activities .activities-content {
    margin: 0 auto;
    text-align: center;
    gap: 7rem;
    margin-bottom: 30px;
    justify-content: space-around;
  }
  
  .recent-activities .section-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
  }
  
  .recent-activities .section-header h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
  }
  
  .recent-activities .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }
  
  .recent-activities .activity-item {
    position: relative;
    flex: 0 1 calc(30.333% - 10px);
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
  }
  
  .recent-activities .activity-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .recent-activities .activity-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .recent-activities .activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  
  }
  
  .recent-activities .activity-text {
    text-align: center;
  }
  
  .recent-activities .activity-text h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
  }
  
  .recent-activities .activity-text p {
    margin: 0;
    font-size: var(--p-font);
    color: #666;
    line-height: 1.6;
  }
  


  
/* Media Queries */


@media (min-width: 1024px) {

  #activities-container {
    display: flex;
    flex-direction: row;
  }

  
}

@media (min-width: 768px) {


}


/* @media (max-width: 1700px) {
    header {
      padding: 14px 5%;
    }
   
    section {
      padding: 70px 10% 60px;
    }
  } */
  
  /* @media (max-width: 1024px) {
    :root {
      --text-color: #000;
      --header-text-color: #fff;
      --bg-color: #fff;
      --bg-color-faint: #f4f4f4;
      --main-color: #E5B80B;
  
      --h1-font: 4.6rem;
      --h2-font: 2.8rem;
      --p-font: 14px;
    }
  
  
  
    section {
      padding: 45px 5% 35px;
    }

  
    .intro {
      gap: 6rem;
    }
  
    .intro-text h2 {
      font-size: 2.5rem;
    }
  } */
  
  /* @media (max-width: 1050px) {
      #menu-icon {
          display: block;
      }
  
      .navbar {
          position: absolute;
          width: 100%;
          height: 100vh;
          padding: 40px 60px;
          top: 0;
          bottom: 0;
          left: 0;
          bottom: 0;
          left: 0;
          right: 0;
          display: flex;
          flex-direction: column;
          background: var(--bg-color);
          transition: all .50s ease;
      }
  
      .navbar a {
          display: block;
          color: #979797;
          padding: 0;
          margin: 0px 0px 40px 0px;
          font-weight: 2.2rem;
          font-weight: 400;
      }   
  
      .navbar.open {
          left: 0;
      }
  
  } */
  
  /* @media (max-width: 768px) {
    header {
      padding: 15px 8%;
    }
  
    #menu-icon {
      display: block;
    }
  
    .navbar {
      display: none;
    }
  
    .navbar.active {
      display: flex;
      position: absolute;
      top: 100%;
      right: 0;
      background: rgba(0, 0, 0, 0.8);
      flex-direction: column;
      width: 100%;
      padding: 20px 0;
    }
  
    .navbar a {
      margin: 10px 0;
    }
  
    .intro {
      grid-template-columns: 1fr;
      gap: 4rem;
    }
  
    .story-body {
      flex-direction: column;
      gap: 4rem;
    }
  

  
    .footer-col {
      width: 100%;
    }
  
    .service-item {
      width: calc(50% - 20px);
    }
  
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
      margin: 5px 0;
      padding: 8px;
      text-align: center;
      gap: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    :root {
      --h1-font: 4rem;
      --h2-font: 1.2rem;
    }
  
    header {
      padding: 10px 5%;
    }

    .intro-text h2 {
      font-size: 2rem;
    }
  
    .recent-activities {
      position: relative;
      width: 100%;
      padding: 45px 5% 15px;
      background-color: var(--bg-color-faint);
    }
  
    .recent-activities .activity-item {
      flex: 0 1 calc(100% - 10px);
    }
  
    .service-item {
      width: 100%;
      margin-bottom: 30px;
    }
  } */
  