/* =====================================================
1. GLOBAL RESET
===================================================== */

*,
*::before,
*::after{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter', sans-serif;
line-height:1.6;
color:#222;
background:#fff;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}



/* =====================================================
2. GLOBAL LAYOUT SYSTEM
===================================================== */

section{
width:100%;
padding:80px 0;
}

.container{
max-width:1200px;
margin:auto;
padding:0 8%;
}

.text-center{
text-align:center;
}

body{
font-family:'Inter', sans-serif;
line-height:1.6;
color:#222;
background:#fff;
opacity:0;
animation:fadePage 0.8s ease forwards;
}

@keyframes fadePage{
to{
opacity:1;
}
}


/* =====================================================
3. TYPOGRAPHY
===================================================== */

h1,h2,h3{
font-family:'Playfair Display', serif;
font-weight:600;
}

h1{
font-size:56px;
line-height:1.2;
letter-spacing:-0.5px;
}


h2{
font-size:36px;
margin-bottom:20px;
}

h3{
font-size:20px;
margin-bottom:10px;
}

p{
font-size:17px;
color:#444;
}



/* =====================================================
4. HEADER / NAVBAR
===================================================== */

.main-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
transition:all 0.3s ease;
}

nav{
display:flex;
align-items:center;
}


.nav-links{
display:flex;
list-style:none;
gap:30px;
position: relative;
}

/* Highlight effect for active nav link */
.nav-links a.active {
  border-bottom: 3px solid #c2185b; /* Red underline, change color as needed */
   /* Optional: change text color */
}

/* Smooth transition */
.nav-links a {
  transition: all 0.3s ease;
}

.nav-links::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px; /* Thickness of the line */
  background-color: #ff0000; /* Line color */
  transition: all 0.3s ease;
}

.nav-links a::after{
content:"";
position:absolute;
width:0%;
height:2px;
background:#c2185b;
left:0;
bottom:-5px;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}

.nav-links li{
margin:0 15px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
position:relative;
transition:0.3s;
}

.nav-links a:hover{
color:#c2185b;
}

.nav-link.active{
color:#c2185b;
font-weight:600;
}



/* =====================================================
5. LOGO
===================================================== */

.logo img{
height:45px;
cursor:pointer;
transition:transform .3s;
}

.logo img:hover{
transform:scale(1.05);
}


/* =====================================================
SCROLL ANIMATION
===================================================== */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}


/* =====================================================
6. BUTTON SYSTEM
===================================================== */

.primary-btn{
background:#c2185b;
color:#fff;
padding:14px 32px;
border-radius:6px;
font-weight:500;
display:inline-block;
transition:all .3s;
}

.primary-btn:hover{
background:#a3154c;
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.secondary-btn{
border:2px solid #fff;
color:#fff;
padding:12px 30px;
border-radius:6px;
font-weight:500;
transition:.3s;
}

.secondary-btn:hover{
background:#fff;
color:#c2185b;
}

.donate-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #d81b60, #ad1457);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.donate-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(216, 27, 96, 0.6);
}

/* Click effect */
.donate-btn:active {
    transform: scale(0.96);
}

.donate-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: 0.5s;
}

.donate-btn:hover::before {
    left: 100%;
}

/* ===============================
PATIENT SLIDER
=============================== */

.patient-slider{
padding:60px 0;
background:#f9f9f9;
text-align:center;
overflow:hidden;
}

.patient-slider h2{
font-family:'Playfair Display', serif;
font-size:28px;
margin-bottom:30px;
}

.slider{
width:100%;
overflow:hidden;
position:relative;
}

.slide-track{
display:flex;
width:calc(250px * 10);
animation:scroll 25s linear infinite;
}

