/* Donation Page Specific Styles */
.donation-hero {
    text-align: center;
    padding: 100px 0;
}

.donation-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px;
    color: #000;
}

.donation-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.amount-selection {
    margin-bottom: 30px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 15px 20px;
    border: 2px solid #eaeaea;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.amount-btn:hover {
    border-color: #007aff;
    color: #007aff;
}

.amount-btn.selected {
    background-color: #007aff;
    border-color: #007aff;
    color: #fff;
}

.custom-amount {
    width: 100%;
    padding: 15px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 15px;
}

.custom-amount:focus {
    outline: none;
    border-color: #007aff;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #007aff;
}

#card-element {
    padding: 15px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    background-color: #fff;
}

#card-errors {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
}

.donate-button {
    width: 100%;
    background-color: #007aff;
    color: #fff;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 20px;
}

.donate-button:hover {
    background-color: #0056b3;
}

.donate-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 60px 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin: 40px 0;
}

.success-message h2 {
    color: #27ae60;
    font-size: 32px;
    margin-bottom: 20px;
}

.receipt-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid #eaeaea;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.receipt-row:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 18px;
}