/* Custom Colors */
:root {
    --foundation-green: #7ed957;
    --foundation-purple: #3d07a8;
    --foundation-cream: #faf8f2;
    --text-dark: #1f2937;
    --text-light: #f3f4f6;
}

/* Global Styles */
body {
    background-color: var(--foundation-cream);
    color: #374151; /* gray-800 */
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* ====================== Header ====================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.container.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.8rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* ====================== Logo ====================== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    line-height: 1.1;
}

.full-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--foundation-purple);
    margin: 0;
    display: none;
}

.short-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--foundation-purple);
    margin: 0;
    display: block;
}

.logo-text small {
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

/* Show full name only on very large screens */
@media (min-width: 1280px) {
    .full-name { display: block; }
    .short-name { display: none; }
    .logo img { width: 72px; height: 72px; }
}

/* ====================== Desktop Navigation ====================== */
.nav-links {
    display: none;
    align-items: center;
    gap: 1.6rem;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--foundation-green);
}

/* Donate Button */
.btn-nav {
    background-color: var(--foundation-green);
    color: var(--foundation-purple);
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

/* ====================== Mobile Menu Button ====================== */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    background: none;
    border: none;
    color: var(--foundation-purple);
    cursor: pointer;
    z-index: 1010;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* ====================== Mobile Menu ====================== */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1.1rem;
}

.mobile-menu-content a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    color: #374151;
    text-decoration: none;
}

.mobile-donate-btn {
    background: var(--foundation-green);
    color: var(--foundation-purple);
    text-align: center;
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 700;
    margin-top: 1rem;
}

/* ====================== Program Hero with Side Image ====================== */
.program-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.program-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(61, 7, 168, 0.85) 0%,
        rgba(61, 7, 168, 0.75) 50%,
        rgba(61, 7, 168, 0.6) 100%
    );
    z-index: 2;
}

.program-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-text {
    max-width: 620px;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.breadcrumb a {
    color: var(--foundation-green);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
    /* color: var(--foundation-green); */
}

.program-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.program-subtitle {
    font-size: clamp(1.15rem, 4vw, 1.35rem);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.92);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* .hero-btn-primary {
    background: var(--foundation-green);
    color: var(--foundation-purple);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
} */

.hero-btn-secondary {
    background: transparent;
    color: var(--foundation-green);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 2px solid var(--foundation-green);
}

.hero-btn-secondary:hover {
    background: var(--foundation-green);
    color: var(--foundation-purple);
    border-color: transparent;
}

/* Right Side Image */
.hero-side-image {
    display: none;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-side-image {
        display: flex;
    }
}

.side-image {
    width: 100%;
    /* max-width: 820px; */
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 12px solid rgba(255,255,255,0.2);
}


/* ====================== Program Content ====================== */
.program-content {
    padding: 5rem 0;
    background: var(--foundation-cream);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.program-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 992px) {
    .program-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Main Content */
.program-main h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.1rem, 5vw, 2.8rem);
    color: var(--foundation-purple);
    margin-bottom: 1.5rem;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 3rem 0;
}

.stat {
    flex: 1;
    min-width: 160px;
}

.stat strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--foundation-green);
    line-height: 1;
}

.stat span {
    display: block;
    color: #4b5563;
    margin-top: 0.5rem;
}

/* List */
.program-list {
    list-style: none;
    padding: 0;
}

.program-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.8rem;
}

.program-list li:before {
    content: "✓";
    color: var(--foundation-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Donation Tiers */
.donation-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.tier {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    flex: 1;
    min-width: 220px;
}

.tier strong {
    color: var(--foundation-green);
    font-size: 1.35rem;
}

/* Sidebar */
.program-sidebar .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.program-sidebar .gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1rem;
}

.sidebar-cta {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cta-btn-primary {
    background: var(--foundation-green);
    color: var(--foundation-purple);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cta-btn-primary:hover {
    background: var(--foundation-green);
    color: var(--foundation-cream);
    transform: translateY(-2px);
}

.inline-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--foundation-green);
    color: var(--foundation-purple);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 2rem;
}

/* ====================== Footer ====================== */
.site-footer {
    background: #1f2937;
    color: #e5e7eb;
    padding-top: 4rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }
}

.footer-col h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--foundation-green);
}

/* Logo Column */
.logo-col .footer-logo img {
    height: 180px;
    width: auto;
    border-radius: 0.75rem;
    margin-bottom: 0.2rem;
}

.footer-mission {
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 1.5rem;
    color: #9ca3af;
}

/* Social Links */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--foundation-green);
    color: var(--foundation-purple);
    transform: translateY(-3px);
}

/* Contact Info */
.contact-info i {
    width: 20px;
    color: var(--foundation-green);
    margin-right: 10px;
}

/* Bottom Bar */
.footer-bottom {
    background: #111827;
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #9ca3af;
}

.footer-bottom .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.made-with-love {
    color: var(--foundation-green);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}