/* Sponsor Page Specific Styles */

/* Header */
.sponsor-header {
    background: rgb(13,110,253, 0.6), url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?w=1200&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    padding: 6rem 0;
}

/* Section Title */
.section-title {
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--bs-primary);
}

/* Reason Cards */
.reason-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
}

.reason-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reason-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Sponsorship Cards */
.sponsorship-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sponsorship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sponsorship-card.featured {
    border: 2px solid var(--bs-primary);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--bs-primary);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.sponsorship-header {
    background-color: #f8f9fa;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    border-radius: 15px 15px 0 0;
}

.sponsorship-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.sponsorship-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.sponsorship-body {
    padding: 2rem;
}

/* Donation Options */
.donation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 1.5rem;
}

.donation-btn {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.donation-btn:hover, .donation-btn.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

.donation-btn.custom {
    background-color: #e9ecef;
}

/* Subscription Tiers */
.subscription-tiers {
    margin-top: 1.5rem;
}

.subscription-tier {
    margin-bottom: 1rem;
}

.subscription-tier input[type="radio"] {
    display: none;
}

.subscription-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscription-label:hover {
    background-color: #f8f9fa;
}

.subscription-tier input[type="radio"]:checked + .subscription-label {
    background-color: #e6f2ff;
    border-color: var(--bs-primary);
}

.tier-name {
    font-weight: 600;
}

.tier-price {
    color: var(--bs-primary);
    font-weight: 600;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 0.5rem;
}

/* Service Highlights */
.service-highlights {
    margin-top: 1.5rem;
}

.service-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Sponsors Section */
.sponsors-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.sponsors-tier {
    margin-bottom: 3rem;
}

.tier-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.tier-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
}

.tier-title.gold {
    color: #FFD700;
}

.tier-title.gold::after {
    background-color: #FFD700;
}

.tier-title.silver {
    color: #C0C0C0;
}

.tier-title.silver::after {
    background-color: #C0C0C0;
}

.tier-title.bronze {
    color: #CD7F32;
}

.tier-title.bronze::after {
    background-color: #CD7F32;
}

.sponsors-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.sponsor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sponsor-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 10px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sponsor-item.gold img {
    width: 150px;
    height: 150px;
}

.supporters-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.supporter-name {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

/* Goals Section */
.goals-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.goal-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.goal-item:last-child {
    margin-bottom: 0;
}

.goal-info {
    margin-bottom: 1.5rem;
}

.goal-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.goal-info p {
    color: #6c757d;
    margin-bottom: 0;
}

.progress {
    height: 10px;
    border-radius: 5px;
    background-color: #e9ecef;
    margin-bottom: 0.5rem;
}

.progress-bar {
    border-radius: 5px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.progress-percentage {
    font-weight: 600;
}

.progress-target {
    color: #6c757d;
}

/* FAQ Section */
.accordion-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0 !important;
}

.accordion-button {
    font-weight: 600;
    color: #212529;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--bs-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: #f8f9fa;
}

/* Crypto Modal */
.crypto-qr {
    max-width: 200px;
    margin: 0 auto;
}

.crypto-qr img {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 10px;
}

.crypto-address {
    max-width: 400px;
    margin: 0 auto;
}

.copy-btn {
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: var(--bs-primary);
    color: white;
}

.copy-alert {
    text-align: center;
    padding: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .sponsor-header {
        padding: 4rem 0;
    }
    
    .sponsorship-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .reason-card, .sponsorship-card {
        padding: 1.5rem;
    }
    
    .sponsorship-header, .sponsorship-body {
        padding: 1.5rem;
    }
    
    .donation-options {
        gap: 5px;
    }
    
    .donation-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .sponsor-item img {
        width: 100px;
        height: 100px;
    }
    
    .sponsor-item.gold img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 575.98px) {
    .sponsors-list {
        gap: 1rem;
    }
    
    .sponsor-item img {
        width: 80px;
        height: 80px;
    }
    
    .sponsor-item.gold img {
        width: 100px;
        height: 100px;
    }
    
    .supporter-name {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
