/* Donate Page */
.donate-section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 80px auto 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    transform: none;
}

.payment-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: var(--shadow-hover);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.payment-card:hover .payment-icon {
    transform: none; /*scale(1.2) rotateY(360deg);*/
}

.payment-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.payment-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.payment-card button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white; /* White text */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    min-height: 44px;
}

/* REMOVE ripple effect from payment buttons */
.payment-card button::before {
    display: none !important;
}

.payment-card button:hover::before {
    display: none !important;
}

.payment-card button:hover {
        color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 95, 191, 0.5);
}

/* Fix cursor for all buttons and ensure consistent behavior */
button, .btn-primary, .btn-secondary, .donate-btn {
    cursor: pointer !important;
}

/* Ensure payment buttons have proper cursor and no ripple */
.payment-card button {
    cursor: pointer !important;
    position: relative;
    overflow: visible !important;
}

/* Fix cursor on all interactive elements */
.nav-links a, .logo, .theme-toggle, .mobile-menu, .whatsapp-float, 
.video-card, .social-card, .mission-card, .faq-question {
    cursor: pointer !important;
}

/* Ensure form submit button has proper cursor */
.contact-form button[type="submit"] {
    cursor: pointer !important;
}


/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .donate-section {
        padding: 3rem 1rem;
        margin-top: 80px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .payment-card {
        padding: 1.5rem;
    }
    
    .payment-icon {
        font-size: 2.5rem;
    }
    
    .payment-card h3 {
        font-size: 1.2rem;
    }
    
    .payment-card p {
        font-size: 0.9rem;
    }
    
    .payment-card button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    /* Reduce animations on mobile */
    .payment-card:hover {
        transform: translateY(-5px);
    }
    
    .payment-card:hover .payment-icon {
        transform: none;
    }

}

@media (max-width: 480px) {
    .donate-section {
        padding: 2rem 0.8rem;
        margin-top: 70px;
    }
    
    .payment-card {
        padding: 1.2rem;
    }
    
    .payment-icon {
        font-size: 2.2rem;
    }
    
    .payment-card h3 {
        font-size: 1.1rem;
    }
    
    .payment-card p {
        font-size: 0.85rem;
    }
    
    .payment-card button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

}