.slide-track img{
width:250px;
height:180px;
object-fit:cover;
margin-right:20px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.slide-track img:hover{
transform:scale(1.05);
transition:0.3s;
}

/* Animation */

@keyframes scroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

/* Slider Subtext Styling */

.slider-subtext{
max-width:700px;
margin:0 auto 25px auto;
font-family:'Inter', sans-serif;
font-size:16px;
line-height:1.6;
color:#555;
text-align:center;
padding:0 20px;
position:relative;
}

/* Decorative line above */

.slider-subtext::before{
content:"";
display:block;
width:60px;
height:3px;
background:#c0392b;
margin:0 auto 15px auto;
border-radius:5px;
}

/* Optional subtle emphasis */

.slider-subtext strong{
color:#c0392b;
font-weight:500;
}


/* =====================================================
DONATION SECTION 
===================================================== */

.donation{
padding:100px 20px;
background:#f7f9fc;
}

.donation-container{
max-width:800px;
margin:auto;
text-align:center;
}

.donation-container h2{
font-family:'Playfair Display',serif;
font-size:34px;
margin-bottom:10px;
}

.donation-intro{
color:#555;
margin-bottom:30px;
}

/* =========================
QUICK DONATION BUTTONS
========================= */

.quick-donate{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:12px;
margin:25px 0;
}

.quick-donate button{
padding:14px;
border:1px solid #ddd;
background:white;
border-radius:10px;
cursor:pointer;
font-weight:500;
transition:0.3s;
}

.quick-donate button:hover{
background:#c2185b;
color:#fff;
transform:translateY(-3px);
}

/* =========================
CUSTOM DONATION
========================= */

.custom-donate{
display:flex;
gap:10px;
margin-bottom:35px;
}

.custom-donate input{
flex:1;
padding:14px;
border:1px solid #ddd;
border-radius:10px;
font-size:15px;
}

.custom-donate button{
padding:14px 25px;
border:none;
background:#c2185b;
color:white;
border-radius:10px;
cursor:pointer;
transition:0.3s;
}

.custom-donate button:hover{
background:#a3154c;
}

/* =========================
PROGRESS BAR
========================= */

.donation-progress{
margin:40px 0;
}

.progress-bar{
width:100%;
height:12px;
background:#eee;
border-radius:20px;
overflow:hidden;
}

.progress-fill{
height:100%;
width:25%; /* matches ₦250k / ₦1M */
background:#c2185b;
border-radius:20px;
transition:width 0.6s ease;
}

.donation-progress p{
margin-top:10px;
font-weight:500;
}

/* =========================
BANK DETAILS CARD
========================= */

.bank-details{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
margin-top:30px;
text-align:left;
}

.bank-details h3{
color:#c2185b;
margin-bottom:15px;
}

.bank-details p{
margin-bottom:10px;
font-size:15px;
}

/* COPY BUTTON */

.copy-btn{
margin-top:10px;
padding:12px 18px;
border:none;
background:#222;
color:white;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}

.copy-btn:hover{
background:#c2185b;
}

/* =========================
UPLOAD SECTION
========================= */

.upload-section{
margin-top:50px;
text-align:left;
}

.upload-section h3{
margin-bottom:5px;
}

.upload-section p{
margin-bottom:15px;
color:#555;
}

.upload-section input{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:8px;
}

/* =========================
BUTTON
========================= */

.primary-btn{
width:100%;
padding:14px;
border:none;
background:#c2185b;
color:white;
border-radius:10px;
cursor:pointer;
transition:0.3s;
}

.primary-btn:hover{
background:#a3154c;
}

/* =========================
DONOR WALL
========================= */

.donor-wall{
margin-top:50px;
background:white;
padding:25px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
text-align:left;
}

.donor-wall h3{
margin-bottom:15px;
}

.donor-wall ul{
list-style:none;
}

.donor-wall li{
padding:8px 0;
border-bottom:1px solid #eee;
font-size:14px;
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media (max-width:768px){

.quick-donate{
grid-template-columns:repeat(2,1fr);
}

.custom-donate{
flex-direction:column;
}

.bank-details,
.donor-wall{
padding:20px;
}

}

/* ===============================
FLOATING DONATE BUTTON
=============================== */

.floating-donate {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #c2185b; /* Brand pink/red */
  color: #fff;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  z-index: 999;
  animation: donatePulse 2s infinite;
}

.floating-donate i {
  font-size: 16px;
}

/* Hover Effect */
.floating-donate:hover {
  background: #a9154a; /* Slightly darker on hover */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Pulse Animation */
@keyframes donatePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 24, 91, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(194, 24, 91, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(194, 24, 91, 0);
  }
}



/* =====================================================
7. HERO SECTION
===================================================== */

.hero{
position:relative;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
overflow:hidden;
}

.hero-bg{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.hero::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
z-index:-1;
}

.hero-text{
max-width:700px;
padding:0 20px;
}

.hero-text p{
margin:20px 0 30px;
color:#eee;
}

.hero-buttons {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 12px;
}

.hero-buttons a {
    flex: 1;
    max-width: 220px;
    width: 220px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    min-width: 160px; /* THIS fixes uneven size */
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.primary-btn {
    background: linear-gradient(135deg, #d81b60, #ad1457);
    color: #fff;
    box-shadow: 0 6px 18px rgba(216, 27, 96, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.6);
}



/* =====================================================
8. FOUNDER SECTION
===================================================== */

.founder{
background:#f9f9fb;
padding:100px 0;
}

.founder-container{
max-width:1100px;
margin:0 auto;
padding:50px;
display:grid;
grid-template-columns: 1fr 1.5fr;
align-items:center;
gap:80px;
background:#fff;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

/* IMAGE */
.founder-image{
display:flex;
justify-content:center;
}

.founder-image img{
width:100%;
max-width:300px;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* TEXT */
.founder-text{
text-align:left;
}

.founder-text h2{
font-size:28px;
margin-bottom:5px;
font-weight:600;
}

.founder-text h2::after{
content:"";
display:block;
width:60px;
height:3px;
background:#c2185b;
margin-top:10px;
margin-bottom:20px;
}

.founder-text h3{
color:#c2185b;
margin-bottom:15px;
font-size:20px;
font-weight:500;
}

.founder-text p{
margin-bottom:15px;
color:#555;
line-height:1.9;
font-size:15px;
}

/* MOBILE */
@media(max-width:768px){
.founder-container{
grid-template-columns:1fr;
text-align:left;
padding:30px;
gap:30px;
}

.founder-image{
text-align:center;
}

.founder-text h2::after{
margin-left:0;
}
}


/* =====================================================
9. PAGE HERO
===================================================== */

.page-hero{
background:
linear-gradient(rgba(194,24,91,.9), rgba(194,24,91,.9)),
url("images/hero_background.png");
background-size:cover;
background-position:center;
color:#fff;
text-align:center;
padding:120px 20px;
}

.page-hero p{
color:#f2f2f2;
}



/* =====================================================
10. ABOUT SECTIONS
===================================================== */

.about-section{
background:#fff;
}

.light-bg{
background:#f5f5f5;
}

.about-container{
max-width:900px;
margin:auto;
padding:0 8%;
text-align:center;
}

.about-text p{
margin-bottom:15px;
}



/* =====================================================
11. GOALS SECTION
===================================================== */

.goals{
background:#fff;
text-align:center;
}

.goal-container{
max-width:1100px;
margin:auto;
padding:0 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.goal-box{
background:#f2f2f2;
padding:35px 25px;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,0.06);
transition:.3s;
}

.goal-box:hover{
transform:translateY(-8px);
box-shadow:0 12px 25px rgba(0,0,0,0.1);
}

.goal-box h3{
color:#c2185b;
}



/* =====================================================
12. IMPACT SECTION
===================================================== */

.impact{
background:#c2185b;
color:#fff;
text-align:center;
}

.impact-container{
max-width:1000px;
margin:auto;
padding:0 8%;
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:40px;
}

.impact-box h3{
font-size:42px;
font-weight:600;
}

.impact-box p{
color:#fff;
}



/* =====================================================
13. CTA SECTION
===================================================== */

.cta{
background:#111;
color:#fff;
text-align:center;
}

.cta p{
margin:15px 0 25px;
color:#ddd;
}



/* =====================================================
PREMIUM FOOTER
===================================================== */

.premium-footer{
background:linear-gradient(180deg,#1a1a1a,#111);
color:#f5f5f5;
padding:60px 8% 10px;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
}

.footer-about{
max-width:300px;
}

.footer-about h3{
margin-bottom:15px;
font-family:'Playfair Display',serif;
}

.footer-links ul{
list-style:none;
}

.footer-links li{
margin-bottom:8px;
}

.footer-about p{
color:#cccccc;
line-height:1.6;
}

.footer-links a{
color:#dddddd;
text-decoration:none;
}

.footer-links a:hover{
color:#c2185b;
}

.footer-bottom {
    text-align: center; 
    padding: 20px 0;    
    font-size: 14px;
    color: #555;
}

.footer-bottom .heart {
    color: #c2185b; 
    margin-left: 5px;
}



/* SOCIAL ICONS */


.social-icons{
display:flex;
gap:20px;
margin-top:10px;
}

.social-icons a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:#222;
border-radius:50%;
font-size:18px;
color:#e5e5e5;
transition:0.3s;
}

.social-icons a:hover{
background:#c2185b;
transform:translateY(-3px);
}

.social-link{

display:inline-block;
margin-top:10px;
color:#333;
text-decoration:none;
font-weight:500;

}

.social-link:hover{
color:#e63946;
}


/* FOOTER BOTTOM */

.footer-bottom{
text-align:center;
margin-top:25px;
border-top:1px solid rgba(255,255,255,0.15);
padding-top:10px;
padding-bottom:5px;
font-size:14px;
color:#bfbfbf;
}

.footer-bottom p{
margin:0;
}

/* HEART ANIMATION */

.heart{
color:#c2185b;
display:inline-block;
animation:heartbeat 1.5s infinite;
margin-left:5px;
}

@keyframes heartbeat{

0%{
transform:scale(1);
}

25%{
transform:scale(1.2);
}

50%{
transform:scale(1);
}

75%{
transform:scale(1.2);
}

100%{
transform:scale(1);
}

}



/* MOBILE */

@media(max-width:768px){

.footer-container{
flex-direction:column;
}

.contact-container{
grid-template-columns:1fr;
}

}



/* =====================================================
PROGRAMS SECTION
===================================================== */

.programs{
padding:90px 8%;
background:#fff;
}

/* Section title */

.section-header{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:60px;
}

.section-header h2{
font-family:'Playfair Display',serif;
font-size:36px;
margin-bottom:15px;
color:#111;
}

.section-header p{
color:#555;
font-size:16px;
line-height:1.6;
}

/* Program grid */

.program-grid{
display:flex;
gap:30px;
justify-content:space-between;
flex-wrap:wrap;
}

/* Program cards */

.program-card{
flex:1 1 220px;
background:#fafafa;
padding:40px 30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:all .3s ease;
position:relative;
overflow:hidden;
opacity:1;
transition:transform .35s ease, box-shadow .35s ease;
}

/* Top accent line */

.program-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:#c2185b;
}

.program-card h3{
color:#c2185b;
margin-bottom:15px;
font-size:20px;
}

.program-card p{
color:#555;
font-size:15px;
line-height:1.6;
}

/* Hover effect */

.program-card:hover{
transform:translateY(-12px) scale(1.02);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
}


/* =====================================================
SECTION TITLE DIVIDER
===================================================== */

.program-intro h2,
.section-header h2,
.program-impact h2{
position:relative;
display:inline-block;
padding-bottom:10px;
}

/* Pink divider line */

.program-intro h2::after,
.section-header h2::after,
.program-impact h2::after{
content:"";
position:absolute;
left:50%;
transform:translateX(-50%);
bottom:0;
width:60px;
height:3px;
background:#c2185b;
border-radius:2px;
}


/* =====================================================
STORIES INTRO
===================================================== */

.stories-intro{
padding:80px 10%;
text-align:center;
}

.stories-intro .container{
max-width:800px;
margin:auto;
}

.stories-intro h2{
font-family:'Playfair Display',serif;
font-size:34px;
margin-bottom:20px;
}

.stories-intro p{
color:#555;
line-height:1.7;
}



/* =====================================================
STORIES GRID
===================================================== */

.stories{
padding:80px 10%;
background:#fafafa;
}

.stories-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
}

.story-card{
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
position:relative;
transition:all .3s ease;
opacity:1;
transform:translateY(40px);
}

.story-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.story-text{
font-style:italic;
line-height:1.7;
margin-bottom:20px;
color:#444;
}

.story-card h4{
color:#c2185b;
font-weight:500;
}



/* =====================================================
IMPACT QUOTE
===================================================== */

.impact-quote{
padding:80px 10%;
background:#c2185b;
text-align:center;
}

.impact-quote p{
color:white;
font-size:24px;
font-family:'Playfair Display',serif;
max-width:700px;
margin:auto;
line-height:1.6;
}


/* =====================================================
CONTACT SECTION 
===================================================== */

.contact {
    padding: 100px 20px;
    background: #f7f9fc;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Shared card style */
.contact-info,
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.contact-info:hover,
.contact-form:hover {
    transform: translateY(-5px);
}

/* Headings */
.contact-info h2,
.contact-form h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 28px;
}

.contact-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
}

.contact-item i {
    font-size: 18px;
    color: #c2185b;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #222;
}

.phone-link {
    color: #c2185b;
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Social links */
.social-link {
    display: inline-block;
    margin-right: 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    margin-top: 5px;
}

.social-link:hover {
    color: #c2185b;
}

/* FORM */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c2185b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(194,24,91,0.1);
}

/* Button */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    

    margin-top: 20px; /* space from text */

    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;

    border-radius: 50px;
    text-decoration: none;

    background: linear-gradient(135deg, #d81b60, #ad1457);
    color: #fff;

    border: 2px solid #d81b60;
    box-sizing: border-box;

    box-shadow: 0 6px 18px rgba(216, 27, 96, 0.4);

    transition: all 0.3s ease;
}

.primary-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 27, 96, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(216, 27, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(216, 27, 96, 0);
    }
}
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.6);
}

