*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f8f8f8;
    color:#333;
    line-height:1.7;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: white;
  
  
  left: 0;
  right: 0;
  
  padding: 15px 6%;

}



/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: blackb;
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.nav-links a{
    color:black;
    text-decoration:none;
    margin-left:25px;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:rgb(80, 80, 191);
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: black;
}
/*donatebtn*/

 .donateBtn {
  background: var(rgb(20, 18, 18)
  );
  color: var(--black);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  margin-left: 10px;
  box-shadow: 0 4px 12px rgba(31, 30, 32, 0.25);
}
/* HERO */

.hero {
  height: 85vh;
  background: linear-gradient(
      rgba(58,38,12,0.65),
      rgba(212,175,55,0.35)
    ),
    url("../images/standingphoto.jpg")
    center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content{
    max-width:800px;
    color:white;
}

.hero-content h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
}

/* GENERAL */

section{
    padding:80px 10%;
}

.section-title{
    color:#5b2c83;
    font-size:38px;
    margin-bottom:20px;
    text-align:center;
}

.section-text{
    text-align:center;
    max-width:900px;
    margin:auto;
    font-size:18px;
}

/* STORY */

.story-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-top:50px;
}

.story-image{
    width: 100%;
    background:#ddd;
    height:400px;
    border-radius:20px;


}
.story-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-heading{
    color:#5b2c83;
    margin-bottom:20px;
}

/* PURPOSE */

.purpose-section{
    background:#f0ebf6;
}

.mv-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:40px;
}

.card{
    background:white;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.card h3{
    color:#5b2c83;
    margin-bottom:15px;
    font-size:28px;
}

/* VALUES */

.values{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    margin-top:40px;
}

.value-box{
    background:#5b2c83;
    color:white;
    padding:30px;
    border-radius:12px;
    text-align:center;
    font-size:20px;
    font-weight:bold;
}

/* PROGRAMS */

.programs-section{
    background:#f0ebf6;
}

.programs{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
}

.program-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.program-image{
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.program-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.program-content{
    padding:25px;
}

.program-content h3{
    color:#5b2c83;
    margin-bottom:10px;
}

/* IMPACT */

.impact{
    background:#5b2c83;
    color:white;
       padding-top: 50px;    margin-top: 50px;
       height: 70vh;
}

.impact-title{
    text-align:center;
    font-size:38px;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    margin-top:5px;
    text-align:center;

}

.impact-box h2{
    font-size:50px;
}

/* CTA */

.cta{
    text-align:center;
    background:white;
}

.cta h2{
    font-size:40px;
    color:#5b2c83;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
    font-size:18px;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    background:#5b2c83;
    color:white;
    text-decoration:none;
    border-radius:8px;
    margin:10px;
    transition:0.3s;
}

.btn:hover{
    background:#441d63;
}

/* FOOTER */

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:25px;
}

/* RESPONSIVE */
 
@media (max-width:900px){

.story-container,
.mv-container{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:40px;
}

/* MOBILE NAV */

.nav-links{
    position:absolute;
    top:100px;
    right:0;
    background:#4a094a;
    width:220px;
    display:none;
    flex-direction:column;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.nav-links a{
    margin:10px 0;
}

.nav-links.active{
    display:flex;
}

.hamburger{
    display:block;
}

}
