/* ============================================
   Donate Page Styles
   ============================================ */

.donate-section {
    padding: 6rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donate-section .icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.donate-section h1 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.donate-section p {
    line-height: 1.7;
    color: var(--text-secondary, #555);
    margin-bottom: 1.5rem;
}

.donate-section .badge-coming-soon {
    font-size: 0.9rem;
    padding: 0.35rem 1rem;
    margin-bottom: 1.5rem;
}

/* Dark Mode */
.dark .donate-section h1 {
    color: var(--text-dark);
}

.dark .donate-section p {
    color: rgba(255, 255, 255, 0.75);
}

/* Responsive */
@media (max-width: 768px) {
    .donate-section {
        padding: 5rem 1.25rem;
    }

    .donate-section .icon {
        font-size: 3rem;
    }
}
