:root {
  --navy: #0d3b66;
  --navy-dark: #092d4f;
  --navy-mid: #144f84;
  --orange: #f4a261;
  --orange-dk: #e08a45;
  --cream: #fdf8f3;
  --gray-lt: #f2f4f7;
  --gray-mid: #6b7280;
  --white: #ffffff;
  --text: #1a1a2e;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(13,59,102,.12);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.7;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

header{
  background:var(--navy);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  position:sticky;
  top:0;
  z-index:1000;
}

.brand{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo{
  width:55px;
  height:55px;
  border-radius:50%;
  object-fit:cover;
}

.brand-text h1{
  color:white;
  font-size:1.2rem;
  font-family:'Playfair Display',serif;
}

.brand-text span{
  color:var(--orange);
  font-size:.8rem;
}

nav{
  display:flex;
  gap:15px;
  background-color: #0d3b66;
  padding: 16px 24px;
  justify-content: left;
}

nav a{
  color:whitesmoke;
  font-weight:500;
  padding:8px 12px;
}

nav a:hover,
nav a.active{
  background:rgba(255,255,255,.1);
  border-radius:6px;
}

.nav-donate{
  background:var(--orange);
  border-radius:6px;
}

.hero{
  min-height:90vh;
  background:
  linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
  url("Photos/Welcoming\ pic.jpg");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:60px;
}

.hero-inner{
  max-width:700px;
}

.hero-eyebrow{
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:20px;
  font-weight:600;
}

.hero h2{
  color:white;
  font-size:4rem;
  line-height:1.1;
  font-family:'Playfair Display',serif;
}

.hero p{
  color:white;
  margin:25px 0;
  font-size:1.1rem;
}

.hero-btns{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:14px 30px;
  border-radius:8px;
  font-weight:600;
}

.btn-primary{
  background:var(--orange);
  color:white;
}

.btn-outline{
  border:2px solid white;
  color:white;
}

.stats-bar{
  background:var(--navy);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
  padding:40px 20px;
}

.stat-item h3{
  color:var(--orange);
  font-size:2.3rem;
}

.stat-item p{
  color:white;
}

section{
  padding:90px 40px;
}

.section-label{
  color:var(--orange);
  text-transform:uppercase;
  font-size:.8rem;
  letter-spacing:2px;
  margin-bottom:10px;
}

.section-title{
  color:var(--navy);
  font-size:2.5rem;
  font-family:'Playfair Display',serif;
  margin-bottom:20px;
}

.section-sub{
  color:var(--gray-mid);
}

.about{
  background:var(--cream);
}

.about-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-image img{
  width:100%;
  height:450px;
  object-fit:cover;
  border-radius:12px;
}

.about-values{
  margin-top:25px;
}

.about-values li{
  margin-bottom:12px;
}

.programs-inner{
  max-width:1200px;
  margin:auto;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.card{
  background:white;
  padding:30px;
  border-radius:12px;
  box-shadow:var(--shadow);
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.card-icon{
  font-size:2rem;
  margin-bottom:15px;
}

.card h3{
  margin-bottom:10px;
  color:var(--navy);
}

.card-link{
  display:inline-block;
  margin-top:15px;
  color:var(--orange);
  font-weight:600;
}

.projects{
  background:#f8fafc;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.project-card{
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,.08);
  transition:.3s;
}

.project-card:hover{
  transform:translateY(-8px);
}

.project-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.project-content{
  padding:20px;
}

.donate-band{
  text-align:center;
  background:linear-gradient(
  135deg,
  var(--navy-dark),
  var(--navy-mid)
  );
}

.donate-band .section-title{
  color:white;
}

.donate-band p{
  color:white;
  margin-bottom:25px;
}

.testimonials{
  text-align:center;
}

.testimonial-box{
  max-width:700px;
  margin:auto;
  padding:40px;
  border-radius:12px;
  background:#f8fafc;
  box-shadow:var(--shadow);
}
.about-section{
background: var(--cream);
padding: 60px 20px;
}
.about-section h1 {
color: var(--navy-dark);
}

.contact-strip{
  background:#f5f7fa;
}

.contact-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.contact-card{
  background:white;
  padding:25px;
  border-radius:12px;
  box-shadow:var(--shadow);
}

.footer,
footer{
  background:#0d3b66;
  color:white;
  padding:60px 40px;
}

.footer-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer h3,
.footer h4,
footer h3,
footer h4{
  color:var(--orange);
  margin-bottom:15px;
}

@media(max-width:768px){

  nav{
    display:none;
  }

  .hero{
    padding:40px 25px;
    text-align:center;
  }

  .hero h2{
    font-size:2.5rem;
  }

  .stats-bar{
    grid-template-columns:1fr 1fr;
    gap:20px;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  section{
    padding:60px 25px;
  }
  .social-link{
    margin:30px 24px;
    text-align: center;
  }
  .instagram-btn{
display: inline-flex;
align-items: center;
background: #1e1b4b;
color: white;
padding: 12px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
  }
  .instagram-btn i{
    margin-right: 10px;
    font-size: 20px;
  }
  .instagram-btn:hover{
background: #ea580c;
  }
}