.primary-btn:active {
    transform: scale(0.97);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 60px 20px;
    }
}

.cta .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px; /* slightly narrower than before */
    font-size: 16px;
    font-weight: 600;

    border-radius: 50px;
    text-decoration: none;

    background: linear-gradient(135deg, #d81b60, #ad1457);
    color: #fff;

    border: 2px solid #d81b60;
    box-sizing: border-box;

    box-shadow: 0 6px 18px rgba(216, 27, 96, 0.4);
    transition: all 0.3s ease;
    
    width: auto; /* THIS makes the button fit content */
    min-width: 180px; /* optional: keeps it reasonably wide */
}



/* =====================================================
DONATION SECTION
===================================================== */

.donation{
padding:90px 20px;
background:#f9f9f9;
}

.donation-container{
max-width:700px;
margin:auto;
text-align:center;
}

.donation-container h2{
font-family:'Playfair Display',serif;
font-size:32px;
margin-bottom:15px;
}

.donation-intro{
color:#555;
margin-bottom:35px;
}


.donation-progress{
margin-bottom:40px;
text-align:center;
}

.progress-bar{
width:100%;
height:12px;
background:#eee;
border-radius:20px;
overflow:hidden;
}

.progress-fill{
width:50%;
height:100%;
background:#2E7D32;
}


