/* ===== JOIN & DONATE PAGE STYLES ===== */

/* Page Header (inherits from style.css but additional spacing) */
.join-donate-section {
    padding: 60px 0;
    background-color: #FDF7F0;
}

/* Two Column Layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.column {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.column-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #FDF7F0;
}

.column-icon {
    font-size: 3rem;
    color: #F28C38;
    margin-bottom: 12px;
}

.column-header h2 {
    font-size: 1.8rem;
    color: #1D4A5F;
    margin-bottom: 8px;
}

.column-header p {
    color: #666;
}

/* Form Styles */
.form-container,
.calendar-container,
.anonymous-help,
.donation-options,
.impact-calculator,
.payment-details,
.sponsor-day,
.donor-wall {
    margin-bottom: 40px;
}

.form-container h3,
.calendar-container h3,
.anonymous-help h3,
.donation-options h3,
.impact-calculator h3,
.payment-details h3,
.sponsor-day h3,
.donor-wall h3 {
    font-size: 1.3rem;
    color: #1D4A5F;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F28C38;
    box-shadow: 0 0 0 3px rgba(242, 140, 56, 0.1);
}

.btn-submit {
    width: 100%;
    background: #F28C38;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #E07A20;
    transform: translateY(-2px);
}

.btn-submit-secondary {
    width: 100%;
    background: #1D4A5F;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-secondary:hover {
    background: #0f3b4a;
}

.form-note {
    font-size: 0.75rem;
    color: #888;
    margin-top: 12px;
    text-align: center;
}

/* Event Calendar */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-item {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: #FDF7F0;
    border-radius: 16px;
    transition: all 0.3s;
}

.event-item:hover {
    transform: translateX(5px);
    background: #f5ede3;
}

.event-date {
    text-align: center;
    min-width: 55px;
}

.event-day {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #F28C38;
    text-transform: uppercase;
}

.event-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D4A5F;
}

.event-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #1D4A5F;
}

.event-details p {
    font-size: 0.8rem;
    color: #666;
}

/* Donation Tiers */
.donation-tier-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.donation-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #FDF7F0;
    border-radius: 16px;
    transition: all 0.3s;
}

.donation-tier:hover {
    background: #f5ede3;
    transform: translateX(5px);
}

.tier-amount {
    font-weight: 700;
    color: #F28C38;
    font-size: 1.1rem;
}

.tier-impact {
    flex: 1;
    margin-left: 16px;
    font-size: 0.85rem;
    color: #555;
}

.btn-donate-tier {
    background: #1D4A5F;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-donate-tier:hover {
    background: #F28C38;
}

.custom-amount {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.custom-amount input {
    flex: 2;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 40px;
}

.btn-custom-donate {
    flex: 1;
    background: #F28C38;
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-custom-donate:hover {
    background: #E07A20;
}

/* Impact Slider */
.slider-container {
    margin: 20px 0;
}

.slider-container input {
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.slider-container input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #F28C38;
    border-radius: 50%;
    cursor: pointer;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.7rem;
    color: #888;
}

.slider-impact-display {
    background: #1D4A5F;
    color: white;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    font-weight: 500;
    margin-top: 16px;
}

/* Payment Details */
.mpesa-box,
.bank-box {
    background: #FDF7F0;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.mpesa-box p,
.bank-box p {
    margin-bottom: 8px;
}

.highlight-text {
    color: #F28C38;
    font-weight: 700;
    font-size: 1.1rem;
}

.mpesa-note {
    font-size: 0.75rem;
    color: #888;
    margin-top: 12px;
}

/* Sponsor a Day */
.sponsor-day {
    text-align: center;
    background: linear-gradient(135deg, #F28C38, #E07A20);
    color: white;
    padding: 24px;
    border-radius: 24px;
}

.sponsor-day h3 {
    color: white;
    justify-content: center;
}

.sponsor-price {
    font-size: 2rem;
    font-weight: 800;
    margin: 16px 0;
}

.btn-sponsor {
    background: white;
    color: #F28C38;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sponsor:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Donor Wall */
.donor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.donor-name {
    background: #FDF7F0;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1D4A5F;
}

.donor-wall-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

/* CTA Banner */
.cta-banner {
    background: #1D4A5F;
    padding: 50px 0;
    text-align: center;
    color: white;
}

.cta-banner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-banner-content p {
    opacity: 0.8;
    margin-bottom: 24px;
}

.cta-banner-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-scroll-donate,
.btn-scroll-bank {
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-scroll-donate {
    background: #F28C38;
    color: white;
}

.btn-scroll-donate:hover {
    background: #E07A20;
    transform: translateY(-2px);
}

.btn-scroll-bank {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-scroll-bank:hover {
    background: white;
    color: #1D4A5F;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .two-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .column {
        padding: 24px;
    }
    
    .donation-tier {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tier-impact {
        margin-left: 0;
        width: 100%;
    }
    
    .custom-amount {
        flex-direction: column;
    }
    
    .cta-banner-content h3 {
        font-size: 1.2rem;
    }
}