/* =========================
   RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


/* =========================
   BODY + WATERMARK BACKGROUND
========================= */
body{
  font-family: Arial, sans-serif;
  color:#333;
  background-color:#f5f7fa;
  min-height:100vh;
  position:relative;
}


/* WATERMARK */
body::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-image:url("img/ahlogo.jpg");
  background-repeat:no-repeat;
  background-position:center;
  background-size:500px;
  opacity:0.35;
  z-index:-1;
  pointer-events:none;
}


/* =========================
   HEADER
========================= */
.main-header{
  background:#ffffff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 20px;
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.logo-title{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-title img{
  height:45px;
}

.logo-title h1{
  color:#c80000;
  font-size:20px;
}


/* =========================
   NAVIGATION
========================= */
nav ul{
  list-style:none;
  display:flex;
  gap:15px;
}

nav a{
  color:#c80000;
  text-decoration:none;
  font-weight:bold;
  padding:6px 10px;
  border-radius:6px;
  transition:0.3s;
}

nav a:hover,
nav a.active{
  background:#c80000;
  color:white;
}


/* =========================
   PAGE CONTENT
========================= */
.page-content{
  padding-top:90px;
}


/* =========================
   CAROUSEL
========================= */
.carousel{
  width:100%;
  overflow:hidden;
  background:#ffffff;
  padding:10px 0;
}

.carousel-track{
  display:flex;
  gap:10px;
  animation:scroll 40s linear infinite;
}

.carousel-track:hover{
  animation-play-state:paused;
}

.carousel img{
  height:150px;
  border-radius:10px;
  transition:transform 0.3s;
}

.carousel img:hover{
  transform:scale(1.05);
}

@keyframes scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}


/* =========================
   HERO SECTION
========================= */
.hero{
  text-align:center;
  padding:60px;
  margin:20px;
  background:linear-gradient(135deg, #c80000, #8b0000);
  color:white;
  border-radius:12px;
}

.hero h2{
  font-size:32px;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
}


/* =========================
   INFO BOX SECTION
========================= */
.section-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  padding:30px;
}

.section-container.two-columns{
  grid-template-columns: repeat(2, minmax(280px, 400px));
  justify-content:center;
}


/* =========================
   INFO BOX (UPGRADED)
========================= */
.info-box{
  background:white;
  border-radius:14px;
  text-align:center;
  transition:0.3s;
  overflow:hidden;
  padding-bottom:15px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.info-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.info-box img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display:block;
}

.info-box{
  overflow:hidden;
  border-radius:14px;
}

.info-box h3{
  margin-top:15px;
  color:#c80000;
  font-size:20px;
}

.info-box p{
  color:#555;
  padding:10px 15px;
}


/* =========================
   PROGRAMS PAGE
========================= */
.program-section{
  padding:50px 20px;
  text-align:center;
}

.alt-bg{
  background:#eef3f7;
}

.section-title{
  font-size:28px;
  margin-bottom:10px;
  color:#2c3e50;
}

.section-sub{
  margin-bottom:30px;
  color:#666;
}

.program-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.program-card{
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  transition:0.3s;
}

.program-card:hover{
  transform:translateY(-6px);
}

.program-card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.program-card h3{
  margin:15px 0 10px;
  color:#c80000;
}

.program-card p{
  padding:0 10px 20px;
  color:#555;
}


/* =========================
   DONATE SECTION 🔥
========================= */
.donate-section{
  background:linear-gradient(135deg, #2c3e50, #1a252f);
  color:white;
  text-align:center;
  padding:60px 20px;
}

.donate-grid{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:30px;
}

.donate-card{
  background:white;
  color:#333;
  padding:25px;
  border-radius:14px;
  width:260px;
  box-shadow:0 6px 15px rgba(0,0,0,0.2);
  transition:0.3s;
}

.donate-card:hover{
  transform:translateY(-5px);
}

.donate-card h3{
  color:#c80000;
}

.donate-card button{
  margin-top:15px;
  padding:10px;
  border:none;
  background:#27ae60;
  color:white;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
}

.donate-card button:hover{
  background:#219150;
}


/* =========================
   LIGHTBOX
========================= */
.lightbox{
  display:none;
  position:fixed;
  z-index:5000;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.95);
}

.lightbox-content{
  display:block;
  margin:auto;
  max-width:90%;
  max-height:80%;
  margin-top:5%;
  border-radius:10px;
}

.lightbox-close{
  position:absolute;
  top:20px;
  right:35px;
  color:white;
  font-size:45px;
  cursor:pointer;
}

.lightbox-prev,
.lightbox-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  color:white;
  font-size:60px;
  cursor:pointer;
  padding:15px;
}

.lightbox-prev{ left:20px; }
.lightbox-next{ right:20px; }


