/* ============================
   ELEGANT GARDEN THEME
   Bancroft Community Garden
   ============================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Soft, Elegant, Architectural */
    --forest: #2d3a2d;
    --forest-light: #4a5a4a;
    --sage: #8a9e8a;
    --sage-light: #b8c8b8;
    --cream: #f5f3ee;
    --cream-dark: #e8e4d9;
    --warm-white: #faf9f7;
    --charcoal: #2c2c2c;
    --charcoal-light: #4a4a4a;
    --stone: #9a9a9a;
    --terracotta: #c4715a;
    --terracotta-light: #d4896e;
    --gold: #c4a35a;
    --eucalyptus: #566B5A;
    --eucalyptus-light: #6a7f6e;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-ui: 'DM Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.7;
    background-color: var(--warm-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--forest);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================
   NAVIGATION
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-light);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    transition: var(--transition-fast);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--forest);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.donate-btn {
    background: var(--eucalyptus);
    color: var(--cream);
    padding: 10px 24px;
    border-radius: 30px;
}

.nav-link.donate-btn::after {
    display: none;
}

.nav-link.donate-btn:hover {
    background: var(--eucalyptus-light);
    color: var(--warm-white);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    transition: var(--transition-fast);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(86, 107, 90, 0.3) 0%, rgba(86, 107, 90, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 40px;
    color: var(--warm-white);
    margin-top: 60px;
}

.hero-label {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--warm-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title .line {
    display: block;
}

.hero-title .line:last-child {
    font-style: italic;
    color: var(--sage-light);
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--cream);
    color: var(--forest);
    border-color: var(--cream);
}

.btn-primary:hover {
    background: var(--warm-white);
    border-color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--warm-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--warm-white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--warm-white), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.5); }
}

/* ============================
   SECTIONS
   ============================ */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--forest);
    line-height: 1.2;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 540px;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-style: italic;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--sage);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--stone);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================
   GALLERY SECTION
   ============================ */
.gallery {
    background: var(--cream);
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption span {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--warm-white);
    letter-spacing: 0.05em;
}

/* ============================
   GET INVOLVED SECTION
   ============================ */
.get-involved {
    background: var(--warm-white);
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.involved-card {
    background: var(--warm-white);
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    padding: 50px 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.involved-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.involved-card:hover::before {
    transform: scaleX(1);
}

.involved-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.card-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.involved-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--forest);
}

.involved-card p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.card-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
}

.detail-value {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--forest);
}

/* ============================
   VISIT SECTION
   ============================ */
.visit {
    background: var(--cream);
    padding: 100px 0;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.visit-content {
    max-width: 480px;
}

.visit-lead {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 40px;
    font-style: italic;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
}

.info-value {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.5;
}

.visit-social {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--cream-dark);
}

.social-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
}

.social-link {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--forest);
    text-decoration: none;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--forest);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-fast);
}

.social-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.visit-image {
    position: relative;
}

.visit-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.visit-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--sage);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}

/* ============================
   COMMUNITY STORY SECTION
   ============================ */
.community-story {
    background: var(--cream);
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--sage);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}

.story-content {
    max-width: 540px;
}

.story-lead {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-style: italic;
}

.story-content p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================
   CTA SECTION
   ============================ */
.cta {
    background: var(--eucalyptus);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 20px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--warm-white);
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--sage-light);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta .btn-primary {
    background: var(--cream);
    color: var(--forest);
}

.cta .btn-primary:hover {
    background: var(--warm-white);
}

/* ============================
   SPONSORS SECTION
   ============================ */
.sponsors {
    background: var(--cream);
    padding: 50px 0;
    border-top: 1px solid var(--cream-dark);
}

.sponsors-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.sponsors-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    white-space: nowrap;
}

.sponsors-list {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sponsor-link {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--forest);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition-fast);
    position: relative;
}

.sponsor-link:hover {
    color: var(--terracotta);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--warm-white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--stone);
    line-height: 1.6;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-nav-column h4 {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 20px;
}

