/* Donation Page Specific Styles */

.donation-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.donation-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.donation-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.donation-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.donation-content {
    padding: 4rem 0;
}

.mission-statement {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 20px;
    border: 2px solid #e3f2fd;
}

.mission-statement h2 {
    color: #FF6B35;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.why-donate {
    margin-bottom: 4rem;
}

.why-donate h3 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #f0f9ff;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #FF6B35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.development-costs {
    margin-bottom: 4rem;
    background: #f8fffe;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #e0f7f7;
}

.development-costs h3 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cost-breakdown {
    max-width: 600px;
    margin: 0 auto;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0f0f0;
    gap: 1rem;
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-category {
    font-weight: 600;
    color: #4ECDC4;
    min-width: 140px;
    font-size: 1.1rem;
}

.cost-description {
    color: #666;
    line-height: 1.5;
    flex: 1;
}

.donation-call-to-action {
    text-align: center;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    border: 3px solid #ffdbcc;
    margin-bottom: 4rem;
}

.donation-call-to-action h3 {
    font-size: 2.5rem;
    color: #FF6B35;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.donation-button-container {
    margin: 2.5rem 0;
}

.donation-btn {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.donation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    text-decoration: none;
    color: white;
}

.thank-you-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.transparency {
    background: #f9f9ff;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #e6e6ff;
}

.transparency h3 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.transparency-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.promises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.promise {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.promise-icon {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.promise span:last-child {
    color: #333;
    font-weight: 500;
}

.footer-mission {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav-link.active {
    color: #FF6B35;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .donation-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .donation-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-statement {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .mission-statement h2 {
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .cost-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cost-category {
        min-width: auto;
        margin-bottom: 0.5rem;
    }
    
    .donation-call-to-action {
        padding: 3rem 2rem;
    }
    
    .donation-call-to-action h3 {
        font-size: 2rem;
    }
    
    .donation-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .promises {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .donation-hero {
        padding: 3rem 0;
    }
    
    .donation-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .mission-statement {
        padding: 1.5rem;
    }
    
    .mission-statement h2 {
        font-size: 1.7rem;
    }
    
    .development-costs,
    .transparency {
        padding: 2rem;
    }
    
    .donation-call-to-action {
        padding: 2.5rem 1.5rem;
    }
}
