*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family:'Kumbh Sans', sans-serif;
}
    body {
  background-color:#efefef; /* or your main dark color */
  margin: 0;
  overflow-x: hidden;
}
   


.navbar{
    background: #efeae5;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items:center;
    font-size:1.2rem;
    position: sticky;
    top:0;
    z-index:999;
    border-bottom: 1px solid white;
}
.navbar__container{
    display:flex;
    height: 80px;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

#navbar__logo{
    background-color: black;
    background-image: linear-gradient(to top, rgb(239, 43, 43) 0%, rgb(147, 20, 20));
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display:flex;
    align-items: center;
    cursor:pointer;
    text-decoration: none;
    font-size:2rem;
    white-space: nowrap;
    font-family: "Impact", system-ui;
}


.fa-gem{
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items:center;
    list-style: none;
    text-align: center;
}

.navbar__item{
    height:80px;
}

.navbar__links{
    color: #d68383;
    display:flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    height:100%;
    text-decoration: none;

}
/* .navbar__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none ;
    padding: 10px 20px;
    width: 100%;
}
.button{
    border: none;
    outline: none;
    border-radius: 3px;
    height: 100%;
    width:100%;
    background: lightblue;
    color:black;
}

.button:hover{
    background: rgb(36, 134, 135);
    transition: all 0.2s ease;
}
*/

.navbar__links:hover{
    color: #B1B3B3FF;
    transition: all 0.2s ease;
}

@media screen and (max-width:960px){
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding:0%;
        

    }
    .navbar__menu{
        display:grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity:0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
    }

.navbar__menu.active {
    background:#efeae5;
    top: 100%;
    opacity: 1;
    transition: all 0.4s ease;
    z-index: 99;

    height: calc(100vh - 80px); /* full screen minus navbar */
    overflow-y: auto;          /* ALLOWS SCROLL */
    font-size: 1.4rem;
}

    #navbar__logo{
        padding-left: 25px;
    }

    .navbar__toggle .bar{
        width: 30px;
        height: 2px;
        margin: 7px auto;
        transition: all 0.3s ease-in-out;
        background: rgba(193, 61, 61, 0.66);
    }
    .navbar__item{
        width:100%
    }
    .navbar__links {
    text-align: center;
    padding: 1.5rem;
    width:100%;
    display: table;

    }

    #mobile-menu{
        position: absolute;
        top: 5%;
        right: 5%;
        transform: translate(5%, 20%);
    }
    .navbar_btn{
        padding-bottom: 2rem;

    }
    .button{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity:0;

    }
    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);

    }
    @media screen and (max-width:960px){
    .navbar__logo-img {
        height: 45px;
    }
}
}

 .navbar__logo-img {
    height: 42px;   /* controlled size */
    width: auto;
    flex-shrink: 0; 
}



/* ---------- GENERAL LAYOUT ---------- */
:root {
  --bg-main: #fafafa;
  --bg-alt: #f4f4f1;
  --text-main: #1f1f1f;
  --text-muted: #444;
  --accent: #b30000;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
}

.home {
  line-height: 1.7;
}

/* ---------- SECTIONS ---------- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}
.section h2 {
  margin-bottom: 12px;
}

.section--light {
  background: var(--bg-alt);
}


/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  background: url("cntower2.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #efeae5;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero__tagline {
  font-size: 1.2rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero__btn {
  display: inline-block;
  padding: 14px 32px;
  background: #b30000;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.hero__btn:hover {
  background: #8f0000;
}

@media (max-width: 768px) {
  .hero {
    background-position: left center; /* or center 30% */
    height: 80vh; /* optional: slightly shorter */
  }
}
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero__tagline {
    font-size: 1rem;
  }
}


/* ---------- HEADINGS ---------- */
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--accent);
}

