/* =====================
   BASE
===================== */
:root{
  --dark-blue:#0b2c4a;
  --sky-blue:#eaf4fb;
  --red:#b11226;
  --yellow:#f2c94c;
  --dark-green:#2f6b4f;
  --white:#ffffff;
  --text:#1f2933;

  --max-width:1200px;
  --radius:8px;
  font-family: "Inter", Arial, sans-serif;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:var(--white);
  color:var(--text);
  line-height:1.6;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

/* =====================
   LAYOUT
===================== */
.content{
  max-width:var(--max-width);
  margin:0 auto;
  padding:2.2rem 1.4rem;
}

/* =====================
   HEADER
===================== */
.navbar{
  background:var(--white);
  border-bottom:4px solid var(--dark-blue);
  padding:1.2rem 1.4rem 0.9rem;
}

.navbar .logo{
  display:flex;
  align-items:center;
  gap:.7rem;
  font-weight:800;
  color:var(--dark-blue);
}

.navbar .logo img{
  height:70px;
}

.navbar nav{
  margin-top:0.8rem;
  display:flex;
  gap:1.3rem;
  flex-wrap:wrap;
}

.navbar nav a{
  font-weight:700;
  font-size:0.95rem;
  color:var(--dark-blue);
  padding:0.3rem 0;
  border-bottom:3px solid transparent;
}

.navbar nav a:hover{
  border-color:var(--red);
  color:var(--red);
}

/* =====================
   HERO
===================== */
.hero{
  background:linear-gradient(
    to right,
    var(--sky-blue),
    #ffffff
  );
  padding:4rem 1.5rem;
  text-align:center;
  border-bottom:3px solid var(--yellow);
}

.hero h1{
  font-size:2.2rem;
  color:var(--dark-blue);
  margin-bottom:0.6rem;
}

.hero p{
  max-width:780px;
  margin:0 auto;
  font-size:1.08rem;
}

/* =====================
   SECTIONS
===================== */
section{
  margin-bottom:2.8rem;
}

section h2{
  font-size:1.45rem;
  color:var(--dark-blue);
  border-left:5px solid var(--yellow);
  padding-left:0.6rem;
  margin-bottom:0.7rem;
}

section h3{
  color:var(--dark-green);
  margin-top:1.2rem;
}

/* =====================
   CARDS
===================== */
.card{
  background:var(--white);
  border:1px solid #e5e7eb;
  padding:1.4rem;
  border-radius:var(--radius);
  border-top:5px solid var(--yellow);
}

.two-col{
  display:flex;
  gap:1.6rem;
}

/* =====================
   LEADERSHIP
===================== */
.leader-card{
  display:flex;
  gap:1.5rem;
  align-items:flex-start;
  margin-top:1.3rem;
}

.leader-photo{
  width:180px;
  height:180px;
  object-fit:cover;
  border-radius:var(--radius);
  border:4px solid var(--sky-blue);
}

/* =====================
   MINISTRIES
===================== */
.min-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.3rem;
  margin-top:1.2rem;
}

.min-card{
  background:var(--sky-blue);
  border-left:5px solid var(--dark-green);
  padding:1.2rem;
  border-radius:var(--radius);
}

/* =====================
   GALLERY
===================== */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
  margin-top:24px;
}

.gallery-item img{
  height:230px;
  width:100%;
  object-fit:cover;
  border-radius:var(--radius);
  border-bottom:5px solid var(--yellow);
}

/* =====================
   SUPPORT / DONATE
===================== */
.support-box{
  background:#fff6e5;
  border-left:6px solid var(--red);
  padding:1.4rem;
  border-radius:var(--radius);
}

/* =====================
   CONTACT
===================== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.6rem;
}

.contact-grid a{
  color:var(--red);
  font-weight:700;
}

/* =====================
   FOOTER
===================== */
.footer{
  background:var(--dark-blue);
  color:var(--white);
  padding:1.6rem 1rem;
  text-align:center;
}

.footer p{
  margin:0;
  font-size:0.9rem;
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width:900px){
  .two-col{flex-direction:column}
  .leader-card{flex-direction:column;text-align:center;align-items:center}
  .contact-grid{grid-template-columns:1fr}
}

@media(max-width:600px){
  .hero h1{font-size:1.7rem}
  .gallery-item img{height:190px}
}