/* =========================
   FOOTER
========================= */
.main-footer{
  text-align:center;
  padding:20px;
  margin-top:40px;
  background:#2c3e50;
  color:white;
  font-size:14px;
}


/* =========================
   MOBILE
========================= */
@media(max-width:768px){

  .logo-title h1{
    font-size:14px;
  }

  nav ul{
    gap:8px;
  }

  nav a{
    font-size:14px;
  }

  .carousel img{
    height:100px;
  }

  .hero{
    padding:30px 15px;
  }

  .hero h2{
    font-size:22px;
  }

  .hero p{
    font-size:16px;
  }

  .section-container.two-columns{
    grid-template-columns:1fr;
  }

}

.lightbox {
  display:none;
  align-items:center;
  justify-content:center;
}






/* GET INVOLVED */
.involve-container{
  display:flex;
  gap:20px;
  padding:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.involve-card{
  background:white;
  width:260px;
  border-radius:12px;
  text-align:center;
  padding-bottom:20px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.involve-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:12px 12px 0 0;
}

.involve-card h3{
  color:#c80000;
  margin:15px 0;
}

.involve-card button{
  padding:10px;
  background:#27ae60;
  color:white;
  border:none;
  border-radius:5px;
  cursor:pointer;
}




/* FORM */
.form-section{
  text-align:center;
  padding:40px;
}

.contact-form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  padding:12px;
  border-radius:6px;
  border:1px solid #ccc;
}

.contact-form button{
  background:#c80000;
  color:white;
  padding:12px;
  border:none;
  border-radius:6px;
}

.contact-container{
  display:flex;
  gap:40px;
  padding:40px;
  flex-wrap:wrap;
}

.contact-info{
  flex:1;
}

.contact-form{
  flex:1;
}


/* ABOUT HERO */
.about-hero{
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('img/slide2.jpg');
  background-size: cover;
  color: white;
}


