/* css/charity_detail.css */
/* Charity Detail Page Styles */
.charity-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.detail-left {
    flex: 1;
    min-width: 280px;
}

.icon-box {
    background: #ffedd5;
    border-radius: 24px;
    text-align: center;
    padding: 60px 20px;
    font-size: 6rem;
    color: #f97316;
}

.detail-right {
    flex: 2;
}

.detail-right h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #0f172a;
}

.charity-info {
    margin: 20px 0;
    line-height: 1.6;
    color: #334155;
}

.tag-badge {
    background: #e6f7e6;
    color: #2b6e2f;
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.donate-box {
    background: #f8fafc;
    border-radius: 24px;
    padding: 32px;
    margin-top: 32px;
    border: 1px solid #eef2f6;
}

.donate-box h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.amount-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.amount-btn {
    background: white;
    border: 1.5px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.amount-btn:hover {
    border-color: #f97316;
    color: #f97316;
}

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

.input-box {
    margin: 24px 0;
}

.input-box label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #475569;
}

.input-box input {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #cbd5e1;
    border-radius: 40px;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.2s;
}

.input-box input:focus {
    border-color: #f97316;
}

.submit-btn {
    background: #f97316;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 20px -6px rgba(249,115,22,0.3);
}

.submit-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.security-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
}

.back-btn {
    margin: 40px 0;
    text-align: center;
}

.back-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.back-btn a:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .charity-detail {
        flex-direction: column;
    }
}
