
   
html {
    height: 100%;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
header {
  display: flex;
  justify-content: center;
  font-family: 'Merriweather', Georgia, serif;
  padding: 1rem;
  font-size: 40px;
  color: green;
  width: 100%;
  position: relative;
  z-index: 1001;
}

.main-header {
  color: rgb(13, 70, 28);
  padding: 1rem 2rem;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

  body {
    font-family: 'Open Sans', 'Lato', 'Roboto', Helvetica, sans-serif;
    color: #333;
    line-height: 1.5;
    padding-top: 15px; 
      
      }

    .get-involved {
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
        padding: 100px 20px;
        background: #004d40;
        color: white;
        text-align: center;
        box-sizing: border-box;
      }
      
    
        .get-involved h2 {
            font-size: 32px;
            font-family: 'Merriweather', Georgia, serif;
            margin-bottom: 10px;
            width: 100%;
        }

        .get-involved p {
            font-size: 22px;
            font-family: 'Merriweather', Georgia, serif;
            line-height: 1.6;
            text-align: center;
            width: 100%;
            margin: 0;
          }
      
       
        .involvement-container {
            display: flex;
            justify-content: center;
        }

        .involvement-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Two cards per row */
            gap: 20px;
            max-width: 1000px;
            width: 100%;
            padding: 20px;
        }

        .involvement-card {
            background: rgb(47, 194, 155);
            padding: 25px;
            font-size: 26px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: left; /* Align text to left */
            transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .involvement-card h3 {
            color: #0b2724;
            font-family: 'Merriweather', Georgia, serif;
            font-size: 26px;
            margin-bottom: 10px;
        }

        .involvement-card p {
            font-size: 18px;
            line-height: 1.5;
        }

  
        .involvement-card:hover {
            transform: scale(1.02);
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .involvement-options {
                grid-template-columns: 1fr;
            }
        }

        /* Footer */
footer {
  background-color: rgb(29, 27, 61);
  color: white;
  padding: 5px;
  text-align: center;
  position: relative;
  font-size: 20px;
  width: 100%;
}
/* Pre-Footer (Quick Links) Styling */
.pre-footer {
    background-color: #646060; 
    padding: 20px 0;
    border-top: 2px;
  }
  .quick-links h4 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 30px; 
    font-weight: bold; 
    text-align: center; 
    margin-bottom: 20px; 
    color:white
}

  .quick-links {
    text-align: center;
    font-family: 'Merriweather', Georgia, serif;
    width: 50%;
    margin: 20px auto;
    font-size: 25px;
  }
  
  .quick-links ul {
    display: flex;
    justify-content: center;
    font-family: 'Merriweather', Georgia, serif;
    gap: 15px;
    padding: 0;
    list-style: none;
  }
  
  .quick-link-box {
    background: rgb(213, 159, 60);
    border: 1px solid;
    padding: 10px 20px;
    margin: 5px;
    text-align: center;
    flex: 1;
    max-width: 400px;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
    cursor: pointer;
  }
  
  .quick-link-box:hover {
    background:	#a0522d;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .quick-link-box:hover a {
    color: rgb(6, 26, 157);
}

  .quick-link-box a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block;
    
  }
/* Social Media Section */
.social-media-container {
    margin-bottom: 15px;
    margin-top: 40px;
}

.social-media-container h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px; 
}

/* Social Icon Link Styles */
.social-icon a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease-in-out;
}
/* Hover Effects for Social Icon Links */
.social-icon a:hover {
    transform: scale(1.1);
    color: #007bff;
}

/* Specific Platform Colors */
#email {
    background-color: rgb(243, 162, 118);
}

#whatsApp {
    background-color: #25D366; /* WhatsApp green */
}

#facebook {
    background-color: #1877F2; /* Facebook blue */
}

#twitter {
    background-color: #1DA1F2; /* Twitter blue */
}

.contact-info {
    text-align: justify; 
}
/* Copyright Section */
.copyright-container {
    margin-top: 10px;
    font-size: 18px;
    color: #1e1d1d;
    text-align: left;
}
/* Designer Credit Section */
.designer-container {
    margin-top: 8px;
    font-size: 18px;
    color: #5c5c5c;
    justify-items: end;
    text-align: right;
    }
    
    .designer-container a {
    color: #5c5c5c;
    text-decoration: none;
    }
    
    .designer-container a:hover {
    text-decoration: underline;
    color:rgb(230, 4, 26);
    }


@media (max-width: 768px) {
    .nav-links {
        flex-direction: column ; 
        align-items: center;
    }
}

