

/* ------------------ Global Styles ------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  background-color: #F7F2EE; /* Soft beige/cream */
  color: #333333; /* Dark gray text */
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  font-family: "Merriweather", serif;
  color: #2F3E46; /* Deep navy/dark color for headings */
  margin-bottom: 0.5em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

ul li {
  line-height: 1.4;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ------------------ Header & Navigation ------------------ */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2F3E46;
}

.nav ul {
  display: flex;
  gap: 1rem;
}

.nav a {
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.nav a:hover {
  background-color: #00A19D;
  color: #ffffff;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive Nav for smaller screens */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #ffffff;
    width: 105px;
    display: none;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  .nav ul {
    flex-direction: column;
  }
  .nav a {
    border-bottom: 1px solid #ccc;
  }
  .nav.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}

/* ------------------ Hero Section ------------------ */

.hero {
  position: relative;
  background: url("images\\Tuition_pic1.jpg") center/cover no-repeat; /* Default or inline override */
  height: 100vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 62, 70, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF; 
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

/* ------------------ Buttons ------------------ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  text-align: center;
}

.btn-primary {
  background-color: #00A19D;
  color: #fff;
}

.btn-primary:hover {
  background-color: #008B86;
}

.btn-secondary {
  background-color: #2F3E46;
  color: #fff;
  margin-top: 0.5rem;
}

.btn-secondary:hover {
  background-color: #243036;
}

/* ------------------ Intro Section ------------------ */

.intro {
  padding: 3rem 1rem;
  text-align: center;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.verses {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.verses blockquote {
  font-style: italic;
  background-color: #ffffff;
  padding: 1rem;
  border-left: 4px solid #00A19D;
  margin: 0 auto;
}

/* ------------------ Our Story Section ------------------ */

.our-story {
  padding: 3rem 1rem;
  background-color: #FFFFFF;
  text-align: center;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.story-point {
  background-color: #F7F2EE;
  padding: 1.5rem;
  border-radius: 5px;
  position: relative; 
}

/* Watermark Classes */
.point-a,
.point-b,
.point-c,
.point-d {
  background: url("images\\cross_watermark1.png") no-repeat 95% 50%;
  background-size: 1200px auto; 
}

.story-point h3 {
  margin-bottom: 0.5rem;
}

.vision-mission {
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

/* ------------------ Programs Section ------------------ */

.programs {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #EFEFEF;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.program-card {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 5px;
  transition: box-shadow 0.3s;
}

.program-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.program-card img {
  border-radius: 5px;
  margin-bottom: 1rem;
}

/* ------------------ Our Team Section ------------------ */

.our-team {
  padding: 3rem 1rem;
  background-color: #FFFFFF;
  text-align: center;
}

.team-intro {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.team-roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.team-role {
  flex: 1;
  min-width: 250px;
  background-color: #F7F2EE;
  padding: 3rem;
  border-radius: 5px;
}

.team-role ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
  text-align: center;
}

/* ------------------ Activities Section ------------------ */

.activities {
  padding: 3rem 1rem;
  background-color: #EFEFEF;
  text-align: center;
}

.activities h2 {
  margin-bottom: 2rem;
}

.activity-point {
  background-color: #FFFFFF;
  margin: 1rem auto;
  max-width: 800px;
  text-align: left;
  padding: 1.5rem;
  border-radius: 5px;
}

.activity-point h3 {
  margin-bottom: 0.5rem;
}

.activity-sub {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.activity-sub ul {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

/* ------------------ Newsletter Section (UPDATED) ------------------ */

.newsletter {
  /* Similar structure to .get-involved */
  padding: 3rem 1rem;
  text-align: center;
  background-color: #FFFFFF;
}

.newsletter h2 {
  margin-bottom: 2rem;
}

/* Container for newsletter "cards" */
.newsletter-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

/* Individual newsletter items styled like .involved-options div */
.newsletter-options .newsletter-item {
  background-color: #F0ECE6;
  padding: 2rem;
  border-radius: 5px;
  min-width: 250px;
  flex: 1;
  max-width: 400px;
  text-align: center;
}

/* ------------------ Get Involved Section ------------------ */

.get-involved {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #EFEFEF;
}

.involved-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.involved-options div {
  background-color: #F7F2EE;
  padding: 2rem;
  border-radius: 5px;
  min-width: 250px;
  flex: 1;
  max-width: 400px;
}

/* ------------------ Contact Section ------------------ */

.contact {
  padding: 3rem 1rem;
  background-color: #FFFFFF;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-disclaimer {
  font-style: italic;
  color: #444444;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}
.contact-disclaimer a {
  color: #1a73e8;
  text-decoration: underline;
}


/* ------------------ Footer ------------------ */

.footer {
  background-color: #2F3E46;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  display: block; 
  margin: 0 auto;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-nav a {
  margin: 0 0.5rem;
  color: #fff;
  font-weight: bold;
}

.footer-note {
  font-size: 0.9rem;
  margin-top: 1rem;
}


/* ------------------ Thank You Page Styles ------------------ */

.thank-you {
  text-align: center;
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  min-height: 80vh;
}

.thank-you h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.thank-you .btn-primary {
  background-color: #00A19D;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.thank-you .btn-primary:hover {
  background-color: #008B86;
}

/* ------------------ Responsive Adjustments ------------------ */

@media (max-width: 768px) {
  .story-grid,
  .program-cards {
    grid-template-columns: 1fr;
  }

  .team-roles {
    flex-direction: column;
    align-items: center;
  }

  .involved-options {
    flex-direction: column;
    align-items: center;
  }
}