/* FEATURES */
.features-container{
  display:flex;
  gap:20px;
  padding:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.feature-box{
  background:white;
  padding:20px;
  border-radius:12px;
  width:300px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.feature-box h3{
  color:#c80000;
}


/* STORY */
.about-story{
  padding:40px;
  max-width:900px;
  margin:auto;
  line-height:1.7;
  text-align:justify;
}


/* IMAGE GRID */
.about-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  padding:40px;
}

.gallery-box img{
  width:100%;
  border-radius:10px;
}

.gallery-box p{
  text-align:center;
  margin-top:10px;
  font-weight:bold;
}

.gcash-section{
  text-align:center;
  padding:50px;
}

.gcash-box{
  background:white;
  padding:20px;
  display:inline-block;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.gcash-box img{
  width:200px;
  margin-bottom:10px;
}

.sponsor-section{
  padding:50px;
  text-align:center;
}

.sponsor-grid{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.child-card{
  background:white;
  width:220px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.child-card img{
  width:100%;
  height:150px;
  object-fit:cover;
}

.child-card h3{
  margin:10px 0;
  color:#c80000;
}

.child-card button{
  margin:10px;
  padding:8px;
  background:#27ae60;
  color:white;
  border:none;
  border-radius:5px;
}

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}



/* SPONSOR SECTION */
.sponsor-section{
  text-align:center;
  padding:60px 20px;
  max-width:1200px;   /* NEW */
  margin:0 auto;      /* CENTER */
}

.sponsor-grid{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}


.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.modal-content{
  background:white;
  padding:30px;
  width:90%;
  max-width:400px;
  border-radius:12px;
  text-align:center;
}

.close-btn{
  float:right;
  font-size:24px;
  cursor:pointer;
}

.sponsor-form{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:15px;
}

.sponsor-form input,
.sponsor-form textarea{
  padding:10px;
  border:1px solid #ccc;
  border-radius:6px;
}

.sponsor-form button{
  background:#27ae60;
  color:white;
  padding:10px;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

body{
  font-family: 'Arial', sans-serif;
  background:#f4f7fb;
  color:#333;
}

.hero{
  background:linear-gradient(135deg, #0057b7, #00a651);
  color:white;
  border-radius:15px;
}

h1, h2, h3{
  letter-spacing:0.5px;
}

button{
  transition:0.3s;
}

button:hover{
  transform:scale(1.05);
  opacity:0.9;
}



/* =========================
   STYLE HERO CHURCH
========================= */
.hero-unicef{
  background:linear-gradient(135deg, #0057b7, #00a651);
  color:white;
  padding:80px 20px;
  text-align:center;
  border-radius:0;
}

.hero-unicef h1{
  font-size:42px;
  margin-bottom:10px;
}

.hero-buttons{
  margin-top:20px;
}

.btn{
  display:inline-block;
  padding:12px 20px;
  margin:5px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

.btn.primary{
  background:white;
  color:#0057b7;
}

.btn.secondary{
  background:transparent;
  border:2px solid white;
  color:white;
}


/* =========================
   IMPACT SECTION CHURCH
========================= */
.impact-section{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  padding:50px 20px;
  background:#f4f7fb;
  color:#333;
}

.impact-box{
  background:white;
  padding:20px;
  width:180px;
  text-align:center;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.impact-box h2{
  color:#c80000;
  font-size:30px;
}


/* =========================
   PREVIEW SECTION
========================= */
.preview-section{
  padding:50px 20px;
  text-align:center;
}

.preview-grid{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.preview-card{
  width:260px;
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.preview-card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.preview-card h3{
  color:#c80000;
  margin:10px 0;
}


/* =========================
   CTA SECTION
========================= */
.cta-section{
  background:#c80000;
  color:white;
  text-align:center;
  padding:60px 20px;
  border-radius:10px;
  margin:30px;
}


/* =========================
   FOOTER (PRO NGO STYLE)
========================= */
.main-footer{
  background:#1a252f;
  color:white;
  margin-top:50px;
}

.footer-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:30px;
  padding:40px 20px;
}

.footer-col{
  flex:1;
  min-width:220px;
}

.footer-col h3{
  margin-bottom:15px;
  color:#00a651;
}

.footer-col p{
  font-size:14px;
  line-height:1.6;
}

/* LINKS */
.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:8px;
}

.footer-col ul li a{
  color:white;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#00a651;
}

/* BUTTON */
.footer-btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 15px;
  background:#00a651;
  color:white;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  padding:15px;
  background:#111;
  font-size:13px;
}

/* =========================
   SOCIAL LINKS
========================= */
.social-links{
  margin-top:15px;
}

.social-links a{
  display:inline-block;
  color:#ffffff;
  background:#1877f2;
  padding:10px 12px;
  border-radius:6px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.social-links a:hover{
  background:#0f5ec2;
  transform:scale(1.05);
}


/* =========================
   GALLERY PAGE
========================= */
.gallery-section{
  padding:50px 20px;
  text-align:center;
}

.gallery-title{
  font-size:26px;
  margin-bottom:20px;
  color:#c80000;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:15px;
  padding:20px;
}

.gallery-grid img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.gallery-grid img:hover{
  transform:scale(1.05);
}

/* =========================
   PARTNER LOGO SLIDER
========================= */
.partner-slider{
  text-align:center;
  padding:50px 20px;
  background:#fff;
}

.logo-track{
  display:flex;
  gap:30px;
  overflow:hidden;
  justify-content:center;
  flex-wrap:wrap;
  padding:20px;
}

.logo-track img{
  height:60px;
  opacity:0.7;
  transition:0.3s;
}

.logo-track img:hover{
  opacity:1;
  transform:scale(1.1);
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials{
  padding:50px 20px;
  text-align:center;
}

.testimonial-grid{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.testimonial-card{
  background:white;
  padding:20px;
  width:280px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  font-style:italic;
}

/* =========================
   MODAL FIX
========================= */
.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.modal-content{
  background:white;
  padding:30px;
  border-radius:12px;
  width:90%;
  max-width:400px;
}

.close-btn{
  float:right;
  font-size:24px;
  cursor:pointer;
}

/* =========================
   LIVE STREAM
========================= */
.live-section{
  padding:60px 20px;
  text-align:center;
}

.live-container iframe{
  width:90%;
  max-width:700px;
  height:400px;
  border-radius:12px;
}

/* =========================
   SERMONS
========================= */
.sermon-section{
  padding:60px 20px;
  text-align:center;
  background:#f4f7fb;
}

.sermon-grid{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.sermon-card{
  width:260px;
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.sermon-card img{
  width:100%;
  height:150px;
  object-fit:cover;
}

.sermon-card h3{
  color:#c80000;
  margin:10px 0;
}

.sermon-card a{
  display:inline-block;
  margin:10px;
  padding:8px 12px;
  background:#0057b7;
  color:white;
  text-decoration:none;
  border-radius:6px;
}

/* =========================
   PRAYER MODAL (reuse modal)
========================= */
.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  justify-content:center;
  align-items:center;
}

.modal-content{
  background:white;
  padding:25px;
  border-radius:12px;
  width:90%;
  max-width:400px;
}


/* =========================
 BANK IN
========================= */

.bank-section {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.bank-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  max-width: 400px;
  margin: 20px auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bank-box p {
  margin: 10px 0;
  font-size: 16px;
}

.donation-section {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.donation-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.donation-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  width: 350px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.donation-box img {
  width: 150px;
  margin: 10px 0;
}

.donation-box button {
  margin-top: 10px;
  padding: 10px;
  border: none;
  background: #2c7be5;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.donation-box button:hover {
  background: #1a5edb;
}

.copy-msg {
  display: none;
  color: green;
  font-size: 14px;
  margin-top: 5px;
}

/* LOGO */
.bank-logo {
  width: 80px;
  margin-bottom: 10px;
}

/* FEATURED (GCASH) */
.featured {
  border: 2px solid #2c7be5;
  position: relative;
}

/* BADGE */
.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #2c7be5;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

/* HOVER EFFECT */
.donation-box {
  transition: all 0.3s ease;
}

.donation-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* PROOF BUTTON */
.proof-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  background: #25D366;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.proof-btn:hover {
  background: #1ebe5d;
}


.account-number {
  font-weight: bold;
  letter-spacing: 1px;
  color: #2c7be5;
}

.donation-box {
  border-top: 4px solid #2c7be5;
}


.copy-msg{
  display:none;
  color:#27ae60;
  font-size:12px;
  margin-top:5px;
}

html{
  scroll-behavior:smooth;
}

.stats-section{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  padding:50px 20px;
  background:#f9fbff;
}

.stat-box{
  background:white;
  padding:25px;
  border-radius:12px;
  width:180px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.stat-box:hover{
  transform:translateY(-5px);
}

.stat-box h2{
  font-size:2.2rem;
  color:#27ae60;
  margin:0;
}

.stat-box p{
  margin-top:8px;
  color:#555;
  font-weight:500;
}

.stat-box:hover{
  transform:translateY(-5px);
}

.stat-box h2{
  font-size:2.2rem;
  color:#27ae60;
  margin:0;
}

.stat-box p{
  margin-top:8px;
  color:#555;
  font-weight:500;
}


/* ========================= */
.involve-container{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(275px, 1fr));
  gap:30px;
  padding:60px 10%;
  max-width:1200px;
  margin:0 auto;
}

/* CARD FIX */
.involve-card{
  background:#fff;
  padding:20px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s ease;

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* HOVER */
.involve-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.involve-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:15px;
}

/* TITLE */
.involve-card h3{
  font-size:22px;
  margin:10px 0;
  color:#c80000;
}

/* TEXT */
.involve-card p{
  font-size:15px;
  opacity:0.8;
  margin-bottom:20px;
}

/* BUTTON FIX (uniform spacing) */
.involve-card button{
  margin-top:auto;
  padding:12px 18px;
  border:none;
  border-radius:10px;
  background:#2b6cb0;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
  align-self:center;
  width:80%;
}

.involve-card button:hover{
  background:#1e4e86;
}




/* =========================
   BANK INFO TEXT FIX
========================= */

/* All labels + names (black) */
.donation-box .info-row small,
.donation-box .info-row p {
  color: #000 !important;
}

/* Account number ONLY (blue) */
.donation-box .account-number {
  color: #2c7be5 !important;
  font-weight: bold;
}


.sponsor-card {
  width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.sponsor-card img {
  width: 100%;
  border-radius: 12px;
}

.sponsor-story {
  transition: 0.4s ease;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-top: 10px;
}

.read-more-btn {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  background: #2c6e49;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.story-modal {
  max-width: 500px;
  text-align: center;
  padding: 25px;
  border-radius: 18px;
}

.story-modal img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.story-modal h2 {
  margin-bottom: 10px;
}

.story-modal p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.close-story {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 22px;
  cursor: pointer;
}



/* =========================
   DONATION DESIGN
========================= */

.donate-unicef{
  background:linear-gradient(135deg, #0057b7, #00a651);
  color:white;
  padding:70px 20px;
}

.donate-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  align-items:center;
}

/* LEFT SIDE */
.donate-left{
  flex:1;
}

.donate-left h2{
  font-size:36px;
  margin-bottom:15px;
}

.donate-left p{
  font-size:16px;
  line-height:1.6;
}

/* BUTTONS */
.donate-actions{
  margin-top:20px;
}

.primary-btn{
  background:white;
  color:#0057b7;
  border:none;
  padding:12px 18px;
  border-radius:6px;
  margin-right:10px;
  cursor:pointer;
  font-weight:bold;
}

.secondary-btn{
  background:transparent;
  border:2px solid white;
  color:white;
  padding:12px 18px;
  border-radius:6px;
  cursor:pointer;
}

/* RIGHT SIDE */
.donate-right{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:15px;
}

/* BANK ROW */
.donate-option{
  display:flex;
  align-items:center;
  gap:15px;
  background:white;
  color:#333;
  padding:12px 15px;
  border-radius:10px;
}

/* SMALL LOGO (as requested) */
.donate-option img{
  width:45px;
  height:45px;
  object-fit:contain;
}

/* TEXT */
.donate-option strong{
  display:block;
  color:#c80000;
}

.donate-option small{
  color:#666;
}

/* MOBILE */
@media (max-width:768px){
  .donate-container{
    flex-direction:column;
    text-align:center;
  }

  .donate-right{
    width:100%;
  }
}