/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    background: #0A0000;
    color: #fff;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: #F5E6D8; line-height: 1.15; }
h2.section-title { font-weight: 900; font-size: clamp(36px, 5vw, 60px); text-align: center; margin-bottom: 56px; }

/* === Buttons === */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 6px;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px;
    transition: all .3s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: #CC2222; color: #fff; }
.btn-primary:hover { background: #a51b1b; transform: translateY(-2px); }
.btn-outline { border-color: #CC2222; color: #F5E6D8; background: transparent; }
.btn-outline:hover { background: #CC2222; color: #fff; }
.btn-small { padding: 10px 20px; font-size: 14px; background: rgba(204,34,34,.15); border: 1px solid #CC2222; color: #F5E6D8; border-radius: 4px; margin: 4px; }
.btn-small:hover { background: #CC2222; color: #fff; }
.btn-donate { background: #CC2222; color: #fff; font-size: 20px; padding: 18px 48px; border-radius: 8px; }
.btn-donate:hover { background: #a51b1b; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(204,34,34,.4); }

/* === Navigation === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: all .3s ease;
    background: rgba(10,0,0,.6); backdrop-filter: blur(12px);
}
.navbar.scrolled { background: rgba(10,0,0,.95); padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,.5); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 44px; width: auto; border-radius: 4px; }
.logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: #F5E6D8; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 600; color: #ddd; transition: color .3s; }
.nav-links a:hover { color: #CC2222; }
.nav-donate-btn { background: #CC2222 !important; color: #fff !important; padding: 10px 24px !important; border-radius: 6px !important; }
.nav-donate-btn:hover { background: #a51b1b !important; }
.nav-toggle { display: none; background: none; border: none; color: #F5E6D8; font-size: 24px; cursor: pointer; }

/* === Hero === */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, #0A0000 0%, #1A0505 100%);
    padding-top: 100px;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-weight: 900; font-size: clamp(40px, 6vw, 72px); margin-bottom: 24px; }
.hero p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 36px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }

/* === Sections === */
.section { padding: 100px 0; }
.mission { background: linear-gradient(180deg, #0A0000, #120303); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-text p { margin-bottom: 20px; color: rgba(255,255,255,.88); font-size: 17px; }
.mission-text .highlight { color: #F5E6D8; font-weight: 700; font-size: 20px; border-left: 4px solid #CC2222; padding-left: 20px; }
.mission-image img { border-radius: 12px; box-shadow: 0 16px 50px rgba(0,0,0,.4); }

/* === Impact === */
.impact { background: linear-gradient(135deg, #2D0A0A, #1A0505); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.stat-card {
    text-align: center; padding: 48px 24px; border-radius: 16px;
    background: rgba(139,26,26,.3); border: 1px solid rgba(204,34,34,.2);
    transform: translateY(30px); opacity: 0; transition: all .6s ease;
}
.stat-card.animate { transform: translateY(0); opacity: 1; }
.stat-number { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: clamp(42px, 5vw, 64px); color: #CC2222; }
.stat-label { font-size: 18px; color: #F5E6D8; font-weight: 600; margin-top: 8px; }
.testimonial { max-width: 800px; margin: 0 auto; }
.testimonial blockquote { position: relative; padding: 40px; background: rgba(139,26,26,.2); border-radius: 12px; border-left: 4px solid #CC2222; }
.quote-icon { color: #CC2222; font-size: 28px; margin-bottom: 16px; }
.testimonial p { font-size: 18px; font-style: italic; line-height: 1.8; color: rgba(255,255,255,.9); }
.testimonial cite { display: block; margin-top: 20px; font-style: normal; font-weight: 700; color: #F5E6D8; }

/* === Stories === */
.stories { background: linear-gradient(180deg, #1A0505, #0A0000); }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.story-card {
    background: linear-gradient(145deg, #8B1A1A, #A52222); border-radius: 16px;
    padding: 32px; transform: translateY(30px); opacity: 0; transition: all .6s ease;
}
.story-card.animate { transform: translateY(0); opacity: 1; }
.story-card:nth-child(2) { transition-delay: .15s; }
.story-card:nth-child(3) { transition-delay: .3s; }
.story-image { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin-bottom: 20px; border: 3px solid rgba(255,255,255,.2); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-card h3 { font-weight: 900; font-size: 22px; margin-bottom: 4px; }
.story-subtitle { color: #CC2222; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.story-card p { color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.7; }
.story-quote { margin-top: 20px; padding: 16px; background: rgba(0,0,0,.2); border-radius: 8px; font-style: italic; font-size: 14px !important; color: rgba(255,255,255,.8) !important; border-left: 3px solid rgba(255,255,255,.3); }

/* === Programs === */
.programs { background: linear-gradient(180deg, #0A0000, #120303); }
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.programs-image img { border-radius: 12px; box-shadow: 0 16px 50px rgba(0,0,0,.4); }
.programs-list { display: flex; flex-direction: column; gap: 36px; }
.program-item { display: flex; gap: 20px; }
.program-accent { width: 4px; min-height: 100%; background: #CC2222; border-radius: 4px; flex-shrink: 0; }
.program-item h3 { font-weight: 900; font-size: 22px; margin-bottom: 8px; }
.program-item p { color: rgba(255,255,255,.85); font-size: 16px; }

/* === Get Involved === */
.involved { background: linear-gradient(180deg, #120303, #1A0505); }
.arc-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.arc-segment {
    flex: 1; min-width: 280px; max-width: 340px; text-align: center; padding: 48px 32px;
    background: linear-gradient(145deg, rgba(139,26,26,.25), rgba(45,10,10,.4));
    border-radius: 120px 120px 24px 24px; border: 1px solid rgba(204,34,34,.2);
    transform: translateY(30px); opacity: 0; transition: all .6s ease;
}
.arc-segment.animate { transform: translateY(0); opacity: 1; }
.arc-segment:nth-child(2) { transition-delay: .15s; }
.arc-segment:nth-child(3) { transition-delay: .3s; }
.arc-icon { font-size: 48px; color: #CC2222; margin-bottom: 24px; }
.arc-segment h3 { font-weight: 900; font-size: 24px; margin-bottom: 16px; }
.arc-segment p { color: rgba(255,255,255,.8); font-size: 15px; }

/* === Sponsorship === */
.sponsorship { background: linear-gradient(180deg, #1A0505, #0A0000); }
.pyramid { max-width: 700px; margin: 0 auto 48px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pyramid-tier {
    text-align: center; padding: 20px; border-radius: 8px;
    transition: transform .3s ease;
}
.pyramid-tier:hover { transform: scale(1.03); }
.tier-1 { width: 50%; background: linear-gradient(135deg, #CC2222, #a51b1b); }
.tier-2 { width: 65%; background: linear-gradient(135deg, #A52222, #8B1A1A); }
.tier-3 { width: 80%; background: linear-gradient(135deg, #8B1A1A, #6B1515); }
.tier-4 { width: 95%; background: linear-gradient(135deg, #6B1515, #4A0E0E); }
.tier-content h3 { font-size: 18px; font-weight: 900; margin-bottom: 4px; }
.tier-amount { color: #F5E6D8; font-weight: 700; font-size: 16px; }
.sponsorship-details { text-align: center; }
.expand-btn {
    background: rgba(204,34,34,.15); border: 1px solid #CC2222; color: #F5E6D8;
    padding: 14px 32px; border-radius: 6px; font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 16px; cursor: pointer; transition: all .3s;
}
.expand-btn:hover { background: rgba(204,34,34,.3); }
.expand-btn i { margin-left: 8px; transition: transform .3s; }
.expand-btn.open i { transform: rotate(180deg); }
.expandable-content { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.expandable-content.open { max-height: 400px; }
.expandable-content p { margin: 24px auto; max-width: 700px; color: rgba(255,255,255,.85); }
.sponsor-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* === Sponsors === */
.sponsors { background: #120303; }
.sponsors-desc { text-align: center; max-width: 700px; margin: -24px auto 48px; color: rgba(255,255,255,.8); }
.sponsors-logos { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.sponsor-logo-placeholder {
    width: 160px; height: 80px; background: rgba(255,255,255,.08); border: 1px dashed rgba(255,255,255,.2);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.3); font-size: 13px;
}

/* === Contact === */
.contact { background: linear-gradient(180deg, #0A0000, #1A0505); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.contact-card {
    background: linear-gradient(145deg, rgba(139,26,26,.2), rgba(45,10,10,.3));
    border: 1px solid rgba(204,34,34,.15); border-radius: 16px; padding: 40px 28px; text-align: center;
    transform: translateY(30px); opacity: 0; transition: all .6s ease;
}
.contact-card.animate { transform: translateY(0); opacity: 1; }
.contact-card:nth-child(2) { transition-delay: .15s; }
.contact-card:nth-child(3) { transition-delay: .3s; }
.contact-icon { font-size: 36px; color: #CC2222; margin-bottom: 20px; }
.contact-card h3 { font-weight: 900; font-size: 22px; margin-bottom: 12px; }
.contact-card a { color: #CC2222; }
.contact-card a:hover { text-decoration: underline; }
.contact-links { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.tax-id { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; color: #F5E6D8; margin: 8px 0; }
.small-text { font-size: 14px; color: rgba(255,255,255,.6); }
.donate-section { text-align: center; }

/* === Footer === */
.footer { background: #050000; padding: 60px 0 24px; border-top: 1px solid rgba(204,34,34,.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 50px; width: auto; border-radius: 4px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-social h4 { font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: 15px; transition: color .3s; }
.footer-links a:hover { color: #CC2222; }
.social-icons { display: flex; gap: 16px; }
.social-icons a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(204,34,34,.15);
    display: flex; align-items: center; justify-content: center; color: #F5E6D8;
    transition: all .3s;
}
.social-icons a:hover { background: #CC2222; transform: translateY(-2px); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 14px; margin: 4px 0; }

/* === Responsive === */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: #0A0000; flex-direction: column; padding: 80px 32px 32px;
        transition: right .3s ease; gap: 20px;
    }
    .nav-links.active { right: 0; }
    .hero-grid, .mission-grid, .programs-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 80px; min-height: auto; padding-bottom: 60px; }
    .hero-image { order: -1; }
    .stats-grid, .stories-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .pyramid-tier { width: 100% !important; }
    .arc-segment { border-radius: 24px; }
    .section { padding: 60px 0; }
}