.map-link {
    display: inline-block;
    background-color: #007fab;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    }
    .map-link:hover {
    background-color: #005f7c;
    }
    

    .media-card {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap; 
        margin-bottom: 40px;
      }

      .media-wrapper,
      .media-text {
        flex: 1;
        min-width: 300px;
        max-width: 50%;
      }
      
      .media-content {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        flex-wrap: wrap; /* Responsive fallback */
      }
      
      .media-wrapper video,
      .media-wrapper img {
        width: 100%;
        height: auto;
      }

      .media-wrapper,
      .media-text {
        flex: 1;
        min-width: 600px;
        max-width: 50%;
      }
      
      .media-text {
        padding: 5px;
        font-size: 18px;
        text-align: justify;
        color: #222;
        min-width: 300px;
        max-width: 600px;
      }
      
      .media-text h2 {
        font-family: 'Merriweather', Georgia, serif;
        font-size: 24px;
        margin-bottom: 10px;
        color: #005577;
      }
      
      .media-text p {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
      }
      
      .impact-title {
        text-align: center;
        font-family: 'Merriweather', Georgia, serif;
        padding: 30px 20px 10px;
        background-color: #f4f4f4;
        border-radius: 10px;
        margin: 20px auto;
        width: 100%;
        font-size: 30px;
      }
      
      .impact-title h2 {
        font-size: 2.2rem;
        font-family: 'Merriweather', Georgia, serif;
        color: #004d4d;
        margin-bottom: 10px;
      }
      
      .impact-title p {
        font-size: 1.2rem;
        font-family: 'Merriweather', Georgia, serif;
        color: #555;
      }
      
      .media-insert {
        text-align: center;
        padding: 20px;
        font-size: 18px;
        font-style: italic;
        color: #333;
      }

      .quote-text {
        max-width: 600px;
        margin: 0 auto;
        font-weight: 500;
      }
      
      .impact-text {
        font-weight: bold;
        color: #2a2a2a;
      }
      
      .join-button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #007fab;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: background-color 0.3s ease;
      }
      
      .join-button:hover {
        background-color: #005c78;
      }
      
      .impact-stories-header {
        background-color: #f2f8f7;
        padding: 40px 20px;
        text-align: center;
        border-radius: 12px;
        margin: 40px auto;
        max-width: 900px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      }
      
      .impact-stories-header h2 {
        font-size: 36px;
        
        color: #007b7f;
        margin-bottom: 15px;
        font-weight: bold;
      }
      
      .impact-lead {
        font-size: 20px;
        color: #222;
        font-weight: 500;
        margin-bottom: 15px;
      }
      
      .impact-subtext {
        font-size: 18px;
        color: #555;
        max-width: 700px;
        margin: 0 auto;
      }
      
      .media-card.horizontal-layout {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
        margin: 40px auto;
        padding: 20px;
        max-width: 1200px;
      }
      
      .media-wrapper {
        flex: 1;
        max-width: 50%;
      }
      
      .media-video {
        width: 100%;
        height: auto;
        border-radius: 12px;
      }
      
      .media-text {
        flex: 1;
        text-align: justify;
        padding: 5px;
        font-size: 18px;
        color: #222;
        padding: 0;
        margin: 0;
        min-width: 500px;
        max-width: 600px;
      }
      
      .media-text h2 {
        font-size: 26px;
        font-family: 'Merriweather', Georgia, serif;
        margin-bottom: 15px;
        color: #004d40;
      }
      
      .media-wrapper,
      .media-text {
        flex: 1;
        min-width: 300px;
        max-width: 50%;
      }
      
      .media-card.horizontal-layout {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        align-items: flex-start;
        margin: 40px auto;
        max-width: 1200px;
      }
      
      .media-wrapper img {
        width: 100%;
        max-width: 500px;
        border-radius: 10px;
      }
  
    .volunteer-layout {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
      margin: 40px 0; 
      padding: 20px;
      width: 100%;
    }
    
    .volunteer-layout .media-wrapper {
      flex: 1;
      max-width: 30%;
    }
  
    .volunteer-layout .media-wrapper img {
      width: 100%;
      max-width: 1000px; 
      height: 600px;     
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }
    
    .volunteer-layout .media-text {
      flex: 1;
      max-width: 35%;
      text-align: justify;
    }
    
    .volunteer-layout .media-text h2 {
      font-size: 28px;
      font-family: 'Merriweather', Georgia, serif;
      margin-bottom: 10px;
      color: #004d40;
    }
    
    .volunteer-layout .media-text p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 15px;
    }
    
    .volunteer-layout .join-button {
      display: inline-block;
      background-color: #007fab;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }
    
    .volunteer-layout .join-button:hover {
      background-color: #005c78;
    }
    
nav ul {
  list-style-type: none;
  display: flex;
  font-family: 'Merriweather', Georgia, serif;
  gap: 1.5rem;
  margin: 0;
  padding: 2rem;
  align-items: center;
  width: 100%;
}

nav li {
  display: flex;
}

nav a {
  color: #333;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: 'Merriweather', Georgia, serif;
}

nav a:hover {
  color: #007fab;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.push-right {
  margin-left: auto;
}

.nav-links li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 1.5rem 1rem;
  display: inline-block;
  font-size: 1.5rem;
  position: relative;
  background: transparent;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  color: #00bcd4;
  font-weight: 800;
  background: linear-gradient(90deg, #00bcd4, #007fab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: 'Merriweather', Georgia, serif;
  margin-right: auto;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.4));
}

nav.horizontal-nav {
  background-color: rgb(57, 56, 56);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li:not(:last-child) a::after {
  content: " |";
  color: #aaa;
  margin-left: 1rem;
}

.nav-links li a:hover {
  color: #007fab;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: wheat;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block !important;
    background: none;
    border: none;
    font-size: 30px;
    font-family: 'Merriweather', Georgia, serif;
    color: wheat;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: black;
    text-align: center;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links li {
    padding: 20px 0;
  }

  .nav-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }

  .nav-logo {
    height: 35px;
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 440px) {
  .nav-logo {
    height: 30px;
  }

  .nav-brand span {
    font-size: 1.25rem;
    text-align: center;
  }

  .nav-links li a {
    font-size: 1.25rem;
    padding: 1rem;
  }
}

    
    