/***************************************************HEADER STYLING*****************************************************************/
header{
    background-image: url(LOGO.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 220px;
    width: 100%;
}

/********************************************NAVIGATION BAR **************************************************/

nav ul {
  list-style: none;
  padding: 0;
  margin:15px;
  display: flex;              /* Makes the list horizontal */
  justify-content: center;    /* Optional: centers the nav */
  gap: 24px;                  /* Optional: space between buttons */
}

nav ul li {
  display: inline;            /* Not needed if using flex, but fine to keep */
}

nav ul li a {
  text-decoration: none;
  color: black;                /* Adjust as needed */
  font-weight: bold;
  padding: 8px 16px;
  transition: background 0.2s;
}

nav ul li a:hover {
  background: #0bf5af;
  border-radius: 4px;
}

/*************************************FOOTER****************************************************************/
footer{
    padding: 20px;
    color: white;
    text-align: center;
    background-color: black;
    font-weight: 600;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}
/********************************************DONATION *******************************************************/

.payment-eft{
    text-align: center;
    padding: 30px;
    background-color: blanchedalmond;
}

/****************************************************CONTACT-PAGE*********************************************/

.contact-page{
    align-content: center;
    text-align: center;
    padding: 100px;
    background-color: blanchedalmond;
}

/*****************************************SOCIAL MEDIA ICONS***************************************************/

.social-icons,
.social-links{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    margin-bottom: -40px;
}

.social-icons a {
    color: #222;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #0bf5af;
}

/*************************************************NEWS********************************************/

.news-hero {
    text-align: center;
    padding: 32px 0 16px 0;
    background: linear-gradient(120deg, #e0f7fa 0%, #fff 100%);
}

.news-hero h2 {
    color: #0bf5af;
    font-size: 2rem;
    margin-bottom: 8px;
}

.news-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 16px;
}

.news-article {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
}

.news-article:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.news-card {
    padding: 18px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card h3 {
    color: #00796b;
    margin: 12px 0 8px 0;
    font-size: 1.2rem;
}

.news-date {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.news-card p {
    color: #333;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.read-more {
    color: #0bf5af;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    transition: color 0.2s;
}

.read-more:hover {
    color: #00796b;
    text-decoration: underline;
}


/*****************************************GALLERY PAGE**************************************************/

/* ======= GALLERY PAGE STYLES ======= */
/* Only applies to the gallery page */
.gallery-page {
    background: linear-gradient(120deg, #e0f7fa 0%, #fff 100%);
    margin: 0;
    padding: 0;
}

.gallery-page .image-content {
    text-align: center;
    margin: 40px 0 24px 0;
}

.gallery-page .image-content h2 {
    color: #0bf5af;
    font-size: 2rem;
    margin-bottom: 8px;
}

.gallery-page .intro-text,
.gallery-page .update-text {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.gallery-page .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.gallery-page .gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    background: #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-page .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.gallery-page .update-text {
    text-align: center;
    margin-bottom: 40px;
    color: #00796b;
    font-style: italic;
}

/**************************************************HOME-PAGE-TEAM MEMBERS ****************/
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px;
    max-width: 600px;
    margin: 40px auto;
}

.team-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%; /* Makes images round */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #f0f0f0;
}



/***********************************************ABOUT-CONTAINER-STYLING***************************/

.about-container {
    background: linear-gradient(135deg, #e0f7fa 0%, #fff 100%);
    padding: 48px 0 32px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.id-container {
    max-width: 700px;
    width: 90%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 32px 24px;
}

.about h2 {
    color: #0bf5af;
    font-size: 2.2rem;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 1px;
}

.about p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: center;
}

.about h3 {
    color: #222;
    margin-top: 24px;
    font-size: 1.2rem;
    text-align: center;
}

.about h4 {
    color: #00796b;
    font-style: italic;
    font-weight: 500;
    text-align: center;
    margin-top: 8px;
}

/*****************************************STORY-CONTAINER**********************************/

.story-container {
    background: linear-gradient(120deg, #f0f4c3 0%, #e0f7fa 100%);
    padding: 48px 0 32px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-story {
    max-width: 700px;
    width: 90%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 32px 24px;
}

.story-section h3 {
    color: #0bf5af;
    font-size: 2rem;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 1px;
}

.story-section p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: center;
}

/********************************************TEAM-SECTION***************************************/

.team-section {
    background: linear-gradient(120deg, #e0f7fa 0%, #fff 100%);
    padding: 48px 0 32px 0;
    text-align: center;
}

.team-section h2 {
    color: #0bf5af;
    font-size: 2.2rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.team-section p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for 3 members */
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 24px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 4px solid #e0f7fa;
}

.team-member h3 {
    margin: 0 0 8px 0;
    color: #00796b;
    font-size: 1.2rem;
}

.team-member p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}


/***************************************GRID-CONTAINER**************************************/

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 32px;
    max-width: 1100px;
    margin: 48px auto;
    padding: 32px 16px;
    background: linear-gradient(120deg, #e0f7fa 0%, #fff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.grid-container section {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.grid-container h2 {
    color: #0bf5af;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.grid-container p,
.grid-container ul {
    color: #333;
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.grid-container ul {
    padding-left: 18px;
}

.grid-container img {
    width: 100%;
    border-radius: 10px;
    margin: 12px 0;
}

/**************************************************GALLERY-HOME**********************************/

.gallery-home {
    background: linear-gradient(120deg, #fffde4 0%, #e0f7fa 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 700px;
    margin: 48px auto 32px auto;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.gallery-home h2 {
    color: #0bf5af;
    font-size: 2rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.gallery-home p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.gallery-home a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.gallery-home a:hover p {
    color: #00796b;
    text-decoration: underline;
}

/*************************************************NEWS-CONTAINER***************************/

.News-container {
    background: linear-gradient(120deg, #e0f7fa 0%, #fff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 700px;
    margin: 48px auto 32px auto;
    padding: 32px 24px;
    text-align: center;
}

.container-news {
    width: 100%;
}

.news h2 {
    color: #0bf5af;
    font-size: 2rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.news p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.news ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news ul li {
    margin-bottom: 14px;
}

.news ul li a {
    color: #00796b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.news ul li a:hover {
    color: #0bf5af;
    text-decoration: underline;
}

/**********************************************INVOLVE-CONTAINER***************************/

.involve-container {
    background: linear-gradient(120deg, #fffde4 0%, #e0f7fa 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 100%;
    margin: 48px auto 32px auto;
    padding: 32px 24px;
    text-align: center;
}

.involvement-container {
    width: 100%;
}

.involvement h2 {
    color: #0bf5af;
    font-size: 2rem;
    margin-bottom: 8px;
}

.involvement h3 {
    color: #00796b;
    margin-bottom: 18px;
}

.involvement ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.involvement ul li {
    margin-bottom: 12px;
    font-size: 1.08rem;
    color: #333;
}

.donate-btn {
    display: inline-block;
    background: #0bf5af;
    color: #fff;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, transform 0.2s;
    margin-top: 12px;
}

.donate-btn:hover {
    background: #00796b;
    transform: translateY(-2px) scale(1.04);
}

/* ======= DONATION PAGE STYLES ======= */
body.donation-page {
    background: linear-gradient(120deg, #e0f7fa 0%, #fff 100%);
    margin: 0;
    padding: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.payment-eft {
    background: #fff;
    max-width: 500px;
    margin: 48px auto 32px auto;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: center;
}

.payment-option h3 {
    color: #0bf5af;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.bank-details {
    background: #f0f4c3;
    border-radius: 10px;
    padding: 18px 12px;
    margin-bottom: 18px;
    text-align: left;
    font-size: 1.08rem;
}

.bank-details p {
    margin: 8px 0;
    color: #333;
}

.notification {
    background: #e0f7fa;
    color: #00796b;
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 18px;
    font-size: 1rem;
    display: inline-block;
}


.footer-content p {
    margin: 6px 0;
    font-size: 1rem;
}

/**************************************CONTACT-PAGE********************************************/

body.contact-page {
    background: linear-gradient(120deg, #e0f7fa 0%, #fff 100%);
    margin: 0;
    padding: 0;
}

.contact-page {
    max-width: 900px;
    margin: 48px auto 32px auto;
    padding: 32px 16px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: center;
}

.contact-info h2 {
    color: #0bf5af;
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-info p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.contact-card {
    background: #f0f4c3;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 20px 16px;
    margin: 18px auto;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card i {
    font-size: 2rem;
    color: #0bf5af;
    margin-bottom: 8px;
}

.contact-card h3 {
    margin: 0 0 8px 0;
    color: #00796b;
    font-size: 1.1rem;
}

.contact-card a, .contact-card address, .contact-card p {
    color: #333;
    font-size: 1rem;
    margin: 0;
    word-break: break-all;
}

.contact-card iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
}

.social-icons {
    margin: 32px 0 0 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-links a {
    color: #00796b;
    font-size: 2rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #0bf5af;
}


/* ===================== RESPONSIVE DESIGN ===================== */

/* ===================== RESPONSIVE DESIGN ===================== */

/* For tablets and below */
@media (max-width: 900px) {
  .news-articles,
  .team-grid,
  .gallery,
  .grid-container {
    grid-template-columns: 1fr !important;
    max-width: 98vw;
    gap: 20px;
  }
  .about-container,
  .story-container,
  .gallery-home,
  .News-container,
  .involve-container,
  .contact-page,
  .contact-container {
    padding: 18px 4vw;
    max-width: 100vw;
  }
  header {
    height: 140px;
  }
}

/* For mobile devices */
@media (max-width: 600px) {
  nav ul {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0;
    justify-content: center;
    padding: 0;
  }
  nav ul li {
    display: inline-block;
    margin: 0;
  }
  nav ul li a {
    font-size: 0.98rem;
    padding: 6px 10px;
  }

  .news-hero,
  .gallery-home,
  .News-container,
  .involve-container,
  .about-container,
  .story-container,
  .contact-page,
  .contact-container {
    padding: 10px 1vw;
    border-radius: 8px;
    box-shadow: none;
  }
  .news-card img,
  .gallery img,
  .team-member img {
    height: 90px !important;
    min-height: 60px;
    max-height: 120px;
  }
  .gallery {
    padding: 4px;
    gap: 8px;
  }
  .contact-card iframe {
    height: 90px;
  }
  header {
    height: 80px;
  }
  .footer-content {
    font-size: 0.93rem;
    padding: 8px 0;
  }
  h1, h2 {
    font-size: 1.3rem !important;
  }
  h3 {
    font-size: 1.1rem !important;
  }
  .donate-btn {
    width: 100%;
    font-size: 1rem;
    padding: 10px 0;
  }
}

/* Make forms and buttons fit small screens */
@media (max-width: 500px) {
  .contact-container,
  form,
  .contact-card {
    padding: 6px 1vw !important;
  }
  button,
  .donate-btn {
    width: 100%;
    font-size: 0.98rem;
    padding: 10px 0;
  }
  .news-card,
  .team-member,
  .container-story,
  .id-container {
    padding: 10px 4px !important;
  }
}