.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;
}

.modal-content{
background:white;
padding:40px;
border-radius:10px;
text-align:center;
animation:pop 0.4s ease;
}

@keyframes pop{
from{transform:scale(0.7)}
to{transform:scale(1)}
}



/* BANK CARD */

.bank-details{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
margin-bottom:25px;
text-align:left;
}

.bank-details h3{
color:#c2185b;
margin-bottom:20px;
font-size:20px;
}

.bank-info p{
margin-bottom:18px;
font-size:16px;
}

.account-number span{
font-size:22px;
font-weight:600;
letter-spacing:2px;
}


/* COPY BUTTON */

.copy-btn{
margin-top:10px;
padding:12px 22px;
border:none;
background:#c2185b;
color:white;
border-radius:6px;
cursor:pointer;
font-size:14px;
transition:0.3s;
}

.copy-btn:hover{
background:#a9154a;
transform:translateY(-2px);
}


/* NOTE */

.transfer-note{
margin:30px 0 20px;
color:#555;
font-size:15px;
}


/* FORM */

.donation-proof input{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.donation-proof input:focus{
outline:none;
border-color:#c2185b;
}


/* BUTTON */

.donation-proof button{
width:100%;
padding:14px;
}


/* MOBILE RESPONSIVE */

@media (max-width:768px){

.bank-details{
padding:30px;
}

.donation-container h2{
font-size:26px;
}

.account-number span{
font-size:20px;
}

}

/* ===============================
MOBILE NAVIGATION
================================ */

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
z-index:2000;
}

