/* Fundraisers List Styles */


/* Donation Widget Styles */
.donation-widget {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* padding: 30px; */
    position: sticky;
    top: 20px;
}

.donation-section{
    padding: 35px;
}

.donation-tabs {
    display: flex;
    margin-bottom: 25px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
    padding: 30px;
    gap: 10px;
    background: #F2F4F7;
}

.donation-tab {
    flex: 1;
    background: transparent;
    color: var(--combo-donate-accent);
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-tab.active {
    background: var(--combo-donate-accent);
    border-radius: 5px;
    color: white;
}

.donation-tab:hover:not(.active) {
}

.donation-amounts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.amount-btn {
    padding-top: 20px;
    padding-right: 34px;
    padding-bottom: 20px;
    padding-left: 34px;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #e9ecef;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    transform: rotate(0deg);
}

.amount-btn:hover {
    border-color: var(--combo-donate-primary);
    background: #e6f4ea;
}

.amount-btn.amount-selected {
    background: var(--combo-donate-primary);
    border-color: var(--combo-donate-primary);
    color: white;
}

.amount-input {
    grid-column: span 3;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 16px;
    color: #495057;
    text-align: center;
}

.amount-input:focus {
    outline: none;
    border-color: var(--combo-donate-success);
    background: white;
    transition: all 0.3s ease;
    
}

.donate-main-btn {
    width: 100%;
    background: #C7000D;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}


.donate-main-btn:hover {
    background: #C7000D;
}

/* .donate-main-btn:hover svg {
    animation: svg-rotate 0.3s linear;
} */


    @keyframes svg-rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

.share-btn {
    width: 100%;
    background: transparent;
    color: #2E2E2E;
    border: 2px solid var(--combo-donate-accent);
    border-radius: 5px;
    padding: 6px 20px;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--combo-donate-accent);
    background: var(--combo-donate-accent);
}


.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px 0;
}

.payment-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-logo:hover {
    opacity: 1;
}

.bank-account {
    text-align: center;
}

.bank-title {
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: #2E2E2E;
    margin: 0 0 8px 0;
}

.bank-number {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: #333;
    margin: 0;
}

/* Info Section Styles */
#info-section {
    margin-bottom: 50px;
}

.info-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.info-logo {
    flex-shrink: 0;
}

.hospice-logo {
    width: 220px;
    height: auto;
}

.info-content {
    flex: 1;
}

.info-title {
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0;
    color: #333;
    margin: 0 0 10px 0;
}

.info-subtitle {
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #ff6b35;
    margin: 0 0 50px 0;
}

.info-question {
    font-weight: 600;
    font-style: normal;
    font-size: 21px;
    line-height: 30px;
    letter-spacing: 0;
    color: #333;
    margin: 0 0 20px 0;
}

.info-text {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #555;
    margin-bottom: 20px;
}

.info-text:last-child {
    margin-bottom: 0;
}

.info-text strong {
    color: #333;
    font-weight: bold;
}raisers List Styles */
.fundraisers-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.fundraisers-header {
    text-align: left;
    margin-bottom: 40px;
}

.fundraisers-header h1 {
    margin-bottom: 10px;
    color: #333;
    size: 30px;
    font-weight: 600;
    font-style: DemiBold;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0%;
}

.fundraisers-header p {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #475467;
    margin-bottom: 0;
}

.fundraisers-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    */
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.fundraiser-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fundraiser-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fundraiser-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.fundraiser-image-container {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
}

.fundraiser-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fundraiser-card:hover .fundraiser-card-image {
    transform: scale(1.05);
}

.fundraiser-placeholder-image {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
}

.fundraiser-urgent-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-bottom-right-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.fundraiser-card-content {
    padding: 25px;
}

.fundraiser-person-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #475467;
    margin-bottom: 15px;
}

.person-icon {
    font-size: 1.1rem;
}

.fundraiser-card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.fundraiser-reason {
    color: #475467;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.fundraiser-progress {
    padding-top: 20px;
}

.progress-amount {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.progress-amount strong {
    font-size: 1.3rem;
    color: #178D4E;
    font-weight: bold;
}

.progress-percentage {
    color: #475467;
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 29px;
    background: #eee;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #33C250, #15894D);
    transition: width 0.5s ease;
    border-radius: 4px;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #475467;
}
.progress-details stong {
    color: #333;
    font-weight: bold;
}

.no-fundraisers {
    text-align: center;
    padding: 60px 20px;
    color: #475467;
    font-size: 1.1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .fundraisers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fundraisers-header h1 {
        font-size: 2rem;
    }
    
    .fundraiser-card-content {
        padding: 20px;
    }
    
    .fundraiser-image-container {
        height: 400px;
    }
    
    /* Info section mobile styles */
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .info-question {
        font-size: 1.5rem;
    }
    
    .hospice-logo {
        width: 100px;
    }
    
    /* Donation widget mobile styles */
    .donation-widget {
        position: static;
        margin-top: 20px;
    }
    
    .donation-amounts {
        grid-template-columns: 1fr 1fr;
    }
    
    .amount-input {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .fundraisers-list-container {
        padding: 15px;
    }
    
    .fundraisers-header {
        margin-bottom: 30px;
    }
    
    .fundraiser-card-title {
        font-size: 1.2rem;
    }
    
    /* Info section small mobile styles */
    .info-card {
        padding: 20px;
    }
    
    .info-title {
        font-size: 1.8rem;
    }
    
    .info-subtitle {
        font-size: 1rem;
    }
    
    .info-question {
        font-size: 1.3rem;
    }
    
    .info-text {
        font-size: 0.95rem;
    }
    
    .hospice-logo {
        width: 80px;
    }
    
    /* Donation widget small mobile styles */
    .donation-widget {
        padding: 20px;
    }
    
    .donation-tab {
        padding: 10px 12px;
        font-size: 13px;
    }

    .donation-tab.disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    
    .amount-btn {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .payment-logo {
        width: 60px;
        height: 30px;
        transform: rotate(0deg);
        opacity: 1;
    }
    .payment-logo + .payment-logo {
        margin-left: 10px;
    }
    
    .bank-number {
        font-size: 14px;
        word-break: break-all;
    }
}