/* ---------- SERVICES LIST ---------- */
.services {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.services li {
  padding: 12px 0 12px 28px;
  font-size: 1.05rem;
  position: relative;
  color: var(--text-main);
}

.services li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ---------- BUTTONS ---------- */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* Primary CTA */
.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Secondary CTA */
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #ffffff;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--bg-alt);
  text-align: center;
  padding: 90px 24px;
}

.cta h2 {
  color: var(--accent);
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}


/* about us */ 
.about {
  background: #f7f9fb;
  padding: 80px 20px;
   min-height: 100vh;   /* 👈 makes it full screen height */
  display: flex;
  align-items: center;
}

.about__container {
  max-width: 1000px;
  margin: 0 auto;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #111;
}

.about__block {
  margin-bottom: 40px;
}

.about__block h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #b30000; /* CCJ red */
}

.about__block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}


 /* VISION */

.vision {
  background: #ffffff;
  padding: 90px 20px;
}

.vision__container {
  max-width: 1100px;
  margin: 0 auto;
}

.vision__statement {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #222;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

/* Values grid */
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 70px;
}

.value__card {
  background: #f7f7f7;
  padding: 25px;
  text-align: center;
  font-weight: 600;
  border-radius: 8px;
  color: #b30000;
}

/* Core values */
.core__values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.core__item h4 {
  color: #111;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.core__item p {
  color: #444;
  line-height: 1.7;
}

/* Footer note */
.vision__note {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
}

/* services and program */ 