/* MOBILE */

@media (max-width:768px){

.main-header{
flex-wrap:wrap;
}

/* hamburger icon */

.menu-toggle{
display:block;
}

/* side menu */

.nav-menu{
position:fixed;
top:0;
right:-100%;
height:100vh;
width:260px;
background:white;
flex-direction:column;
align-items:center;
justify-content:center;
gap:30px;
transition:right 0.4s ease;
box-shadow:-5px 0 20px rgba(0,0,0,0.15);
}

/* when active */

.nav-menu.active{
right:0;
}

/* links */

.nav-links{
flex-direction:column;
gap:25px;
}

.donate-btn{
margin-top:10px;
}

}

.menu-toggle i{
transition:0.3s;
}

.menu-toggle.active i{
transform:rotate(90deg);
}


/* MENU OVERLAY */

.menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:1500;
}

.menu-overlay.active{
opacity:1;
visibility:visible;
}



/* =====================================================
15. RESPONSIVE DESIGN
===================================================== */

h1{
font-size:34px;
}

h2{
font-size:28px;
}

.hero{
height:80vh;
}

.founder-container{
flex-direction:column;
text-align:center;
}

.logo img{
height:45px;
}

.donate-btn{
padding:8px 18px;
font-size:14px;
}

.goal-container{
grid-template-columns:1fr;
}

.program-card{
flex:1 1 100%;
}

.section-header h2{
font-size:28px;
}

.stories-grid{
grid-template-columns:1fr;
}

.contact-container{
grid-template-columns:1fr;
}