.footer-nav-column ul {
    list-style: none;
}

.footer-nav-column li {
    margin-bottom: 12px;
}

.footer-nav-column a {
    font-size: 0.95rem;
    color: var(--warm-white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-nav-column a:hover {
    opacity: 1;
    color: var(--sage-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--stone);
}

.footer-credit {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.credit-text {
    font-size: 0.8rem;
    color: var(--stone);
}

.credit-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--terracotta);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition-fast);
}

.credit-link:hover {
    color: var(--terracotta-light);
    text-decoration: underline;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .navbar .container {
        padding: 0 24px;
        height: 70px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--warm-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        border-bottom: 1px solid var(--cream-dark);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        padding: 0 24px;
    }
    
    .about-grid,
    .visit-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image img,
    .visit-image img,
    .story-image img {
        height: 400px;
    }
    
    .story-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .involved-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sponsors-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .sponsors-list {
        gap: 15px;
    }
    
    .footer-credit {
        margin-top: 20px;
        flex-direction: column;
        gap: 5px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .credit-text {
        font-size: 0.75rem;
    }
    
    .credit-link {
        font-size: 0.85rem;
        text-decoration: underline;
        display: inline-block;
    }
    
    .sponsor-link {
        font-size: 0.85rem;
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    
    .footer-bottom {
        padding-bottom: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Smooth transitions for images */
img {
    transition: var(--transition-smooth);
}

/* Selection color */
::selection {
    background: var(--sage-light);
    color: var(--forest);
}

/* ============================
   DONATE PAGE STYLES
   ============================ */

.donate-page .navbar {
    background: rgba(250, 250, 248, 0.98);
}

.donate-header {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(86, 107, 90, 0.4) 0%, rgba(86, 107, 90, 0.6) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
    color: var(--warm-white);
    max-width: 700px;
    margin-top: 60px;
}

.header-label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-light);
    display: block;
    margin-bottom: 20px;
}

.header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--warm-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.header-description {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 550px;
}

/* Donate Impact */
.donate-impact {
    background: var(--warm-white);
    padding: 100px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.impact-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.impact-card:hover {
    background: var(--eucalyptus);
    border-color: var(--eucalyptus);
    transform: translateY(-5px);
}

.impact-card:hover .impact-amount {
    color: var(--warm-white);
}

.impact-card:hover .impact-desc {
    color: var(--sage-light);
}

.impact-card:hover .impact-divider {
    background: var(--sage);
}

.impact-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 16px;
    line-height: 1;
    transition: var(--transition-smooth);
}

.impact-divider {
    width: 40px;
    height: 2px;
    background: var(--sage);
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.impact-desc {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.6;
    transition: var(--transition-smooth);
}

/* Donate Methods */
.donate-methods {
    background: var(--cream);
    padding: 100px 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.methods-content {
    max-width: 540px;
}

.methods-intro {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 50px;
    font-style: italic;
}

.method-item {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--cream-dark);
}

.method-item:last-of-type {
    border-bottom: none;
}

.method-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 12px;
}

.method-desc {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.method-detail {
    margin-bottom: 12px;
}

.method-detail .detail-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    display: block;
    margin-bottom: 4px;
}

.method-detail .detail-value {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 500;
    color: var(--forest);
    line-height: 1.6;
}

.method-note {
    font-size: 0.85rem;
    color: var(--stone);
    font-style: italic;
    margin-top: 10px;
}

.paypal-form {
    margin-top: 20px;
}

.paypal-form .btn {
    width: 100%;
    max-width: 300px;
}

.tax-info {
    margin-top: 40px;
    padding: 30px;
    background: var(--warm-white);
    border-radius: 8px;
    border-left: 3px solid var(--sage);
}

.tax-info p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

.tax-info strong {
    color: var(--forest);
}

.methods-image {
    position: sticky;
    top: 100px;
}

.methods-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.donate-page .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for Donate Page */
@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .methods-image {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .methods-image img {
        height: 300px;
    }
    
    .donate-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .donate-page .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}