.services {
  background: #f9f9f9;
  padding: 90px 20px;
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services__disclaimer {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Services grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-bottom: 80px;
}

.service__card {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.service__card h3 {
  color: #b30000;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service__card ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.service__card ul li {
  margin-bottom: 8px;
  color: #333;
}

.service__card p {
  color: #444;
  line-height: 1.6;
}

/* Programs */
.programs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.program__item {
  background: #ffffff;
  padding: 20px;
  border-left: 5px solid #b30000;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* Bottom note */
.services__note {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}




.contact, .intake {
  padding: 90px 20px;
  background: #ffffff;
}

.contact__container,
.intake__container {
  max-width: 900px;
  margin: 0 auto;
}

.contact__notice {
  background: #fff3f3;
  padding: 20px;
  border-left: 5px solid #b30000;
  margin: 30px 0;
}

.contact__section {
  margin: 40px 0;
}

.contact__list li {
  margin-bottom: 10px;
}

.contact__cta {
  text-align: center;
  margin: 40px 0;
}

.cta__button {
  background: #b30000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.intake__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.intake__form input,
.intake__form textarea,
.intake__form select {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.checkbox {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
}


/* FORM STYLING */
.intake {
  padding: 100px 20px;
  background: #f9f9f9;
}

.intake__container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.intake__intro {
  margin-bottom: 40px;
  color: #444;
}

.intake__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: #b30000;
}

.form__checkbox {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  align-items: flex-start;
}

.cta__button {
  margin-top: 30px;
  background: #b30000;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

.cta__button:hover {
  background: #8f0000;
}



/* TEAM STYLING */
/* Join Team Section */

.team {
  padding: 100px 20px;
  background: #f9f9f9;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.team__container{
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.team__text{
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.team__cta{
  margin-top: 40px;
  text-align: center;
}

/* Reuse the same button style */
.team__cta .cta__button{
  display: inline-block;
}

.join-form{
  padding: 80px 20px;
  background:#f7f7f7;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}

.form-container{
  max-width:600px;
  width:100%;
  background:white;
  padding:40px;
  border-radius:8px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.form-container h2{
  margin-bottom:10px;
}

.form-container p{
  margin-bottom:25px;
  color:#555;
}

form label{
  display:block;
  margin-top:15px;
  font-weight:600;
}

form input,
form select,
form textarea{
  width:100%;
  padding:12px;
  margin-top:6px;
  border:1px solid #ccc;
  border-radius:4px;
}

form button{
  margin-top:25px;
  padding:14px;
  width:100%;
  background:#b30000;
  color:white;
  border:none;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
}

form button:hover{
  background:#f1bcb5;
}

@media screen and (max-width: 768px){

  .team{
    padding: 60px 20px;
    text-align: center;
  }

  .team__button{
    width: 80%;
    max-width: 280px;
    text-align: center;
  }

}





.section__container {
  max-width: 900px;
  margin: 0 auto;
}

.section__title {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.section__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* Events & Community */
.events {
  padding: 90px 20px;
  background: #f3f3f3;
   min-height: 100vh;   /* 👈 makes it full screen height */
  display: flex;
  align-items: center;
}

.community {
  padding: 90px 20px;
  background: #ffffff;
   min-height: 100vh;   /* 👈 makes it full screen height */
  display: flex;
  align-items: center;
}

/* Donation form */ 
.donate,
.donation {
  padding: 100px 20px;
  background: #f9f9f9;
   min-height: 100vh;   /* 👈 makes it full screen height */
  display: flex;
  align-items: center;
}

.donate__container,
.donation__container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.donate__text,
.donation__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.donate__notice {
  background: #fff3f3;
  padding: 15px;
  border-left: 4px solid #b30000;
  margin-bottom: 30px;
}

.donation__methods {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 6px;
  margin: 30px 0;
}

.donor__privacy {
  margin-top: 40px;
  font-size: 0.95rem;
  color: #555;
}
.donate__cta {
  margin-top: 40px;
  text-align: center;
}

.donate__cta .cta__button {
  display: inline-block;
}

.donation__form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.form__group input,
.form__group select,
.form__group textarea {
  padding: 10px;
  font-size: 0.95rem;

}

.membership-box{
background:#f4f7fb;
border-left:4px solid #0a4a8a;
padding:15px;
border-radius:6px;
font-size:15px;
}
.payment-email{
margin-top:10px;
}

.copy-large{
margin-top:8px;
padding:10px 16px;
border:none;
background:#0a4a8a;
color:white;
border-radius:6px;
cursor:pointer;
font-size:14px;
}

.copy-large:hover{
background:#08396a;
}

   /* footer */


.footer__container {
  background:#efeae5;
  min-height: 100px;
  display: flex;
  flex-direction: row;       /* horizontal layout */
  justify-content: space-between; /* left and right sides */
  align-items: center;
  font-size: 1rem;
  position: relative;
  z-index: 10;
  border-top: 1px solid white;
  padding: 15px 30px; /* added horizontal padding */
  width: 100%;
  flex-wrap: wrap; /* keeps it responsive on smaller screens */
}


.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-link {
  color: #545353;
  text-decoration: none;
  font-weight: bold;
}
.aboutus-link {
  color: #545353;
  text-decoration: none;
  font-weight: bold;
}
.resource-link {
  color: #545353;
  text-decoration: none;
  font-weight: bold;
}
.aboutus-link:hover {
  text-decoration: underline;
}
.resource-link:hover {
  text-decoration: underline;
}

.contact-link:hover {
  text-decoration: underline;
}


.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap; /* keeps icons centered on phones */
  gap: 15px;
  margin-bottom: 8px;
}

.footer-right a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: transparent;
  border: 0.15rem solid rgba(44, 42, 42, 0.1);
  border-radius: 50%;
  margin: 0.6rem;
  transition: 0.3s ease;
  color: rgb(77, 77, 77);
}

.footer-right a:hover {
  color: black;
  background-color: rgb(237, 236, 239);
  transform: scale(1.2) translateY(-4px);
  box-shadow: 0 0 20px rgba(117, 116, 116, 0.1);
}

.footer-text {
  font-size: 0.8rem;
  opacity: 0.8;
  color: #b30000;
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .footer__container {
    padding: 20px 0;
    z-index:1;
    position: relative;
  }

  .footer-right {
    gap: 12px;
  }

  .footer-right a {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .footer-text {
    font-size: 0.75rem;
  }

}