/* Donation System CSS - Human Rights Are Universal Arts Festival */

/* General Styles */
.donation-page,
.donation-confirmation {
    padding: 2rem 0;
}

.page-header,
.confirmation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.required {
    color: #dc3545;
}

/* Steps Navigation */
.steps-container {
    margin: 2rem 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
}

.steps:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: #6c757d;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #007bff;
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step.active .step-label {
    color: #007bff;
    font-weight: bold;
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

/* Donation Amount Selector */
.amount-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.amount-btn {
    padding: 0.75rem 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
}

.amount-btn:hover {
    background-color: #e9ecef;
}

.amount-btn.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* Payment Method Selector */
.payment-method-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.payment-method-option {
    position: relative;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-method-option:hover {
    background-color: #f8f9fa;
}

.payment-method-option input {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.payment-logo {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.payment-name {
    font-weight: bold;
}

/* Donation Summary */
.donation-summary {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: bold;
}

.summary-value {
    text-align: right;
}

/* Info Cards */
.donation-info {
    margin-top: 3rem;
}

.info-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1.5rem;
    height: 100%;
}

.info-card h3 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-card h3 i {
    color: #007bff;
    margin-right: 0.5rem;
}

/* Confirmation Page */
.confirmation-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.confirmation-message {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1.5rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .payment-method-selector {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation button {
        width: 100%;
    }
}
